Searched refs:isTableCell (Results 1 - 25 of 33) sorted by relevance

12

/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityTableCell.cpp65 if (!isTableCell())
73 if (!m_renderer || !m_renderer->isTableCell())
84 bool AccessibilityTableCell::isTableCell() const function in class:WebCore::AccessibilityTableCell
95 if (!isTableCell())
103 if (!m_renderer || !m_renderer->isTableCell())
133 if (!m_renderer || !m_renderer->isTableCell())
146 if (isTableCell() || !m_renderer || !m_renderer->isTableCell())
H A DAccessibilityTableCell.h44 virtual bool isTableCell() const;
H A DAccessibilityTableRow.cpp111 if (!cell->isTableCell())
H A DAccessibilityARIAGrid.cpp171 if (!child->isTableCell())
H A DAccessibilityTable.cpp516 ASSERT(cellObject->isTableCell());
H A DAXObjectCache.cpp231 if (cssBox->isTableCell())
H A DAccessibilityObject.h304 virtual bool isTableCell() const { return false; } function in class:WebCore::AccessibilityObject
/external/webkit/Source/WebCore/rendering/
H A DRenderTableRow.cpp89 if (!child->isTableCell()) {
93 if (last && last->isAnonymous() && last->isTableCell() && !last->isBeforeOrAfterContent()) {
101 if (last && !last->isTableCell() && last->parent() && last->parent()->isAnonymous() && !last->parent()->isBeforeOrAfterContent()) {
126 ASSERT(!beforeChild || beforeChild->isTableCell());
143 if (child->isTableCell()) {
162 if (child->isTableCell())
199 if (child->isTableCell() && !toRenderBox(child)->hasSelfPaintingLayer()) {
217 if (child->isTableCell()) {
H A DRenderTableCell.h139 virtual bool isTableCell() const { return true; } function in class:WebCore::RenderTableCell
165 ASSERT(!object || object->isTableCell());
171 ASSERT(!object || object->isTableCell());
H A DRenderObjectChildList.cpp144 ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
203 ASSERT(!owner->isBlockFlow() || (!child->isTableSection() && !child->isTableRow() && !child->isTableCell()));
H A DFixedTableLayout.cpp154 if (child->isTableCell()) {
H A DRenderTreeAsText.cpp247 bool adjustForTableCells = o.containingBlock()->isTableCell();
263 } else if (o.isTableCell()) {
372 if (o.isTableCell()) {
500 if (o.containingBlock()->isTableCell())
H A DRenderBlock.cpp98 && !block->isFloating() && !block->isTableCell() && !block->hasOverflowClip() && !block->isInlineBlockOrInlineTable()
110 m_quirkContainer = block->isTableCell() || block->isBody() || block->style()->marginBeforeCollapse() == MDISCARD ||
425 if (!curr->isRenderBlock() || curr->isFloatingOrPositioned() || curr->isTableCell() || curr->isRoot() || curr->isRenderView() || curr->hasOverflowClip()
721 || newChild->isTableCell()) {
1106 if (cb->style()->logicalHeight().isFixed() || cb->isTableCell())
1253 bool isCell = isTableCell();
1478 || hasColumns() || isTableCell() || isFieldset() || isWritingModeRoot();
2058 if (atBeforeSideOfBlock && oldTop == logicalTopBeforeClear && !isPositioned() && !isTableCell()) {
2753 isFloatingOrPositioned() || isTableCell() || isInlineBlockOrInlineTable() || hasTransform() ||
3611 if (avoidsFloats() || isRoot() || isRenderView() || isFloatingOrPositioned() || isTableCell()) {
[all...]
H A DRenderObject.cpp296 else if (newChild->isTableCell()) {
302 if (needsTable && isTableCell() && !children->firstChild() && !newChild->isTableCell())
589 RenderObject* o = isTableCell() ? containingBlock() : container();
593 RenderObject* container = o->isTableCell() ? o->containingBlock() : o->container();
614 if (isTableCell()) {
H A DAutoTableLayout.cpp198 while (cb && !cb->isRenderView() && !cb->isTableCell() &&
203 if (cb && cb->isTableCell() &&
H A DRenderObject.h292 virtual bool isTableCell() const { return false; } function in class:WebCore::RenderObject
995 || (obj->hasOverflowClip() && !obj->style()->width().isIntrinsicOrAuto() && !obj->style()->height().isIntrinsicOrAuto() && !obj->style()->height().isPercent() && !obj->isTableCell())
/external/webkit/Source/WebCore/html/
H A DHTMLTableCellElement.cpp93 if (renderer() && renderer()->isTableCell())
97 if (renderer() && renderer()->isTableCell())
179 if (!cellRenderer->isTableCell())
/external/webkit/Source/WebCore/editing/
H A Dhtmlediting.cpp189 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
224 Element* enclosingCell = static_cast<Element*>(enclosingNodeOfType(p, &isTableCell));
395 return (r && (r->isTableCell() || r->isTableRow() || r->isTableSection() || r->isTableCol()));
656 return static_cast<Element*>(enclosingNodeOfType(p, isTableCell));
699 if (n == root || isTableCell(n))
796 bool isTableCell(const Node* node) function in namespace:WebCore
802 return r->isTableCell();
826 if (!renderer->isTableCell())
H A DFormatBlockCommand.cpp153 if (isTableCell(n) || n->hasTagName(bodyTag) || !n->parentNode() || !n->parentNode()->rendererIsEditable() || isElementForFormatBlock(n))
H A DApplyBlockElementCommand.cpp124 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
131 if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
H A DDeleteSelectionCommand.cpp54 ASSERT(isTableCell(cell));
64 if (isTableCell(child) && !isTableCellEmpty(child))
193 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
194 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
387 if (r && r->isTableCell() && toRenderTableCell(r)->contentHeight() <= 0) {
H A DIndentOutdentCommand.cpp93 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
H A Dhtmlediting.h90 bool isTableCell(const Node*);
H A DDeleteButtonController.cpp109 if (renderer->isRenderBlock() && !renderer->isTableCell()) {
H A DInsertParagraphSeparatorCommand.cpp171 || isTableCell(startBlock)

Completed in 3194 milliseconds

12