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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableCell.cpp 62 if (!isTableCell())
70 if (!m_renderer || !m_renderer->isTableCell())
85 bool AXTableCell::isTableCell() const
96 if (!isTableCell())
104 if (!m_renderer || !m_renderer->isTableCell())
131 if (!m_renderer || !m_renderer->isTableCell())
144 if (isTableCell() || !m_renderer || !m_renderer->isTableCell())
AXTableCell.h 44 virtual bool isTableCell() const OVERRIDE FINAL;
63 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableCell, isTableCell());
AXTableRow.cpp 117 if (!cell->isTableCell())
AXTable.cpp 514 ASSERT(child->isTableCell());
515 if (!child->isTableCell())
AXObject.h 353 virtual bool isTableCell() const { return false; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.cpp 93 if (!childBox->isTableCell())
117 if (!child->isTableCell()) {
121 if (last && last->isAnonymous() && last->isTableCell() && !last->isBeforeOrAfterContent()) {
131 if (cell && cell->isTableCell() && cell->isAnonymous()) {
138 if (last && !last->isTableCell() && last->parent() && last->parent()->isAnonymous() && !last->parent()->isBeforeOrAfterContent()) {
158 ASSERT(!beforeChild || beforeChild->isTableCell());
RenderTableCell.h 229 virtual bool isTableCell() const OVERRIDE { return true; }
295 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTableCell, isTableCell());
RenderObjectChildList.cpp 125 ASSERT(!owner->isRenderBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
TextAutosizer.cpp 170 || renderer->isTableCell()
368 bool isAutoTableCell = block->isTableCell() && !toRenderTableCell(block)->table()->style()->isFixedTableLayout();
686 if (renderer->isTableCell())
794 if (root->isTable() || root->isTableCell())
825 if (!(block->isTable() || block->isTableCell() || block->isListItem()))
835 Length specifiedWidth = block->isTableCell()
    [all...]
RenderTreeAsText.cpp 191 bool adjustForTableCells = cb ? cb->isTableCell() : false;
207 } else if (o.isTableCell()) {
304 if (o.isTableCell()) {
415 if (o.containingBlock()->isTableCell())
TextAutosizer.h 159 , m_hasTableAncestor(root->isTableCell() || (m_parent && m_parent->m_hasTableAncestor))
AutoTableLayout.cpp 190 while (cb && !cb->isRenderView() && !cb->isTableCell() &&
195 if (cb && cb->isTableCell() &&
    [all...]
RenderBlock.cpp 560 if (!curr->isRenderBlock() || curr->isFloatingOrOutOfFlowPositioned() || curr->isTableCell() || curr->isDocumentElement() || curr->isRenderView() || curr->hasOverflowClip()
    [all...]
RenderBoxModelObject.cpp 180 if (cb->isTableCell())
RenderBox.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableCellElement.cpp 111 if (renderer() && renderer()->isTableCell())
114 if (renderer() && renderer()->isTableCell())
177 if (!cellRenderer->isTableCell())
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FormatBlockCommand.cpp 160 if (isTableCell(n) || isHTMLBodyElement(*n) || !n->parentNode() || !n->parentNode()->hasEditableStyle() || isElementForFormatBlock(n))
ApplyBlockElementCommand.cpp 138 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
145 if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
htmlediting.cpp 173 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
208 Element* enclosingCell = toElement(enclosingNodeOfType(p, &isTableCell));
418 return (renderer && (renderer->isTableCell() || renderer->isTableRow() || renderer->isTableSection() || renderer->isRenderTableCol()));
659 return toElement(enclosingNodeOfType(p, isTableCell));
703 if (n == root || isTableCell(n))
768 bool isTableCell(const Node* node)
772 return r ? r->isTableCell() : isHTMLTableCellElement(*node);
796 if (!renderer->isTableCell())
    [all...]
DeleteSelectionCommand.cpp 52 ASSERT(isTableCell(cell));
62 if (isTableCell(child) && !isTableCellEmpty(child))
189 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
190 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
378 if (r && r->isTableCell() && toRenderTableCell(r)->contentHeight() <= 0) {
    [all...]
IndentOutdentCommand.cpp 102 Element* enclosingCell = toElement(enclosingNodeOfType(start, &isTableCell));
htmlediting.h 114 bool isTableCell(const Node*);
TypingCommand.cpp 454 Node* enclosingTableCell = enclosingNodeOfType(visibleStart.deepEquivalent(), &isTableCell);
543 Node* enclosingTableCell = enclosingNodeOfType(visibleEnd.deepEquivalent(), &isTableCell);
InsertParagraphSeparatorCommand.cpp 175 || isTableCell(startBlock.get())
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 1042 if (!m_private->isTableCell())
1055 if (!m_private->isTableCell())
1068 if (!m_private->isTableCell())
1081 if (!m_private->isTableCell())

Completed in 198 milliseconds

1 2