OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tableSection
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTableCell.cpp
118
RenderTableSection*
tableSection
= table->topSection();
120
while (
tableSection
) {
121
if (
tableSection
== section)
123
rowOffset +=
tableSection
->numRows();
124
tableSection
= table->sectionBelow(
tableSection
, SkipEmptySections);
AccessibilityTable.cpp
338
RenderTableSection*
tableSection
= table->topSection();
339
if (!
tableSection
)
342
RenderTableSection* initialTableSection =
tableSection
;
343
while (
tableSection
) {
346
unsigned numRows =
tableSection
->numRows();
349
RenderTableRow* renderRow =
tableSection
->rowRendererAt(rowIndex);
370
tableSection
= table->sectionBelow(
tableSection
, SkipEmptySections);
Completed in 62 milliseconds