/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
D | AXTableRow.cpp | 57 if (!isTableRow()) in determineAccessibilityRole() 69 bool AXTableRow::isTableRow() const in isTableRow() function in WebCore::AXTableRow 92 if (!isTableRow()) in computeAccessibilityIsIgnored() 109 if (!m_renderer || !m_renderer->isTableRow()) in headerObject()
|
D | AXTableRow.h | 44 virtual bool isTableRow() const OVERRIDE; 67 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow());
|
D | AXARIAGridCell.cpp | 78 if (parent->isTableRow()) { in rowIndexRange() 108 if (!parent->isTableRow() && !parent->isAXTable()) in columnIndexRange()
|
D | AXARIAGrid.cpp | 57 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole) in addTableCellChild()
|
D | AXTableCell.cpp | 89 if (!parent || !parent->isTableRow()) in isTableCell()
|
D | AXTable.cpp | 239 … (!renderRow || !renderRow->isBoxModelObject() || !toRenderBoxModelObject(renderRow)->isTableRow()) in isDataTable() 355 if (!rowObject->isTableRow()) in addChildren()
|
D | AXObject.h | 349 virtual bool isTableRow() const { return false; } in isTableRow() function
|
D | AXObjectCache.cpp | 302 if (cssBox->isTableRow()) in createFromRenderer()
|
D | AXRenderObject.cpp | 2273 if (activeDesc && (activeDesc->isTreeItem() || activeDesc->isTableRow())) { in ariaSelectedRows()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTableRow.h | 97 virtual bool isTableRow() const { return true; } in isTableRow() function 118 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTableRow, isTableRow());
|
D | RenderObjectChildList.cpp | 117 …ASSERT(!owner->isRenderBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !… in insertChildNode()
|
D | RenderTableSection.cpp | 127 if (!child->isTableRow()) { in addChild() 140 if (row && row->isTableRow() && row->isAnonymous()) { in addChild() 149 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableRow()) in addChild() 181 ASSERT(!beforeChild || beforeChild->isTableRow()); in addChild() 1583 if (row->isTableRow()) { in recalcCells()
|
D | RenderObject.h | 366 virtual bool isTableRow() const { return false; } in isTableRow() function 395 …st { return isTableCell() || isRenderTableCol() || isTableCaption() || isTableRow() || isTableSect… in isTablePart() 485 …if (isTable() || isTableRow() || isTableSection() || isRenderTableCol() || isFrameSet() || isFlexi… in canHaveWhitespaceChildren()
|
D | RenderTable.cpp | 159 } else if (child->isTableCell() || child->isTableRow()) in addChild() 595 if (!row->isTableRow()) in recalcCollapsedBorders()
|
D | RenderLayer.cpp | 969 if (curr->isBox() && !curr->isTableRow()) { in updateLayerPosition() 976 if (curr->isBox() && curr->isTableRow()) { in updateLayerPosition() 3452 else if (renderer()->isTableRow()) { in localBoundingBox() 3788 || renderer()->isTableRow() in shouldBeSelfPaintingLayer()
|
D | RenderBox.cpp | 3686 if (curr->isBox() && !curr->isTableRow()) in computeBlockStaticDistance() 4329 if (isTableRow()) in positionForPoint() 4342 …LayoutUnit top = renderer->borderTop() + renderer->paddingTop() + (isTableRow() ? LayoutUnit() : r… in positionForPoint() 4344 …LayoutUnit left = renderer->borderLeft() + renderer->paddingLeft() + (isTableRow() ? LayoutUnit() … in positionForPoint() 4348 if (renderer->isTableRow()) in positionForPoint()
|
D | RenderObject.cpp | 307 else if (newChild->isTableRow()) in requiresAnonymousTableWrappers() 310 return !isTableRow(); in requiresAnonymousTableWrappers()
|
D | RenderBoxModelObject.cpp | 304 if (current->isBox() && !current->isTableRow()) in adjustedPositionRelativeToOffsetParent()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | DeleteSelectionCommand.cpp | 47 static bool isTableRow(const Node* node) in isTableRow() function 60 if (!isTableRow(row)) in isTableRowEmpty() 189 m_startTableRow = enclosingNodeOfType(start, &isTableRow); in initializePositionData() 190 m_endTableRow = enclosingNodeOfType(end, &isTableRow); in initializePositionData()
|
D | htmlediting.cpp | 395 …return (renderer && (renderer->isTableCell() || renderer->isTableRow() || renderer->isTableSection… in isTableStructureNode()
|
D | TextIterator.cpp | 849 if (r->isTableRow()) { in shouldEmitNewlinesBeforeAndAfterNode()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebAXObject.cpp | 910 if (!m_private->isTableRow()) in rowIndex() 921 if (!m_private->isTableRow()) in rowHeader()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScriptSource.js | 970 _generatePreview: function(object, firstLevelKeys, secondLevelKeys, isTable, isTableRow) argument 980 properties: (isTable || isTableRow) ? 1000 : Math.max(5, firstLevelKeysCount), 981 indexes: (isTable || isTableRow) ? 1000 : Math.max(100, firstLevelKeysCount)
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLFormElement.cpp | 107 || (parentRenderer->isTableRow() && node->hasTagName(trTag)) in rendererIsNeeded()
|