HomeSort by relevance Sort by last modified time
    Searched defs:m_columns (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/wml/
WMLTableElement.h 52 unsigned m_columns; member in class:WebCore::WMLTableElement
  /external/webkit/Source/WebCore/html/
HTMLDataGridElement.h 54 DataGridColumnList* columns() const { return m_columns.get(); }
62 RefPtr<DataGridColumnList> m_columns; member in class:WebCore::HTMLDataGridElement
DataGridColumnList.h 27 unsigned length() const { return m_columns.size(); }
29 DataGridColumn* item(unsigned index) const { return m_columns[index].get(); }
54 Vector<RefPtr<DataGridColumn> > m_columns; member in class:WebCore::DataGridColumnList
DataGridColumn.h 67 m_columns = list;
84 : m_columns(0)
96 DataGridColumnList* m_columns; // Not refcounted. The columns list will null out our reference when it goes away. member in class:WebCore::DataGridColumn
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.h 86 AccessibilityChildrenVector m_columns; member in class:WebCore::AccessibilityTable
  /external/webkit/Source/WebCore/storage/
SQLResultSetRowList.h 43 const Vector<String>& columnNames() const { return m_columns; }
46 void addColumn(const String& name) { m_columns.append(name); }
54 Vector<String> m_columns; member in class:WebCore::SQLResultSetRowList
  /external/webkit/Source/WebCore/rendering/
RenderTable.h 141 Vector<ColumnStruct>& columns() { return m_columns; }
149 int numEffCols() const { return m_columns.size(); }
150 int spanOfEffCol(int effCol) const { return m_columns[effCol].span; }
157 c += m_columns[i].span;
165 c += m_columns[i].span;
250 mutable Vector<ColumnStruct> m_columns; member in class:WebCore::RenderTable

Completed in 115 milliseconds