HomeSort by relevance Sort by last modified time
    Searched refs:isTableCell (Results 1 - 25 of 36) 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 517 ASSERT(child->isTableCell());
518 if (!child->isTableCell())
AXObject.h 348 virtual bool isTableCell() const { return false; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.cpp 87 if (!childBox->isTableCell())
111 if (!child->isTableCell()) {
115 if (last && last->isAnonymous() && last->isTableCell() && !last->isBeforeOrAfterContent()) {
125 if (cell && cell->isTableCell() && cell->isAnonymous()) {
132 if (last && !last->isTableCell() && last->parent() && last->parent()->isAnonymous() && !last->parent()->isBeforeOrAfterContent()) {
152 ASSERT(!beforeChild || beforeChild->isTableCell());
RenderObjectChildList.cpp 122 ASSERT(!owner->isRenderBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
RenderTableCell.h 229 virtual bool isTableCell() const OVERRIDE { return true; }
295 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTableCell, isTableCell());
FastTextAutosizer.h 157 , m_hasTableAncestor(root->isTableCell() || (m_parent && m_parent->m_hasTableAncestor))
FastTextAutosizer.cpp 173 || renderer->isTableCell()
371 bool isAutoTableCell = block->isTableCell() && !toRenderTableCell(block)->table()->style()->isFixedTableLayout();
689 if (renderer->isTableCell())
797 if (root->isTable() || root->isTableCell())
828 if (!(block->isTable() || block->isTableCell() || block->isListItem()))
838 Length specifiedWidth = block->isTableCell()
    [all...]
RenderTreeAsText.cpp 186 bool adjustForTableCells = cb ? cb->isTableCell() : false;
202 } else if (o.isTableCell()) {
303 if (o.isTableCell()) {
413 if (o.containingBlock()->isTableCell())
AutoTableLayout.cpp 189 while (cb && !cb->isRenderView() && !cb->isTableCell() &&
194 if (cb && cb->isTableCell() &&
    [all...]
RenderBlock.cpp 541 if (!curr->isRenderBlock() || curr->isFloatingOrOutOfFlowPositioned() || curr->isTableCell() || curr->isDocumentElement() || curr->isRenderView() || curr->hasOverflowClip()
    [all...]
RenderBox.cpp     [all...]
RenderObject.h 370 virtual bool isTableCell() const { return false; }
385 bool isTablePart() const { return isTableCell() || isRenderTableCol() || isTableCaption() || isTableRow() || isTableSection(); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableCellElement.cpp 107 if (renderer() && renderer()->isTableCell())
110 if (renderer() && renderer()->isTableCell())
173 if (!cellRenderer->isTableCell())
  /external/chromium_org/third_party/WebKit/Source/core/editing/
htmlediting.cpp 173 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
208 Element* enclosingCell = toElement(enclosingNodeOfType(p, &isTableCell));
401 return (renderer && (renderer->isTableCell() || renderer->isTableRow() || renderer->isTableSection() || renderer->isRenderTableCol()));
637 return toElement(enclosingNodeOfType(p, isTableCell));
680 if (n == root || isTableCell(n))
745 bool isTableCell(const Node* node)
749 return r ? r->isTableCell() : isHTMLTableCellElement(*node);
773 if (!renderer->isTableCell())
    [all...]
FormatBlockCommand.cpp 159 if (isTableCell(n) || isHTMLBodyElement(*n) || !n->parentNode() || !n->parentNode()->rendererIsEditable() || isElementForFormatBlock(n))
ApplyBlockElementCommand.cpp 137 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
144 if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
DeleteSelectionCommand.cpp 48 ASSERT(isTableCell(cell));
58 if (isTableCell(child) && !isTableCellEmpty(child))
185 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
186 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
374 if (r && r->isTableCell() && toRenderTableCell(r)->contentHeight() <= 0) {
    [all...]
IndentOutdentCommand.cpp 98 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
htmlediting.h 106 bool isTableCell(const Node*);
TypingCommand.cpp 449 Node* enclosingTableCell = enclosingNodeOfType(visibleStart.deepEquivalent(), &isTableCell);
538 Node* enclosingTableCell = enclosingNodeOfType(visibleEnd.deepEquivalent(), &isTableCell);
InsertParagraphSeparatorCommand.cpp 172 || isTableCell(startBlock.get())
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 1058 if (!m_private->isTableCell())
1071 if (!m_private->isTableCell())
1084 if (!m_private->isTableCell())
1097 if (!m_private->isTableCell())

Completed in 422 milliseconds

1 2