HomeSort by relevance Sort by last modified time
    Searched refs:isTableCell (Results 1 - 25 of 33) sorted by null

1 2

  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableCell.cpp 65 if (!isTableCell())
73 if (!m_renderer || !m_renderer->isTableCell())
84 bool AccessibilityTableCell::isTableCell() const
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())
AccessibilityTableCell.h 44 virtual bool isTableCell() const;
AccessibilityTableRow.cpp 111 if (!cell->isTableCell())
AccessibilityARIAGrid.cpp 171 if (!child->isTableCell())
AccessibilityTable.cpp 516 ASSERT(cellObject->isTableCell());
AccessibilityObject.h 304 virtual bool isTableCell() const { return false; }
AXObjectCache.cpp 231 if (cssBox->isTableCell())
  /external/webkit/Source/WebCore/rendering/
RenderTableRow.cpp 89 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()) {
RenderTableCell.h 139 virtual bool isTableCell() const { return true; }
165 ASSERT(!object || object->isTableCell());
171 ASSERT(!object || object->isTableCell());
RenderObjectChildList.cpp 144 ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
203 ASSERT(!owner->isBlockFlow() || (!child->isTableSection() && !child->isTableRow() && !child->isTableCell()));
FixedTableLayout.cpp 154 if (child->isTableCell()) {
RenderTreeAsText.cpp 247 bool adjustForTableCells = o.containingBlock()->isTableCell();
263 } else if (o.isTableCell()) {
372 if (o.isTableCell()) {
500 if (o.containingBlock()->isTableCell())
RenderBlock.cpp 98 && !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()) {
    [all...]
RenderObject.cpp 296 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()) {
    [all...]
AutoTableLayout.cpp 198 while (cb && !cb->isRenderView() && !cb->isTableCell() &&
203 if (cb && cb->isTableCell() &&
    [all...]
RenderObject.h 292 virtual bool isTableCell() const { return false; }
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableCellElement.cpp 93 if (renderer() && renderer()->isTableCell())
97 if (renderer() && renderer()->isTableCell())
179 if (!cellRenderer->isTableCell())
  /external/webkit/Source/WebCore/editing/
htmlediting.cpp 189 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)
802 return r->isTableCell();
826 if (!renderer->isTableCell())
    [all...]
FormatBlockCommand.cpp 153 if (isTableCell(n) || n->hasTagName(bodyTag) || !n->parentNode() || !n->parentNode()->rendererIsEditable() || isElementForFormatBlock(n))
ApplyBlockElementCommand.cpp 124 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
131 if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
DeleteSelectionCommand.cpp 54 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) {
    [all...]
IndentOutdentCommand.cpp 93 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
htmlediting.h 90 bool isTableCell(const Node*);
DeleteButtonController.cpp 109 if (renderer->isRenderBlock() && !renderer->isTableCell()) {
InsertParagraphSeparatorCommand.cpp 171 || isTableCell(startBlock)

Completed in 268 milliseconds

1 2