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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
CharacterData.h 47 bool containsOnlyWhitespace() const;
CharacterData.cpp 161 bool CharacterData::containsOnlyWhitespace() const
163 return m_data.containsOnlyWhitespace();
Text.cpp 253 if (!containsOnlyWhitespace())
Node.cpp 1040 if (sibling->isTextNode() && toText(sibling)->containsOnlyWhitespace()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AbstractInlineTextBox.cpp 159 if (m_inlineTextBox->nextTextBox() && m_inlineTextBox->nextTextBox()->start() > m_inlineTextBox->end() && result.length() && !result.right(1).containsOnlyWhitespace())
RenderText.h 179 bool containsOnlyWhitespace(unsigned from, unsigned len) const;
RenderText.cpp 211 if (!text().containsOnlyWhitespace())
320 if (textBox->nextTextBox() && textBox->nextTextBox()->start() > textBox->end() && text.length() && !text.right(1).containsOnlyWhitespace())
779 if (!len || (stripFrontSpaces && text().impl()->containsOnlyWhitespace())) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.cpp 222 if (!toText(child)->containsOnlyWhitespace())
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 422 bool containsOnlyWhitespace() const { return !m_impl || m_impl->containsOnlyWhitespace(); }
StringImpl.h 323 bool containsOnlyWhitespace();
StringImpl.cpp 449 bool StringImpl::containsOnlyWhitespace()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp 641 return renderText->text().impl()->containsOnlyWhitespace();
705 if (!alt.string().containsOnlyWhitespace())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositeEditCommand.cpp 584 static inline bool containsOnlyWhitespace(const String& text)
596 return containsOnlyWhitespace(text);
    [all...]

Completed in 495 milliseconds