HomeSort by relevance Sort by last modified time
    Searched refs:isTableSection (Results 1 - 12 of 12) sorted by null

  /external/webkit/WebCore/rendering/
RenderTableSection.h 111 virtual bool isTableSection() const { return true; }
157 ASSERT(!object || object->isTableSection());
163 ASSERT(!object || object->isTableSection());
RenderTable.cpp 126 } else if (child->isTableSection()) {
163 while (beforeChild && !beforeChild->isTableSection() && !beforeChild->isTableCol() && beforeChild->style()->display() != TABLE_CAPTION)
170 if (!beforeChild && lastChild() && lastChild()->isTableSection() && lastChild()->isAnonymous()) {
176 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableSection() && lastBox->style()->display() != TABLE_CAPTION && lastBox->style()->display() != TABLE_COLUMN_GROUP)
183 if (beforeChild && !beforeChild->isTableSection() && beforeChild->style()->display() != TABLE_CAPTION && beforeChild->style()->display() != TABLE_COLUMN_GROUP)
333 if (!child->isTableSection()) {
340 if (child->isTableSection()) {
397 if (child->isTableSection())
460 if (child->isTableSection()) {
479 if (child->isTableSection())
    [all...]
RenderObjectChildList.cpp 139 ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell()));
194 ASSERT(!owner->isBlockFlow() || (!child->isTableSection() && !child->isTableRow() && !child->isTableCell()));
270 if (!(object->isTable() || object->isTableSection() || object->isTableRow()))
RenderObject.cpp 285 else if (newChild->isTableSection())
288 needsTable = !isTableSection();
651 while (o && ((o->isInline() && !o->isReplaced()) || o->isTableRow() || o->isTableSection()
    [all...]
AutoTableLayout.cpp 64 else if (child->isTableSection()) {
RenderObject.h 298 virtual bool isTableSection() const { return false; }
    [all...]
RenderBox.cpp 206 if (style()->overflowX() != OVISIBLE && !isRootObject && (isRenderBlock() || isTableRow() || isTableSection())) {
    [all...]
RenderBlock.cpp 296 || newChild->isTableSection()
    [all...]
  /external/webkit/WebCore/dom/
Text.cpp 214 if (par->isTable() || par->isTableRow() || par->isTableSection() || par->isTableCol() || par->isFrameSet())
  /external/webkit/WebCore/html/
HTMLParser.cpp 331 static bool isTableSection(const Node* n)
339 isTableSection(n);
591 } else if (h->hasLocalName(tableTag) || h->hasLocalName(trTag) || isTableSection(h)) {
612 isTableSection(parent) && grandparent && grandparent->hasTagName(tableTag)) ||
614 !n->hasTagName(formTag) && !n->hasTagName(scriptTag)) && isTableSection(node) &&
    [all...]
HTMLFormElement.cpp 122 || (parentRenderer->isTableSection() && node->hasTagName(tbodyTag))
  /external/webkit/WebCore/editing/
htmlediting.cpp 431 return (r && (r->isTableCell() || r->isTableRow() || r->isTableSection() || r->isTableCol()));
    [all...]

Completed in 37 milliseconds