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 46 const Vector<String>& columnNames() const { return m_columns; }
49 void addColumn(const String& name) { m_columns.append(name); }
57 Vector<String> m_columns; member in class:blink::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;
323 mutable Vector<ColumnStruct> m_columns; member in class:blink::FINAL
346 if (m_columns[c].span > 1)
RenderTable.cpp 711 ASSERT(m_columns[position].span > firstSpan);
712 m_columns.insert(position, ColumnStruct(firstSpan));
713 m_columns[position + 1].span -= firstSpan;
716 // cell recalc. If they do, they will be synced up directly with m_columns later.
733 unsigned newColumnIndex = m_columns.size();
734 m_columns.append(ColumnStruct(span));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp 352 m_columns.clear();
419 m_columns.append(column);
445 return m_columns;
462 unsigned colCount = m_columns.size();
464 AXObject* header = toAXTableColumn(m_columns[k].get())->headerObject();
489 return m_columns.size();
AXTable.h 81 AccessibilityChildrenVector m_columns; member in class:blink::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 481 milliseconds