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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLResultSetRowList.h 45 const Vector<String>& columnNames() const { return m_columns; }
48 void addColumn(const String& name) { m_columns.append(name); }
59 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; }
179 for (unsigned c = 0; effColumn < numColumns && c + m_columns[effColumn].span - 1 < column; ++effColumn)
180 c += m_columns[effColumn].span;
191 c += m_columns[i].span;
321 mutable Vector<ColumnStruct> m_columns; member in class:WebCore::FINAL
344 if (m_columns[c].span > 1)
RenderTable.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp 355 m_columns.clear();
422 m_columns.append(column);
448 return m_columns;
465 unsigned colCount = m_columns.size();
467 AXObject* header = toAXTableColumn(m_columns[k].get())->headerObject();
492 return m_columns.size();
AXTable.h 81 AccessibilityChildrenVector m_columns; member in class:WebCore::AXTable
AXARIAGrid.cpp 122 m_columns.append(column);
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_flate.cpp 592 int m_Colors, m_BitsPerComponent, m_Columns, m_PredictPitch, m_LeftOver;
651 m_Columns = Columns;
652 m_PredictPitch = (m_BitsPerComponent * m_Colors * m_Columns + 7) / 8;
689 PNG_PredictLine(m_pScanline, m_pPredictRaw, m_pLastLine, m_BitsPerComponent, m_Colors, m_Columns);
706 PNG_PredictLine(m_pPredictBuffer, m_pPredictRaw, m_pLastLine, m_BitsPerComponent, m_Colors, m_Columns);
710 TIFF_PredictLine(m_pPredictBuffer, m_PredictPitch, m_BitsPerComponent, m_Colors, m_Columns);
    [all...]
  /external/eigen/doc/
InsideEigenExample.dox 104 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 363 milliseconds