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

  /external/chromium_org/third_party/icu/source/common/unicode/
schriter.h 71 * by "textEnd". The starting position is specified by "textPos". If
72 * "textBegin" and "textEnd" don't form a valid range on "text" (i.e.,
73 * textBegin >= textEnd or either is negative or greater than text.size()),
74 * or "textPos" is outside the range defined by "textBegin" and "textEnd",
78 * @param textEnd The end position of the iteration range
84 int32_t textEnd,
uchriter.h 74 * @param textEnd The end position of the iteration range
80 int32_t textEnd,
chariter.h 635 CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position);
  /external/icu4c/common/unicode/
schriter.h 71 * by "textEnd". The starting position is specified by "textPos". If
72 * "textBegin" and "textEnd" don't form a valid range on "text" (i.e.,
73 * textBegin >= textEnd or either is negative or greater than text.size()),
74 * or "textPos" is outside the range defined by "textBegin" and "textEnd",
78 * @param textEnd The end position of the iteration range
84 int32_t textEnd,
uchriter.h 74 * @param textEnd The end position of the iteration range
80 int32_t textEnd,
chariter.h 641 CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position);
  /external/chromium_org/third_party/icu/source/common/
chariter.cpp 44 CharacterIterator::CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position)
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
schriter.cpp 51 int32_t textEnd,
53 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textBegin, textEnd, textPos),
uchriter.cpp 43 int32_t textEnd,
45 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, textBegin, textEnd, position),
  /external/icu4c/common/
chariter.cpp 44 CharacterIterator::CharacterIterator(int32_t length, int32_t textBegin, int32_t textEnd, int32_t position)
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
schriter.cpp 51 int32_t textEnd,
53 : UCharCharacterIterator(textStr.getBuffer(), textStr.length(), textBegin, textEnd, textPos),
uchriter.cpp 44 int32_t textEnd,
46 : CharacterIterator(textPtr != 0 ? (length>=0 ? length : u_strlen(textPtr)) : 0, textBegin, textEnd, position),
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTree.java 337 * @param textEnd beginning plain-text offset
342 public ArrayList<Block> createBlocks(int textStart, int textEnd, int minNode, int maxNode) {
346 int endNode = Math.min(getBlockEnd(textEnd), maxNode);
350 "text pos: " + textStart + "-" + textEnd + "\n" +
352 plainText.substring(textStart, textEnd));
511 int textend = textPositions[toNode]; local
512 return plainText.substring(textstart, textend);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 370 * @param textEnd beginning plain-text offset
375 public ArrayList<Block> createBlocks(int textStart, int textEnd, int minNode, int maxNode) {
379 int endNode = Math.min(getBlockEnd(textEnd), maxNode);
383 "text pos: " + textStart + "-" + textEnd + "\n" +
385 plainText.substring(textStart, textEnd));
544 int textend = textPositions[toNode]; local
545 return plainText.substring(textstart, textend);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 841 static int collapsedSpaceLength(RenderText* renderer, int textEnd)
845 for (int i = textEnd; i < length; ++i) {
847 return i - textEnd;
850 return length - textEnd;
    [all...]
  /external/expat/lib/
xmlparse.c     [all...]
  /libcore/benchmarks/libs/
caliper.jar 

Completed in 312 milliseconds