OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_columns
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.h
82
AccessibilityChildrenVector
m_columns
;
member in class:WebCore::AXTable
/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
/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
Completed in 215 milliseconds