OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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;
316
mutable Vector<ColumnStruct>
m_columns
;
member in class:WebCore::FINAL
RenderTable.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp
313
m_columns
.clear();
380
m_columns
.append(column);
406
return
m_columns
;
423
unsigned colCount =
m_columns
.size();
425
AXObject* header = toAXTableColumn(
m_columns
[k].get())->headerObject();
450
return
m_columns
.size();
AXTable.h
82
AccessibilityChildrenVector
m_columns
;
member in class:WebCore::AXTable
AXARIAGrid.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 363 milliseconds