HomeSort by relevance Sort by last modified time
    Searched refs:m_rows (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/storage/
SQLResultSet.cpp 42 : m_rows(SQLResultSetRowList::create())
67 return m_rows.get();
SQLResultSet.h 57 RefPtr<SQLResultSetRowList> m_rows; member in class:WebCore::SQLResultSet
  /external/webkit/WebCore/rendering/
RenderFrameSet.cpp 154 yPos += m_rows.m_sizes[r];
155 if (borderThickness && m_rows.m_allowBorder[r + 1]) {
397 m_rows.m_allowBorder[r] = true;
399 m_rows.m_allowBorder[r + 1] = true;
401 m_rows.m_preventResize[r] = true;
403 m_rows.m_preventResize[r + 1] = true;
408 m_rows.m_preventResize.fill(frameSet()->noResize());
409 m_rows.m_allowBorder.fill(false);
445 result.setPreventResize(TopFrameEdge, m_rows.m_preventResize[0]);
446 result.setAllowBorder(TopFrameEdge, m_rows.m_allowBorder[0])
    [all...]
RenderFrameSet.h 125 GridAxis m_rows; member in class:WebCore::RenderFrameSet
  /external/webkit/WebCore/html/
HTMLFrameSetElement.h 68 const Length* rowLengths() const { return m_rows; }
91 Length* m_rows; member in class:WebCore::HTMLFrameSetElement
HTMLTextAreaElement.h 41 int rows() const { return m_rows; }
107 int m_rows; member in class:WebCore::HTMLTextAreaElement
HTMLFrameSetElement.cpp 45 , m_rows(0)
61 if (m_rows)
62 delete [] m_rows;
90 if (m_rows) delete [] m_rows;
91 m_rows = newLengthArray(attr->value().string(), m_totalRows);
HTMLTextAreaElement.cpp 73 , m_rows(defaultRows)
114 if (m_rows != rows) {
115 m_rows = rows;
  /external/webkit/WebCore/accessibility/
AccessibilityTable.cpp 197 m_rows.clear();
252 row->setRowIndex((int)m_rows.size());
253 m_rows.append(row);
301 return m_rows;
312 unsigned rowCount = m_rows.size();
314 AccessibilityObject* header = static_cast<AccessibilityTableRow*>(m_rows[k].get())->headerObject();
346 int numRows = m_rows.size();
348 AccessibilityChildrenVector rowChildren = m_rows[row]->children();
366 return m_rows.size();
AccessibilityARIAGrid.cpp 76 row->setRowIndex((int)m_rows.size());
77 m_rows.append(row);
140 AccessibilityObject* tableRow = m_rows[row].get();
AccessibilityTable.h 83 AccessibilityChildrenVector m_rows; member in class:WebCore::AccessibilityTable

Completed in 61 milliseconds