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

  /external/webkit/WebCore/accessibility/
AccessibilityTableRow.cpp 62 if (!isTableRow())
68 bool AccessibilityTableRow::isTableRow() const
79 if (!isTableRow())
87 if (!m_renderer || !m_renderer->isTableRow())
95 if (!m_renderer || !m_renderer->isTableRow())
AccessibilityTableRow.h 44 virtual bool isTableRow() const;
AccessibilityARIAGridCell.cpp 56 if (!parent || !parent->isTableRow())
69 if (!parent || !parent->isTableRow())
80 if (!parent || !parent->isTableRow())
AccessibilityARIAGrid.cpp 64 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole)
AccessibilityTable.cpp 243 if (!rowObject->isTableRow())
AXObjectCache.cpp 201 else if (renderer->isTableRow())
AccessibilityObject.h 282 virtual bool isTableRow() const { return false; }
AccessibilityRenderObject.cpp     [all...]
  /external/webkit/WebCore/rendering/
RenderTableRow.h 48 virtual bool isTableRow() const { return true; }
72 ASSERT(!object || object->isTableRow());
78 ASSERT(!object || object->isTableRow());
RenderObjectChildList.cpp 139 ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
194 ASSERT(!owner->isBlockFlow() || (!child->isTableSection() && !child->isTableRow() && !child->isTableCell()));
270 if (!(object->isTable() || object->isTableSection() || object->isTableRow()))
RenderTableSection.cpp 96 if (!child->isTableRow()) {
108 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableRow())
144 ASSERT(!beforeChild || beforeChild->isTableRow());
437 if (child->isTableRow()) {
    [all...]
RenderBox.cpp 206 if (style()->overflowX() != OVISIBLE && !isRootObject && (isRenderBlock() || isTableRow() || isTableSection())) {
    [all...]
RenderObject.cpp 287 else if (newChild->isTableRow())
290 needsTable = !isTableRow();
651 while (o && ((o->isInline() && !o->isReplaced()) || o->isTableRow() || o->isTableSection()
    [all...]
RenderBoxModelObject.cpp 361 if (curr->isBox() && !curr->isTableRow())
395 if (curr->isBox() && !curr->isTableRow())
    [all...]
RenderLayer.cpp 545 if (curr->isBox() && !curr->isTableRow()) {
554 if (curr->isBox() && curr->isTableRow()) {
    [all...]
RenderObject.h 297 virtual bool isTableRow() const { return false; }
    [all...]
RenderTable.cpp 156 } else if (child->isTableCell() || child->isTableRow())
    [all...]
RenderBlock.cpp 297 || newChild->isTableRow()
    [all...]
  /external/webkit/WebCore/editing/
DeleteSelectionCommand.cpp 53 static bool isTableRow(const Node* node)
66 if (!isTableRow(row))
177 m_startTableRow = enclosingNodeOfType(start, &isTableRow);
178 m_endTableRow = enclosingNodeOfType(end, &isTableRow);
    [all...]
TextIterator.cpp 656 if (r->isTableRow()) {
    [all...]
htmlediting.cpp 431 return (r && (r->isTableCell() || r->isTableRow() || r->isTableSection() || r->isTableCol()));
    [all...]
  /external/webkit/WebCore/dom/
Text.cpp 214 if (par->isTable() || par->isTableRow() || par->isTableSection() || par->isTableCol() || par->isFrameSet())
  /external/webkit/WebCore/html/
HTMLFormElement.cpp 121 || (parentRenderer->isTableRow() && node->hasTagName(trTag))
  /external/webkit/WebCore/accessibility/mac/
AccessibilityObjectWrapper.mm     [all...]

Completed in 221 milliseconds