HomeSort by relevance Sort by last modified time
    Searched full:isinline (Results 26 - 50 of 54) sorted by null

12 3

  /external/webkit/Source/WebCore/editing/
htmlediting.cpp 324 return node && node->renderer() && !node->renderer()->isInline();
    [all...]
TextIterator.cpp 742 if (t && !t->isInline())
746 return !r->isInline() && r->isRenderBlock() && !r->isFloatingOrPositioned() && !r->isBody();
878 return node->renderer() && node->renderer()->isTable() && (node->renderer()->isInline() || m_emitsCharactersBetweenAllVisiblePositions);
    [all...]
ReplaceSelectionCommand.cpp     [all...]
visible_units.cpp 494 if (p->renderer() && !p->renderer()->isInline())
    [all...]
  /external/clang/include/clang/AST/
Decl.h 344 bool IsInline : 1;
380 IsInline(false), LocStart(StartLoc), RBraceLoc(),
402 bool isInline() const {
403 return IsInline;
408 IsInline = Inline;
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderRubyRun.cpp 106 return child->isRubyText() || child->isInline();
RenderBlock.cpp 194 } else if (isInline() && parent())
218 while (cb && (cb->style()->position() == StaticPosition || (cb->isInline() && !cb->isReplaced())) && !cb->isRenderView()) {
219 if (cb->style()->position() == RelativePosition && cb->isInline() && !cb->isReplaced()) {
358 bool childIsNormal = newChild->isInline() || !newChild->style()->columnSpan();
359 bool bcpIsNormal = beforeChildParent->isInline() || !beforeChildParent->style()->columnSpan();
360 bool flowIsNormal = flow->isInline() || !flow->style()->columnSpan();
387 bool newChildHasColumnSpan = newChild->style()->columnSpan() && !newChild->isInline();
661 && !newChild->isInline() && !isAnonymousColumnSpanBlock()) {
694 if (newChild->isInline() || beforeChild->parent()->firstChild() != beforeChild)
    [all...]
RenderObject.h 397 bool isInlineElementContinuation() const { return isElementContinuation() && isInline(); }
398 bool isBlockElementContinuation() const { return isElementContinuation() && !isInline(); }
406 bool isInline() const { return m_inline; } // inline object
    [all...]
RenderLineBoxList.cpp 327 if (container->isInline() && !container->parent()->selfNeedsLayout())
RenderListItem.cpp 158 if (currChild->isInline() && (!currChild->isRenderInline() || curr->generatesLineBoxesForInlineChild(currChild)))
RenderBlock.h 334 virtual bool isBlockFlow() const { return (!isInline() || isReplaced()) && !isTable(); }
335 virtual bool isInlineBlockOrInlineTable() const { return isInline() && isReplaced(); }
    [all...]
RootInlineBox.cpp 671 ASSERT(renderer->isInline());
672 if (!renderer->isInline())
    [all...]
RenderObject.cpp 629 while (o && (o->style()->position() == StaticPosition || (o->isInline() && !o->isReplaced())) && !o->isRenderView() && !(o->hasTransform() && o->isRenderBlock())) {
635 if (o->style()->position() == RelativePosition && o->isInline() && !o->isReplaced())
645 while (o && ((o->isInline() && !o->isReplaced()) || o->isTableRow() || o->isTableSection()
    [all...]
RenderBox.cpp     [all...]
InlineFlowBox.cpp 265 while (parent && (!parent->isRenderBlock() || parent->isInline())) {
281 while (object && (!object->isRenderBlock() || object->isInline())) {
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp     [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncAdapter.java 763 boolean isInline = false;
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 693 cast<NamespaceDecl>(this)->isInline();
    [all...]
DumpXML.cpp 439 setFlag("inline", D->isInline());
Decl.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 434 FD->IsInline = Record[Idx++];
797 D->IsInline = Record[Idx++];
    [all...]
ASTWriterDecl.cpp 367 Record.push_back(D->IsInline);
782 Record.push_back(D->isInline());
    [all...]
  /external/webkit/Source/WebCore/dom/
Position.cpp 479 if (!node->renderer()->isInline())
    [all...]

Completed in 3640 milliseconds

12 3