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

  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableRow.cpp 62 if (!isTableRow())
68 bool AccessibilityTableRow::isTableRow() const
85 if (!isTableRow())
93 if (!m_renderer || !m_renderer->isTableRow())
102 if (!m_renderer || !m_renderer->isTableRow())
AccessibilityTableRow.h 44 virtual bool isTableRow() const;
AccessibilityARIAGridCell.cpp 79 if (parent->isTableRow()) {
109 if (!parent->isTableRow() && !parent->isAccessibilityTable())
AccessibilityARIAGrid.cpp 64 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole)
109 if (child->isTableRow() || child->ariaRoleAttribute() == RowRole)
AccessibilityTable.cpp 205 if (!renderRow || !renderRow->isBoxModelObject() || !toRenderBoxModelObject(renderRow)->isTableRow())
325 if (!rowObject->isTableRow())
AccessibilityObject.h 302 virtual bool isTableRow() const { return false; }
AXObjectCache.cpp 229 if (cssBox->isTableRow())
AccessibilityRenderObject.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableRow.h 50 virtual bool isTableRow() const { return true; }
74 ASSERT(!object || object->isTableRow());
80 ASSERT(!object || object->isTableRow());
RenderObjectChildList.cpp 144 ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
203 ASSERT(!owner->isBlockFlow() || (!child->isTableSection() && !child->isTableRow() && !child->isTableCell()));
255 if (!(object->isTable() || object->isTableSection() || object->isTableRow()))
RenderTableSection.cpp 105 if (!child->isTableRow()) {
119 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableRow())
155 ASSERT(!beforeChild || beforeChild->isTableRow());
445 if (child->isTableRow()) {
    [all...]
RenderBox.cpp 372 if (style()->overflowX() != OVISIBLE && !isRootObject && (isRenderBlock() || isTableRow() || isTableSection())) {
    [all...]
RenderObject.cpp 294 else if (newChild->isTableRow())
297 needsTable = !isTableRow();
645 while (o && ((o->isInline() && !o->isReplaced()) || o->isTableRow() || o->isTableSection()
    [all...]
RenderLayer.cpp 700 if (curr->isBox() && !curr->isTableRow()) {
707 if (curr->isBox() && curr->isTableRow()) {
    [all...]
RenderObject.h 294 virtual bool isTableRow() const { return false; }
    [all...]
RenderBoxModelObject.cpp 445 if (curr->isBox() && !curr->isTableRow())
479 if (curr->isBox() && !curr->isTableRow())
    [all...]
RenderTable.cpp 169 } else if (child->isTableCell() || child->isTableRow())
    [all...]
RenderBlock.cpp 720 || newChild->isTableRow()
    [all...]
  /external/webkit/Source/WebCore/editing/
DeleteSelectionCommand.cpp 47 static bool isTableRow(const Node* node)
60 if (!isTableRow(row))
187 m_startTableRow = enclosingNodeOfType(start, &isTableRow);
188 m_endTableRow = enclosingNodeOfType(end, &isTableRow);
    [all...]
htmlediting.cpp 395 return (r && (r->isTableCell() || r->isTableRow() || r->isTableSection() || r->isTableCol()));
    [all...]
TextIterator.cpp 779 if (r->isTableRow()) {
    [all...]
  /external/webkit/Source/WebCore/dom/
Text.cpp 210 if (par->isTable() || par->isTableRow() || par->isTableSection() || par->isTableCol() || par->isFrameSet())
  /external/webkit/Source/WebCore/html/
HTMLFormElement.cpp 114 || (parentRenderer->isTableRow() && node->hasTagName(trTag))
  /external/webkit/Source/WebCore/accessibility/mac/
AccessibilityObjectWrapper.mm     [all...]

Completed in 1198 milliseconds