HomeSort by relevance Sort by last modified time
    Searched refs:endPos (Results 1 - 25 of 376) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/text/
LanguageBreakEngine.java 31 * @param endPos The index of the possible end of our range. It is possible,
40 int findBreaks(CharacterIterator text, int startPos, int endPos,
UnhandledBreakEngine.java 35 public int findBreaks(CharacterIterator text, int startPos, int endPos,
45 while (text.getIndex() < endPos && fHandled[breakType].contains(c)) {
CjkBreakEngine.java 86 public int divideUpDictionaryRange(CharacterIterator inText, int startPos, int endPos,
88 if (startPos >= endPos) {
94 int inputLength = endPos - startPos;
98 while (inText.getIndex() < endPos) {
232 if (!foundBreaks.isEmpty() && foundBreaks.peek() == endPos) {
DictionaryBreakEngine.java 176 public int findBreaks(CharacterIterator text, int startPos, int endPos,
199 while ((current = text.getIndex()) < endPos && fSet.contains(c)) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
LanguageBreakEngine.java 30 * @param endPos The index of the possible end of our range. It is possible,
39 int findBreaks(CharacterIterator text, int startPos, int endPos,
UnhandledBreakEngine.java 34 public int findBreaks(CharacterIterator text, int startPos, int endPos,
44 while (text.getIndex() < endPos && fHandled[breakType].contains(c)) {
CjkBreakEngine.java 85 public int divideUpDictionaryRange(CharacterIterator inText, int startPos, int endPos,
87 if (startPos >= endPos) {
93 int inputLength = endPos - startPos;
97 while (inText.getIndex() < endPos) {
231 if (!foundBreaks.isEmpty() && foundBreaks.peek() == endPos) {
DictionaryBreakEngine.java 175 public int findBreaks(CharacterIterator text, int startPos, int endPos,
198 while ((current = text.getIndex()) < endPos && fSet.contains(c)) {
  /frameworks/wilhelm/src/itf/
ISeek.cpp 52 SLmillisecond startPos, SLmillisecond endPos)
56 if (!(startPos < endPos)) {
62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) {
98 thiz->mEndPos = endPos;
120 SLmillisecond endPos = thiz->mEndPos;
124 *pEndPos = endPos;
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
ResizableIntArray.java 133 final int endPos = startPos + length;
134 ensureCapacity(endPos);
135 Arrays.fill(mArray, startPos, endPos, value);
136 if (mLength < endPos) {
137 mLength = endPos;
  /frameworks/av/media/libstagefright/codec2/vndk/include/util/
C2ParamUtils.h 229 size_t endPos = strcspn(value + pos, " ,=") + pos;
230 if (endPos > pos) {
231 foundNames.emplace_back(value + pos, endPos - pos);
233 if (value[endPos] && value[endPos] != ',') {
234 endPos += strcspn(value + endPos, ",");
236 pos = strspn(value + endPos, " ,") + endPos;
  /external/fonttools/MetaTools/
buildTableList.py 51 endPos = doc.find(end)
53 doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:]
  /external/icu/icu4c/source/common/
brkeng.h 69 * @param endPos The end of the run within the supplied text.
78 int32_t endPos,
194 * @param endPos The end of the run within the supplied text.
203 int32_t endPos,
  /external/lzma/CPP/7zip/Common/
FilterCoder.cpp 78 UInt32 endPos = pos;
84 endPos = pos + (UInt32)processedSize;
85 inputFinished = (endPos != _bufSize);
88 pos = Filter->Filter(_buf, endPos);
90 if (pos > endPos)
99 _buf[endPos] = 0;
100 while (++endPos != pos);
106 if (endPos == 0)
109 UInt32 size = (pos != 0 ? pos : endPos);
127 while (pos < endPos)
    [all...]
  /external/pdfium/core/fpdftext/
cpdf_textpagefind.h 33 int endPos);
  /prebuilts/go/darwin-x86/src/compress/flate/
dict_decoder.go 107 endPos := dstPos + length
108 if endPos > len(dd.hist) {
109 endPos = len(dd.hist)
121 dstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:])
134 // for i := 0; i < endPos-dstPos; i++ {
137 // dstPos = endPos
139 for dstPos < endPos {
140 dstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:dstPos])
155 endPos := dstPos + length
156 if dstPos < dist || endPos > len(dd.hist)
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
dict_decoder.go 107 endPos := dstPos + length
108 if endPos > len(dd.hist) {
109 endPos = len(dd.hist)
121 dstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:])
134 // for i := 0; i < endPos-dstPos; i++ {
137 // dstPos = endPos
139 for dstPos < endPos {
140 dstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:dstPos])
155 endPos := dstPos + length
156 if dstPos < dist || endPos > len(dd.hist)
    [all...]
  /frameworks/base/core/jni/
com_android_internal_net_NetworkStatsFactory.cpp 133 char* endPos;
135 idx = (int)strtol(pos, &endPos, 10);
137 if (pos == endPos) {
148 pos = endPos;
186 endPos = pos;
187 while (*endPos != ' ') endPos++;
190 if (endPos - pos == 3) {
204 pos = endPos;
  /external/fonttools/Lib/fontTools/ttLib/tables/
G_P_K_G_.py 26 endPos = (self.numGMAPs+1) * 4
27 GMAPoffsets.fromstring(newData[:endPos])
35 pos = endPos
36 endPos = pos + (self.numGlyplets + 1)*4
38 glyphletOffsets.fromstring(newData[pos:endPos])
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
IndexDecoder.java 48 // If endPos is exceeded before the CRC32 field has been decoded,
50 long endPos = in.position() + streamFooterFlags.backwardSize - 4;
97 if (in.position() > endPos)
120 if (in.position() + indexPaddingSize != endPos)
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
ExtendableMessageNano.java 145 int endPos = input.getPosition();
146 byte[] bytes = input.getData(startPos, endPos - startPos);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 272 int endPos = (asciiCharsLen - startPos > addCount) ?
274 sb.append(sAsciiChars, startPos, endPos);
275 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
306 int endPos = (unicodeCharsLen - startPos > addCount) ?
308 sb.append(sUnicodeChars, startPos, endPos);
309 startPos = (endPos == unicodeCharsLen) ? 0 : endPos;
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 183 final int endPos = 3 * objArray.length / 4;
184 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]);
186 aSubSet.size() == (endPos - startPos));
187 for (int counter = startPos; counter < endPos; counter++)
  /external/gptfdisk/
gptcl.cc 544 size_t startPos = 0, endPos = 0;
552 endPos = argument.find(':', startPos);
554 if (endPos == string::npos) {
556 endPos = argument.length();
558 startPos = endPos + 1;
562 retVal = argument.substr(startPos, endPos - startPos);
  /external/v8/tools/
csvparser.js 59 var endPos = line.length;
61 if (endPos > 0) {
75 } while (pos <= endPos);

Completed in 1433 milliseconds

1 2 3 4 5 6 7 8 91011>>