Home
last modified time | relevance | path

Searched refs:isTableCell (Results 1 – 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXTableCell.cpp63 if (!isTableCell()) in computeAccessibilityIsIgnored()
71 if (!m_renderer || !m_renderer->isTableCell()) in parentTable()
86 bool AXTableCell::isTableCell() const in isTableCell() function in WebCore::AXTableCell
97 if (!isTableCell()) in determineAccessibilityRole()
105 if (!m_renderer || !m_renderer->isTableCell()) in rowIndexRange()
132 if (!m_renderer || !m_renderer->isTableCell()) in columnIndexRange()
145 if (isTableCell() || !m_renderer || !m_renderer->isTableCell()) in titleUIElement()
DAXTableCell.h44 virtual bool isTableCell() const OVERRIDE;
63 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableCell, isTableCell());
DAXTableRow.cpp118 if (!cell->isTableCell()) in headerObject()
DAXTable.cpp486 ASSERT(child->isTableCell()); in cellForColumnAndRow()
487 if (!child->isTableCell()) in cellForColumnAndRow()
DAXObject.h348 virtual bool isTableCell() const { return false; } in isTableCell() function
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableRow.cpp88 if (!childBox->isTableCell()) in styleDidChange()
112 if (!child->isTableCell()) { in addChild()
116 if (last && last->isAnonymous() && last->isTableCell() && !last->isBeforeOrAfterContent()) { in addChild()
125 if (cell && cell->isTableCell() && cell->isAnonymous()) { in addChild()
132 …if (last && !last->isTableCell() && last->parent() && last->parent()->isAnonymous() && !last->pare… in addChild()
152 ASSERT(!beforeChild || beforeChild->isTableCell()); in addChild()
171 if (child->isTableCell()) { in layout()
191 if (child->isTableCell()) in layout()
228 if (child->isTableCell() && !toRenderBox(child)->hasSelfPaintingLayer()) { in nodeAtPoint()
255 if (child->isTableCell()) { in paint()
DRenderTableCell.h227 virtual bool isTableCell() const { return true; } in isTableCell() function
290 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTableCell, isTableCell());
DFixedTableLayout.cpp142 if (!child->isTableCell()) in calcWidthArray()
334 if (!cell->isTableCell()) in willChangeTableLayout()
DRenderObjectChildList.cpp117 …ockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell())); in insertChildNode()
DRenderTreeAsText.cpp187 bool adjustForTableCells = cb ? cb->isTableCell() : false; in writeRenderObject()
203 } else if (o.isTableCell()) { in writeRenderObject()
304 if (o.isTableCell()) { in writeRenderObject()
414 if (o.containingBlock()->isTableCell()) in writeTextRun()
DRenderBlockFlow.cpp288 bool isCell = isTableCell(); in layoutBlock()
606 if (atBeforeSideOfBlock && oldTop == result && !isOutOfFlowPositioned() && !isTableCell()) { in adjustBlockChildForPagination()
642 …oidsFloats() || isRoot() || isRenderView() || isFloatingOrOutOfFlowPositioned() || isTableCell()) { in rebuildFloatsFromIntruding()
838 …&& !blockFlow->isFloating() && !blockFlow->isTableCell() && !blockFlow->hasOverflowClip() && !bloc… in MarginInfo()
851 m_quirkContainer = blockFlow->isTableCell() || blockFlow->isBody(); in MarginInfo()
1204 …if ((document().inQuirksMode() && hasMarginAfterQuirk(child) && (isTableCell() || isBody())) || ch… in marginBeforeEstimateForChild()
DAutoTableLayout.cpp188 while (cb && !cb->isRenderView() && !cb->isTableCell() && in shouldScaleColumns()
193 if (cb && cb->isTableCell() && in shouldScaleColumns()
DRenderBoxModelObject.h183 …urn !isFloating() && !isReplaced() && !isInline() && !hasColumns() && !isTableCell() && isRenderBl… in canHaveBoxInfoInRegion()
DRenderBox.cpp434 || isTableCell()) in canDetermineWidthWithoutLayout()
2685 if (isTableCell() || (isInline() && !isReplaced())) in computeLogicalHeight()
2849 …return !containingBlock->isTableCell() && !containingBlock->isOutOfFlowPositioned() && containingB… in skipContainingBlockForPercentHeightCalculation()
2881 else if (cb->isTableCell()) { in computePercentageLogicalHeight()
3063 if (cb->isTableCell()) { in computeReplacedLogicalHeightUsing()
3103 if (isTableCell() && (h.isAuto() || h.isPercent())) { in availableLogicalHeightUsing()
3140 if (isTableCell()) { in computeBlockDirectionMargins()
4576 …while (!cb->isRenderView() && !cb->isBody() && !cb->isTableCell() && !cb->isOutOfFlowPositioned() … in percentageLogicalHeightIsResolvableFromBlock()
4591 if (cb->isTableCell()) in percentageLogicalHeightIsResolvableFromBlock()
DRenderObject.h363 virtual bool isTableCell() const { return false; } in isTableCell() function
395 …bool isTablePart() const { return isTableCell() || isRenderTableCol() || isTableCaption() || isTab… in isTablePart()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTableCellElement.cpp112 if (renderer() && renderer()->isTableCell()) in parseAttribute()
115 if (renderer() && renderer()->isTableCell()) in parseAttribute()
175 if (!cellRenderer->isTableCell()) in cellAbove()
/external/chromium_org/third_party/WebKit/Source/core/editing/
Dhtmlediting.cpp171 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell)); in isAtUnsplittableElement()
206 Element* enclosingCell = toElement(enclosingNodeOfType(p, &isTableCell)); in unsplittableElementForPosition()
395 …return (renderer && (renderer->isTableCell() || renderer->isTableRow() || renderer->isTableSection… in isTableStructureNode()
633 return toElement(enclosingNodeOfType(p, isTableCell)); in enclosingTableCell()
676 if (n == root || isTableCell(n)) in enclosingListChild()
771 bool isTableCell(const Node* node) in isTableCell() function
777 return r->isTableCell(); in isTableCell()
801 if (!renderer->isTableCell()) in isEmptyTableCell()
DDeleteSelectionCommand.cpp54 ASSERT(isTableCell(cell)); in isTableCellEmpty()
64 if (isTableCell(child) && !isTableCellEmpty(child)) in isTableRowEmpty()
195 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary); in initializePositionData()
196 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary); in initializePositionData()
384 if (r && r->isTableCell() && toRenderTableCell(r)->contentHeight() <= 0) { in removeNode()
DApplyBlockElementCommand.cpp133 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell); in formatSelection()
140 …ingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell)) in formatSelection()
DFormatBlockCommand.cpp159 …if (isTableCell(n) || n->hasTagName(bodyTag) || !n->parentNode() || !n->parentNode()->rendererIsEd… in enclosingBlockToSplitTreeTo()
Dhtmlediting.h106 bool isTableCell(const Node*);
DTypingCommand.cpp444 Node* enclosingTableCell = enclosingNodeOfType(visibleStart.deepEquivalent(), &isTableCell); in deleteKeyPressed()
533 Node* enclosingTableCell = enclosingNodeOfType(visibleEnd.deepEquivalent(), &isTableCell); in forwardDeleteKeyPressed()
DIndentOutdentCommand.cpp98 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell); in indentIntoBlockquote()
DInsertParagraphSeparatorCommand.cpp172 || isTableCell(startBlock.get()) in doApply()
/external/chromium_org/third_party/WebKit/Source/web/
DWebAXObject.cpp954 if (!m_private->isTableCell()) in cellColumnIndex()
967 if (!m_private->isTableCell()) in cellColumnSpan()
980 if (!m_private->isTableCell()) in cellRowIndex()
993 if (!m_private->isTableCell()) in cellRowSpan()

12