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

1 2 3 4 5 6 7 8 91011

  /external/icu/android_icu4j/src/main/java/android/icu/text/
LanguageBreakEngine.java 32 * @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 53 public int findBreaks(CharacterIterator text, int startPos, int endPos,
58 while (text.getIndex() < endPos && uniset.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) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
LanguageBreakEngine.java 31 * @param endPos The index of the possible end of our range. It is possible,
38 int findBreaks(CharacterIterator text, int startPos, int endPos,
UnhandledBreakEngine.java 52 public int findBreaks(CharacterIterator text, int startPos, int endPos,
57 while (text.getIndex() < endPos && uniset.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) {
  /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/apps/SecureElement/src/com/android/se/security/gpac/
Response_ALL_AR_DO.java 89 int endPos = index + getValueLength();
106 } while (currentPos < endPos);
Response_AR_DO.java 84 int endPos = index + getValueLength();
98 } while (currentPos < endPos);
Response_ARAC_AID_DO.java 89 int endPos = index + getValueLength();
109 } while (currentPos < 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;
  /hardware/google/av/codec2/vndk/util/
C2ParamUtils.cpp 183 size_t endPos = strcspn(value + pos, " ,=") + pos;
184 if (endPos > pos) {
185 foundNames.emplace_back(value + pos, endPos - pos);
187 if (value[endPos] && value[endPos] != ',') {
188 endPos += strcspn(value + endPos, ",");
190 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 70 * @param endPos The end of the run within the supplied text.
77 int32_t endPos,
192 * @param endPos The end of the run within the supplied text.
199 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 37 size_t endPos);
  /external/turbine/javatests/com/google/turbine/parse/
JavacLexer.java 273 return String.format("INT_LITERAL(%s)", input.substring(token.pos, token.endPos));
275 return String.format("LONG_LITERAL(%s)", input.substring(token.pos, token.endPos));
277 return String.format("FLOAT_LITERAL(%s)", input.substring(token.pos, token.endPos));
279 return String.format("DOUBLE_LITERAL(%s)", input.substring(token.pos, token.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 111 char* endPos;
113 idx = (int)strtol(pos, &endPos, 10);
115 if (pos == endPos) {
126 pos = endPos;
164 endPos = pos;
165 while (*endPos != ' ') endPos++;
168 if (endPos - pos == 3) {
182 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++)

Completed in 635 milliseconds

1 2 3 4 5 6 7 8 91011