Searched refs:isText (Results 1 - 25 of 71) sorted by relevance

123

/external/llvm/lib/MC/
H A DMCSectionCOFF.cpp41 if (getKind().isText())
79 return getKind().isText();
/external/webkit/Source/WebCore/rendering/style/
H A DContentData.h55 bool isText() const { return m_type == CONTENT_TEXT; } function in struct:WebCore::ContentData
75 ASSERT(isText());
/external/webkit/Source/WebCore/rendering/
H A DInlineIterator.h73 return m_obj && m_obj->preservesNewline() && m_obj->isText() && toRenderText(m_obj)->textLength()
145 if (!oldEndOfInline && !current->isFloating() && !current->isReplaced() && !current->isPositioned() && !current->isText()) {
178 if (next->isText() || next->isFloating() || next->isReplaced() || next->isPositioned()
209 if (o && !o->isText() && !o->isReplaced() && !o->isFloating() && !o->isPositioned())
221 if (m_obj->isText()) {
237 if (!m_obj || !m_obj->isText())
H A DRenderListMarker.h65 bool isText() const { return !isImage(); } function in class:WebCore::RenderListMarker
H A DRenderTableCol.cpp62 return !child->isText() && style && (style->display() == TABLE_COLUMN);
H A DRootInlineBox.cpp584 if (box->isText()) {
653 if (box->parent() && !box->renderer()->isText()) {
667 if (box->renderer()->isText())
732 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText()))
741 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText()))
744 if (!box->isText() && box->isInlineFlowBox() && !static_cast<InlineFlowBox*>(box)->hasTextChildren())
754 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText()))
[all...]
H A DRenderBlockLineLayout.cpp180 if (obj->isText()) {
197 if (o->isText()) {
284 if (!r->isText() || r->isBR())
357 bool isLogicallyLastRunWrapped = bidiRuns.logicallyLastRun()->m_object && bidiRuns.logicallyLastRun()->m_object->isText() ? !reachedEndOfTextRenderer(bidiRuns) : true;
447 if (r->m_object->isText()) {
487 ASSERT(r->m_box->isText());
494 ASSERT(r->m_box->isText());
585 if (r->m_object->isText()) {
629 if (r->m_object->isText())
681 if (!lastObject->isText())
[all...]
H A DInlineBox.h153 bool isText() const { return m_isText; } function in class:WebCore::InlineBox
306 if (!m_renderer->isText())
H A DRenderRubyRun.cpp301 if (!startRenderer || !startRenderer->isText() || startRenderer->style(firstLine)->fontSize() > rubyBase->style(firstLine)->fontSize())
304 if (!endRenderer || !endRenderer->isText() || endRenderer->style(firstLine)->fontSize() > rubyBase->style(firstLine)->fontSize())
H A DRenderText.h194 ASSERT(!object || object->isText());
200 ASSERT(!object || object->isText());
H A DRenderObjectChildList.cpp49 if (firstChild()->isListMarker() || (firstChild()->style()->styleType() == FIRST_LETTER && !firstChild()->isText()))
259 while (beforeAfterParent && !(beforeAfterParent->isText() || beforeAfterParent->isImage()))
391 if (genChild->isText())
/external/webkit/Source/WebKit/chromium/src/
H A DWebInputElement.cpp48 bool WebInputElement::isText() const function in class:WebKit::WebInputElement
50 return constUnwrap<HTMLInputElement>()->isText();
/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp200 bool isText = false; local
204 if (error(i->isText(isText))) return;
207 if (isText)
/external/webkit/Source/WebCore/accessibility/gtk/
H A DAccessibilityObjectAtk.cpp123 if (renderer && renderer->isText()) {
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputElement.h59 WEBKIT_API bool isText() const;
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp153 if (K.isText())
190 if (Kind.isText()) return ".text.";
213 if (Kind.isText())
240 if (Kind.isText()) return TextSection;
512 if (Kind.isText())
673 else if (K.isText())
710 if (Kind.isText())
742 if (Kind.isText())
/external/markdown/markdown/
H A Dtreeprocessors.py100 def __processElementText(self, node, subnode, isText=True):
109 * isText: bool variable, True - it's text, False - it's tail
114 if isText:
123 if not isText and node is not subnode:
/external/valgrind/main/coregrind/
H A Dm_redir.c389 Bool isText; local
413 &isText, NULL );
425 if (!isText)
464 &isText, NULL );
470 ok = isText
599 Bool anyMark, isText, isIFunc; local
627 &isText, &isIFunc );
635 if (!isText)
1371 Bool isText = False; local
1376 &isText, NUL
[all...]
/external/webkit/Source/WebCore/dom/
H A DPositionIterator.cpp162 if (renderer->isText())
H A DPosition.cpp54 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
68 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
579 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
706 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
761 if ((o->isText() && toRenderText(o)->linesBoundingBox().height()) ||
789 if (renderer->isText())
1004 if (object->isText())
1020 if (next->isText()) {
1062 if (!renderer->isText()) {
/external/markdown/markdown/extensions/
H A Dfootnotes.py284 node, isText = result
285 if isText:
/external/llvm/include/llvm/MC/
H A DSectionKind.h138 bool isText() const { return K == Text; } function in class:llvm::SectionKind
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp317 bool isText = StringRef(Segment) == "__TEXT"; // FIXME: Hack. local
320 isText ? SectionKind::getText()
458 bool isText = Segment == "__TEXT"; // FIXME: Hack.
461 isText ? SectionKind::getText()
/external/valgrind/main/include/
H A Dpub_tool_debuginfo.h219 /*OUT*/Bool* isText,
/external/webkit/Source/WebKit/mac/WebView/
H A DWebRenderNode.mm113 } else if (node->isText()) {

Completed in 5856 milliseconds

123