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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLResultSetRowList.h 43 const Vector<String>& columnNames() const { return m_columns; }
46 void addColumn(const String& name) { m_columns.append(name); }
57 Vector<String> m_columns; member in class:WebCore::SQLResultSetRowList
SQLResultSetRowList.cpp 39 ASSERT(m_result.size() % m_columns.size() == 0);
41 return m_result.size() / m_columns.size();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.h 144 const Vector<ColumnStruct>& columns() const { return m_columns; }
169 unsigned numEffCols() const { return m_columns.size(); }
170 unsigned spanOfEffCol(unsigned effCol) const { return m_columns[effCol].span; }
176 for (unsigned c = 0; effColumn < numColumns && c + m_columns[effColumn].span - 1 < column; ++effColumn)
177 c += m_columns[effColumn].span;
185 c += m_columns[i].span;
315 mutable Vector<ColumnStruct> m_columns; member in class:WebCore::FINAL
RenderTable.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTable.cpp 312 m_columns.clear();
379 m_columns.append(column);
405 return m_columns;
422 unsigned colCount = m_columns.size();
424 AccessibilityObject* header = static_cast<AccessibilityTableColumn*>(m_columns[k].get())->headerObject();
449 return m_columns.size();
AccessibilityTable.h 82 AccessibilityChildrenVector m_columns; member in class:WebCore::AccessibilityTable
AccessibilityARIAGrid.cpp 123 m_columns.append(column);
  /external/eigen/doc/
I03_InsideEigenExample.dox 109 As you can see, the constructor also sets the \a m_rows member to \a size. Notice that there is no \a m_columns member: indeed, in this partial specialization of DenseStorage, we know the number of columns at compile-time, since the _Cols template parameter is different from Dynamic. Namely, in our case, _Cols is 1, which is to say that our vector is just a matrix with 1 column. Hence, there is no need to store the number of columns as a runtime variable.

Completed in 192 milliseconds