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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTableCell.cpp 63 if (!isTableCell())
71 if (!m_renderer || !m_renderer->isTableCell())
86 bool AccessibilityTableCell::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())
AccessibilityTableCell.h 44 virtual bool isTableCell() const OVERRIDE;
AccessibilityTableRow.cpp 118 if (!cell->isTableCell())
AccessibilityTable.cpp 485 ASSERT(child->isTableCell());
486 if (!child->isTableCell())
AccessibilityObject.h 332 virtual bool isTableCell() const { return false; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.cpp 85 if (!childBox->isTableCell())
109 if (!child->isTableCell()) {
113 if (last && last->isAnonymous() && last->isTableCell() && !last->isBeforeOrAfterContent()) {
122 if (cell && cell->isTableCell() && cell->isAnonymous()) {
129 if (last && !last->isTableCell() && last->parent() && last->parent()->isAnonymous() && !last->parent()->isBeforeOrAfterContent()) {
149 ASSERT(!beforeChild || beforeChild->isTableCell());
167 if (child->isTableCell()) {
186 if (child->isTableCell())
223 if (child->isTableCell() && !toRenderBox(child)->hasSelfPaintingLayer()) {
250 if (child->isTableCell()) {
    [all...]
RenderTableCell.h 220 virtual bool isTableCell() const { return true; }
285 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCell());
291 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTableCell());
RenderObjectChildList.cpp 121 ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
FixedTableLayout.cpp 142 if (!child->isTableCell())
RenderTreeAsText.cpp 221 bool adjustForTableCells = cb ? cb->isTableCell() : false;
237 } else if (o.isTableCell()) {
338 if (o.isTableCell()) {
448 if (o.containingBlock()->isTableCell())
RenderBoxModelObject.h 178 bool canHaveBoxInfoInRegion() const { return !isFloating() && !isReplaced() && !isInline() && !hasColumns() && !isTableCell() && isBlockFlow() && !isRenderSVGBlock(); }
AutoTableLayout.cpp 188 while (cb && !cb->isRenderView() && !cb->isTableCell() &&
193 if (cb && cb->isTableCell() &&
    [all...]
RenderObject.h 353 virtual bool isTableCell() const { return false; }
384 bool isTablePart() const { return isTableCell() || isRenderTableCol() || isTableCaption() || isTableRow() || isTableSection(); }
    [all...]
RenderRegion.cpp 585 bool hasBoxDecorations = object->isTableCell()
  /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())
HTMLFormElement.cpp 112 || (parentRenderer->isTableCell() && node->hasTagName(trTag));
  /external/chromium_org/third_party/WebKit/Source/core/editing/
htmlediting.cpp 175 return (node == editableRootForPosition(pos) || node == enclosingNodeOfType(pos, &isTableCell));
210 Element* enclosingCell = toElement(enclosingNodeOfType(p, &isTableCell));
399 return (renderer && (renderer->isTableCell() || renderer->isTableRow() || renderer->isTableSection() || renderer->isRenderTableCol()));
640 return toElement(enclosingNodeOfType(p, isTableCell));
683 if (n == root || isTableCell(n))
780 bool isTableCell(const Node* node)
786 return r->isTableCell();
810 if (!renderer->isTableCell())
    [all...]
FormatBlockCommand.cpp 153 if (isTableCell(n) || n->hasTagName(bodyTag) || !n->parentNode() || !n->parentNode()->rendererIsEditable() || isElementForFormatBlock(n))
ApplyBlockElementCommand.cpp 132 Node* enclosingCell = enclosingNodeOfType(start, &isTableCell);
139 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 87 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 170 || isTableCell(startBlock.get())
  /external/chromium_org/third_party/WebKit/Source/web/
WebAccessibilityObject.cpp 940 if (!m_private->isTableCell())
953 if (!m_private->isTableCell())
966 if (!m_private->isTableCell())
979 if (!m_private->isTableCell())

Completed in 1093 milliseconds

1 2