OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:containsOnlyWhitespace
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
CharacterData.cpp
159
bool CharacterData::
containsOnlyWhitespace
() const
161
return m_data.
containsOnlyWhitespace
();
/external/clang/lib/AST/
RawCommentList.cpp
188
bool
containsOnlyWhitespace
(StringRef Str) {
207
return
containsOnlyWhitespace
(Text);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h
429
bool
containsOnlyWhitespace
() const { return !m_impl || m_impl->
containsOnlyWhitespace
(); }
StringImpl.cpp
472
bool StringImpl::
containsOnlyWhitespace
()
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
CompositeEditCommand.cpp
613
static inline bool
containsOnlyWhitespace
(const String& text)
625
return
containsOnlyWhitespace
(text);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp
204
if (!text().
containsOnlyWhitespace
())
313
if (textBox->nextTextBox() && textBox->nextTextBox()->start() > textBox->end() && text.length() && !text.right(1).
containsOnlyWhitespace
())
792
if (!len || (stripFrontSpaces && text().impl()->
containsOnlyWhitespace
())) {
[
all
...]
Completed in 300 milliseconds