HomeSort by relevance Sort by last modified time
    Searched refs:isTableRow (Results 1 - 23 of 23) 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())
AccessibilityTableRow.h 44 virtual bool isTableRow() const OVERRIDE;
AccessibilityARIAGridCell.cpp 78 if (parent->isTableRow()) {
108 if (!parent->isTableRow() && !parent->isAccessibilityTable())
AccessibilityARIAGrid.cpp 57 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole)
AccessibilityTableCell.cpp 89 if (!parent || !parent->isTableRow())
AccessibilityTable.cpp 238 if (!renderRow || !renderRow->isBoxModelObject() || !toRenderBoxModelObject(renderRow)->isTableRow())
354 if (!rowObject->isTableRow())
AccessibilityObject.h 333 virtual bool isTableRow() const { return false; }
AXObjectCache.cpp 282 if (cssBox->isTableRow())
AccessibilityRenderObject.cpp     [all...]
  /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());
RenderObjectChildList.cpp 121 ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
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...]
RenderTableSection.cpp 125 if (!child->isTableRow()) {
138 if (row && row->isTableRow() && row->isAnonymous()) {
147 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableRow())
179 ASSERT(!beforeChild || beforeChild->isTableRow());
    [all...]
RenderTable.cpp 153 } else if (child->isTableCell() || child->isTableRow())
583 if (!row->isTableRow())
    [all...]
RenderBox.cpp     [all...]
RenderLayer.cpp     [all...]
RenderObject.cpp 323 else if (newChild->isTableRow())
326 return !isTableRow();
    [all...]
RenderBoxModelObject.cpp 312 if (current->isBox() && !current->isTableRow())
    [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...]
htmlediting.cpp 399 return (renderer && (renderer->isTableCell() || renderer->isTableRow() || renderer->isTableSection() || renderer->isRenderTableCol()));
    [all...]
TextIterator.cpp 782 if (r->isTableRow()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebAccessibilityObject.cpp 896 if (!m_private->isTableRow())
907 if (!m_private->isTableRow())
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormElement.cpp 109 || (parentRenderer->isTableRow() && node->hasTagName(trTag))

Completed in 2034 milliseconds