OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:columnRange
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityARIAGridCell.h
47
virtual void columnIndexRange(pair<unsigned, unsigned>&
columnRange
) OVERRIDE;
AccessibilityTableCell.h
49
virtual void columnIndexRange(pair<unsigned, unsigned>&
columnRange
);
AccessibilityARIAGridCell.cpp
102
void AccessibilityARIAGridCell::columnIndexRange(pair<unsigned, unsigned>&
columnRange
)
115
columnRange
.first = k;
121
columnRange
.second = 1;
AccessibilityTableCell.cpp
130
void AccessibilityTableCell::columnIndexRange(pair<unsigned, unsigned>&
columnRange
)
136
columnRange
.first = renderCell->col();
137
columnRange
.second = renderCell->colSpan();
AccessibilityTable.cpp
489
pair<unsigned, unsigned>
columnRange
;
492
tableCellChild->columnIndexRange(
columnRange
);
495
if ((column >=
columnRange
.first && column < (
columnRange
.first +
columnRange
.second))
/external/chromium_org/third_party/WebKit/Source/web/
WebAccessibilityObject.cpp
943
pair<unsigned, unsigned>
columnRange
;
944
static_cast<WebCore::AccessibilityTableCell*>(m_private.get())->columnIndexRange(
columnRange
);
945
return
columnRange
.first;
956
pair<unsigned, unsigned>
columnRange
;
957
static_cast<WebCore::AccessibilityTableCell*>(m_private.get())->columnIndexRange(
columnRange
);
958
return
columnRange
.second;
Completed in 1098 milliseconds