HomeSort by relevance Sort by last modified time
    Searched defs:isTableRow (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTableRow.cpp 57 if (!isTableRow())
69 bool AccessibilityTableRow::isTableRow() const
92 if (!isTableRow())
109 if (!m_renderer || !m_renderer->isTableRow())
AccessibilityObject.h 333 virtual bool isTableRow() const { return false; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.h 97 virtual bool isTableRow() const { return true; }
120 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableRow());
126 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableRow());
RenderObject.h 356 virtual bool isTableRow() const { return false; }
384 bool isTablePart() const { return isTableCell() || isRenderTableCol() || isTableCaption() || isTableRow() || isTableSection(); }
489 if (isTable() || isTableRow() || isTableSection() || isRenderTableCol() || isFrameSet() || isFlexibleBox() || isRenderGrid())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteSelectionCommand.cpp 47 static bool isTableRow(const Node* node)
60 if (!isTableRow(row))
189 m_startTableRow = enclosingNodeOfType(start, &isTableRow);
190 m_endTableRow = enclosingNodeOfType(end, &isTableRow);
    [all...]

Completed in 581 milliseconds