HomeSort by relevance Sort by last modified time
    Searched defs:currPos (Results 1 - 5 of 5) sorted by null

  /external/icu4c/common/
dictbe.cpp 366 int32_t currPos;
367 while ((currPos = (int32_t)utext_getNativeIndex(text)) < rangeEnd && fMarkSet.contains(utext_current32(text))) {
369 wordLength += (int32_t)utext_getNativeIndex(text) - currPos;
  /external/chromium/third_party/icu/source/common/
dictbe.cpp 371 int32_t currPos;
372 while ((currPos = (int32_t)utext_getNativeIndex(text)) < rangeEnd && fMarkSet.contains(utext_current32(text))) {
374 wordLength += (int32_t)utext_getNativeIndex(text) - currPos;
  /libcore/luni/src/main/java/org/apache/xml/utils/
FastStringBuffer.java     [all...]
  /external/webkit/WebCore/rendering/
RenderText.cpp 775 unsigned currPos;
776 for (currPos = from;
777 currPos < from + len && ((*m_text)[currPos] == '\n' || (*m_text)[currPos] == ' ' || (*m_text)[currPos] == '\t');
778 currPos++) { }
779 return currPos >= (from + len);
    [all...]
  /external/webkit/WebCore/editing/
TextIterator.cpp 785 // The currPos.isNotNull() check is needed because positions in non-HTML content
788 VisiblePosition currPos = VisiblePosition(m_node, 0, DOWNSTREAM);
789 return startPos.isNotNull() && currPos.isNotNull() && !inSameLine(startPos, currPos);
    [all...]

Completed in 225 milliseconds