/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityTableCell.cpp | 65 if (!isTableCell()) in accessibilityIsIgnored() 73 if (!m_renderer || !m_renderer->isTableCell()) in parentTable() 84 bool AccessibilityTableCell::isTableCell() const in isTableCell() function in WebCore::AccessibilityTableCell 95 if (!isTableCell()) in roleValue() 103 if (!m_renderer || !m_renderer->isTableCell()) in rowIndexRange() 133 if (!m_renderer || !m_renderer->isTableCell()) in columnIndexRange() 146 if (isTableCell() || !m_renderer || !m_renderer->isTableCell()) in titleUIElement()
|
D | AccessibilityTableCell.h | 44 virtual bool isTableCell() const;
|
D | AccessibilityTableRow.cpp | 111 if (!cell->isTableCell()) in headerObject()
|
D | AccessibilityARIAGrid.cpp | 171 if (!child->isTableCell()) in cellForColumnAndRow()
|
D | AccessibilityTable.cpp | 516 ASSERT(cellObject->isTableCell()); in cellForColumnAndRow()
|
D | AXObjectCache.cpp | 231 if (cssBox->isTableCell()) in createFromRenderer()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderTableRow.cpp | 89 if (!child->isTableCell()) { in addChild() 93 if (last && last->isAnonymous() && last->isTableCell()) { in addChild() 101 if (last && !last->isTableCell() && last->parent() && last->parent()->isAnonymous()) { in addChild() 126 ASSERT(!beforeChild || beforeChild->isTableCell()); in addChild() 143 if (child->isTableCell()) { in layout() 162 if (child->isTableCell()) in layout() 199 if (child->isTableCell() && !toRenderBox(child)->hasSelfPaintingLayer()) { in nodeAtPoint() 217 if (child->isTableCell()) { in paint()
|
D | RenderTableCell.h | 139 virtual bool isTableCell() const { return true; } in isTableCell() function 165 ASSERT(!object || object->isTableCell()); in toRenderTableCell() 171 ASSERT(!object || object->isTableCell()); in toRenderTableCell()
|
D | RenderTreeAsText.cpp | 247 bool adjustForTableCells = o.containingBlock()->isTableCell(); in writeRenderObject() 263 } else if (o.isTableCell()) { in writeRenderObject() 372 if (o.isTableCell()) { in writeRenderObject() 500 if (o.containingBlock()->isTableCell()) in writeTextRun()
|
D | RenderObjectChildList.cpp | 144 …ockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell())); in appendChildNode() 203 …ner->isBlockFlow() || (!child->isTableSection() && !child->isTableRow() && !child->isTableCell())); in insertChildNode()
|
D | FixedTableLayout.cpp | 154 if (child->isTableCell()) { in calcWidthArray()
|
D | RenderBlock.cpp | 98 …&& !block->isFloating() && !block->isTableCell() && !block->hasOverflowClip() && !block->isInlineB… in MarginInfo() 110 …m_quirkContainer = block->isTableCell() || block->isBody() || block->style()->marginBeforeCollapse… in MarginInfo() 424 …if (!curr->isRenderBlock() || curr->isFloatingOrPositioned() || curr->isTableCell() || curr->isRoo… in containingColumnsBlock() 706 || newChild->isTableCell()) { in addChildIgnoringAnonymousColumnBlocks() 1091 if (cb->style()->logicalHeight().isFixed() || cb->isTableCell()) in isSelfCollapsingBlock() 1238 bool isCell = isTableCell(); in layoutBlock() 1463 || hasColumns() || isTableCell() || isFieldset() || isWritingModeRoot(); in expandsToEncloseOverhangingFloats() 2038 … if (atBeforeSideOfBlock && oldTop == logicalTopBeforeClear && !isPositioned() && !isTableCell()) { in layoutBlockChild() 2729 … isFloatingOrPositioned() || isTableCell() || isInlineBlockOrInlineTable() || hasTransform() || in isSelectionRoot() 3587 if (avoidsFloats() || isRoot() || isRenderView() || isFloatingOrPositioned() || isTableCell()) { in clearFloats() [all …]
|
D | RenderObject.cpp | 296 else if (newChild->isTableCell()) { in addChild() 302 if (needsTable && isTableCell() && !children->firstChild() && !newChild->isTableCell()) in addChild() 589 RenderObject* o = isTableCell() ? containingBlock() : container(); in invalidateContainerPreferredLogicalWidths() 593 RenderObject* container = o->isTableCell() ? o->containingBlock() : o->container(); in invalidateContainerPreferredLogicalWidths() 614 if (isTableCell()) { in containingBlock()
|
D | AutoTableLayout.cpp | 198 while (cb && !cb->isRenderView() && !cb->isTableCell() && in shouldScaleColumns() 203 if (cb && cb->isTableCell() && in shouldScaleColumns()
|
D | RenderObject.h | 292 virtual bool isTableCell() const { return false; } in isTableCell() function 987 …tyle()->height().isIntrinsicOrAuto() && !obj->style()->height().isPercent() && !obj->isTableCell()) in objectIsRelayoutBoundary()
|
D | RenderBox.cpp | 1776 if (isTableCell() || (isInline() && !isReplaced())) in computeLogicalHeight() 1914 …while (!cb->isRenderView() && !cb->isBody() && !cb->isTableCell() && !cb->isPositioned() && cb->st… in computePercentageLogicalHeight() 1933 if (cb->isTableCell()) { in computePercentageLogicalHeight() 2058 …if (cb->isTableCell() && (cb->style()->logicalHeight().isAuto() || cb->style()->logicalHeight().is… in computeReplacedLogicalHeightUsing() 2088 if (isTableCell() && (h.isAuto() || h.isPercent())) in availableLogicalHeightUsing() 2110 if (isTableCell()) { in computeBlockDirectionMargins()
|
/external/webkit/Source/WebCore/html/ |
D | HTMLTableCellElement.cpp | 93 if (renderer() && renderer()->isTableCell()) in parseMappedAttribute() 97 if (renderer() && renderer()->isTableCell()) in parseMappedAttribute() 179 if (!cellRenderer->isTableCell()) in cellAbove()
|
/external/webkit/Source/WebCore/editing/ |
D | htmlediting.cpp | 189 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell)); in isAtUnsplittableElement() 224 Element* enclosingCell = static_cast<Element*>(enclosingNodeOfType(p, &isTableCell)); in unsplittableElementForPosition() 395 return (r && (r->isTableCell() || r->isTableRow() || r->isTableSection() || r->isTableCol())); in isTableStructureNode() 656 return static_cast<Element*>(enclosingNodeOfType(p, isTableCell)); in enclosingTableCell() 699 if (n == root || isTableCell(n)) in enclosingListChild() 796 bool isTableCell(const Node* node) in isTableCell() function 802 return r->isTableCell(); in isTableCell() 826 if (!renderer->isTableCell()) in isEmptyTableCell()
|
D | DeleteSelectionCommand.cpp | 54 ASSERT(isTableCell(cell)); in isTableCellEmpty() 64 if (isTableCell(child) && !isTableCellEmpty(child)) in isTableRowEmpty() 193 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary); in initializePositionData() 194 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary); in initializePositionData() 387 if (r && r->isTableCell() && toRenderTableCell(r)->contentHeight() <= 0) { in removeNode()
|
D | ApplyBlockElementCommand.cpp | 124 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell); in formatSelection() 131 …ingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell)) in formatSelection()
|
D | FormatBlockCommand.cpp | 153 …if (isTableCell(n) || n->hasTagName(bodyTag) || !n->parentNode() || !n->parentNode()->rendererIsEd… in enclosingBlockToSplitTreeTo()
|
D | htmlediting.h | 90 bool isTableCell(const Node*);
|
D | IndentOutdentCommand.cpp | 93 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell); in indentIntoBlockquote()
|
D | DeleteButtonController.cpp | 109 if (renderer->isRenderBlock() && !renderer->isTableCell()) { in isDeletableElement()
|
D | InsertParagraphSeparatorCommand.cpp | 171 || isTableCell(startBlock) in doApply()
|