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

  /external/webkit/Source/WebCore/loader/
CrossOriginPreflightResultCache.cpp 60 while (start <= end && isSpaceOrNewline((*stringImpl)[start]))
68 while (end && isSpaceOrNewline((*stringImpl)[end]))
  /external/webkit/Source/WebCore/platform/
Length.cpp 44 while (i < length && isSpaceOrNewline(data[i]))
56 while (i < length && isSpaceOrNewline(data[i]))
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFenced.cpp 69 if (!isSpaceOrNewline(separators[i]))
RenderMathMLOperator.cpp 150 if (!isSpaceOrNewline(opText[i]))
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp 327 while (start <= end && isSpaceOrNewline(m_data[start]))
335 while (end && isSpaceOrNewline(m_data[end]))
387 while (from != fromend && isSpaceOrNewline(*from)) {
392 while (from != fromend && !isSpaceOrNewline(*from))
WTFString.cpp 810 while (length && isSpaceOrNewline(*data)) {
858 while (length && isSpaceOrNewline(*data)) {
877 if (!isSpaceOrNewline(data[i]))
StringImpl.h 366 static inline bool isSpaceOrNewline(UChar c)
WTFString.h 528 using WTF::isSpaceOrNewline;
  /external/webkit/Source/WebCore/platform/text/
Base64.cpp 162 } else if (policy == FailOnInvalidCharacter || (policy == IgnoreWhitespace && !isSpaceOrNewline(ch)))
  /external/webkit/Source/WebCore/xml/
XPathParser.cpp 147 while (m_nextPos < m_data.length() && isSpaceOrNewline(m_data[m_nextPos]))
  /external/webkit/Source/WebCore/dom/
Position.cpp     [all...]
Node.cpp     [all...]
  /external/webkit/Source/WebCore/editing/
TypingCommand.cpp 159 document->frame()->editor()->updateMarkersForWordsAffectedByEditing(isSpaceOrNewline(text.characters()[0]));
VisibleSelection.cpp 236 if ((!isSpaceOrNewline(c) && c != noBreakSpace) || c == '\n')
TextIterator.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/
InlineFlowBox.cpp 358 if (needsWordSpacing && isSpaceOrNewline(rt->characters()[text->start()]))
360 needsWordSpacing = !isSpaceOrNewline(rt->characters()[text->end()]);
    [all...]
RenderBlockLineLayout.cpp 459 if (!r->m_start && needsWordSpacing && isSpaceOrNewline(rt->characters()[r->m_start]))
461 needsWordSpacing = !isSpaceOrNewline(rt->characters()[r->m_stop - 1]) && r->m_stop == length;
    [all...]
RenderBlock.cpp     [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 708 milliseconds