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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableCell.h 44 virtual bool isTableCell() const OVERRIDE;
63 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableCell, isTableCell());
AXTableCell.cpp 63 if (!isTableCell())
71 if (!m_renderer || !m_renderer->isTableCell())
86 bool AXTableCell::isTableCell() const
97 if (!isTableCell())
105 if (!m_renderer || !m_renderer->isTableCell())
132 if (!m_renderer || !m_renderer->isTableCell())
145 if (isTableCell() || !m_renderer || !m_renderer->isTableCell())
AXTableRow.cpp 118 if (!cell->isTableCell())
AXTable.cpp 486 ASSERT(child->isTableCell());
487 if (!child->isTableCell())
AXObject.h 348 virtual bool isTableCell() const { return false; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.cpp 88 if (!childBox->isTableCell())
112 if (!child->isTableCell()) {
116 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());
171 if (child->isTableCell()) {
191 if (child->isTableCell())
228 if (child->isTableCell() && !toRenderBox(child)->hasSelfPaintingLayer()) {
255 if (child->isTableCell()) {
    [all...]
RenderObjectChildList.cpp 117 ASSERT(!owner->isRenderBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
FixedTableLayout.cpp 142 if (!child->isTableCell())
334 if (!cell->isTableCell())
RenderTableCell.h 227 virtual bool isTableCell() const { return true; }
290 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTableCell, isTableCell());
RenderTreeAsText.cpp 187 bool adjustForTableCells = cb ? cb->isTableCell() : false;
203 } else if (o.isTableCell()) {
304 if (o.isTableCell()) {
414 if (o.containingBlock()->isTableCell())
    [all...]
RenderBlockFlow.cpp 288 bool isCell = isTableCell();
606 if (atBeforeSideOfBlock && oldTop == result && !isOutOfFlowPositioned() && !isTableCell()) {
642 if (avoidsFloats() || isRoot() || isRenderView() || isFloatingOrOutOfFlowPositioned() || isTableCell()) {
    [all...]
RenderBoxModelObject.h 183 bool canHaveBoxInfoInRegion() const { return !isFloating() && !isReplaced() && !isInline() && !hasColumns() && !isTableCell() && isRenderBlock() && !isRenderSVGBlock(); }
AutoTableLayout.cpp 188 while (cb && !cb->isRenderView() && !cb->isTableCell() &&
193 if (cb && cb->isTableCell() &&
    [all...]
RenderObject.h 363 virtual bool isTableCell() const { return false; }
395 bool isTablePart() const { return isTableCell() || isRenderTableCol() || isTableCaption() || isTableRow() || isTableSection(); }
    [all...]
RenderBox.cpp 434 || isTableCell())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableCellElement.cpp 112 if (renderer() && renderer()->isTableCell())
115 if (renderer() && renderer()->isTableCell())
175 if (!cellRenderer->isTableCell())
  /external/chromium_org/third_party/WebKit/Source/core/editing/
htmlediting.cpp 171 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
206 Element* enclosingCell = toElement(enclosingNodeOfType(p, &isTableCell));
395 return (renderer && (renderer->isTableCell() || renderer->isTableRow() || renderer->isTableSection() || renderer->isRenderTableCol()));
633 return toElement(enclosingNodeOfType(p, isTableCell));
676 if (n == root || isTableCell(n))
771 bool isTableCell(const Node* node)
777 return r->isTableCell();
801 if (!renderer->isTableCell())
    [all...]
FormatBlockCommand.cpp 159 if (isTableCell(n) || n->hasTagName(bodyTag) || !n->parentNode() || !n->parentNode()->rendererIsEditable() || isElementForFormatBlock(n))
ApplyBlockElementCommand.cpp 133 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
140 if (enclosingCell && enclosingCell != enclosingNodeOfType(endOfNextParagraph.deepEquivalent(), &isTableCell))
DeleteSelectionCommand.cpp 54 ASSERT(isTableCell(cell));
64 if (isTableCell(child) && !isTableCellEmpty(child))
195 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
196 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
384 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 444 Node* enclosingTableCell = enclosingNodeOfType(visibleStart.deepEquivalent(), &isTableCell);
533 Node* enclosingTableCell = enclosingNodeOfType(visibleEnd.deepEquivalent(), &isTableCell);
InsertParagraphSeparatorCommand.cpp 172 || isTableCell(startBlock.get())
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 954 if (!m_private->isTableCell())
967 if (!m_private->isTableCell())
980 if (!m_private->isTableCell())
993 if (!m_private->isTableCell())

Completed in 105 milliseconds

1 2