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

1 2 3 4 5

  /frameworks/wilhelm/src/itf/
ISeek.c 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;
  /external/fonttools/MetaTools/
buildTableList.py 51 endPos = doc.find(end)
53 doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:]
  /external/lzma/CPP/7zip/Common/
FilterCoder.cpp 55 UInt32 endPos = bufferPos + (UInt32)processedSize;
57 bufferPos = Filter->Filter(_buffer, endPos);
58 if (bufferPos > endPos)
60 for (; endPos < bufferPos; endPos++)
61 _buffer[endPos] = 0;
62 bufferPos = Filter->Filter(_buffer, endPos);
67 if (endPos == 0)
69 return WriteWithLimit(outStream, endPos);
77 while (bufferPos < endPos)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
ExtendableMessageNano.java 133 int endPos = input.getPosition();
134 byte[] bytes = input.getData(startPos, endPos - startPos);
  /external/srec/portable/include/
pstream.h 43 const unsigned char *endPos;
  /frameworks/base/services/core/jni/
com_android_server_am_BatteryStatsService.cpp 120 char* endPos;
122 int irq = (int)strtol(pos, &endPos, 10);
123 if (pos == endPos) {
128 pos = endPos;
134 char* endpos = pos; local
135 while (*endpos != 0) {
136 if (*endpos == '\n') {
137 *endpos = 0;
140 endpos++;
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
programopt.c 565 GLint endPos, var;
568 endPos = -1;
572 endPos = i;
578 assert(endPos >= 0);
581 inst = prog->Instructions + endPos;
  /external/mesa3d/src/mesa/program/
programopt.c 565 GLint endPos, var;
568 endPos = -1;
572 endPos = i;
578 assert(endPos >= 0);
581 inst = prog->Instructions + endPos;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResizableIntArray.java 127 final int endPos = startPos + length;
128 ensureCapacity(endPos);
129 Arrays.fill(mArray, startPos, endPos, value);
130 if (mLength < endPos) {
131 mLength = endPos;
  /external/javassist/src/main/javassist/expr/
Expr.java 318 int endPos = oldIterator.lookAhead();
320 if (ed.doit(thisClass, thisMethod, context, oldIterator, endPos))
323 oldIterator.move(endPos + oldIterator.getCodeLength() - size);
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 124 UInt32 endPos = bufferPos + processedSize;
126 if (endPos < 5)
129 for (bufferPos = 0; bufferPos < endPos; bufferPos++)
153 UInt32 limit = endPos - 5;
247 while(bufferPos < endPos)
  /frameworks/base/core/jni/
com_android_internal_net_NetworkStatsFactory.cpp 130 char* endPos;
132 idx = (int)strtol(pos, &endPos, 10);
134 if (pos == endPos) {
145 pos = endPos;
183 endPos = pos;
184 while (*endPos != ' ') endPos++;
187 if (endPos - pos == 3) {
201 pos = endPos;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TreeSetTest.java 269 final int endPos = 3 * objArray.length / 4;
270 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]);
272 aSubSet.size() == (endPos - startPos));
273 for (int counter = startPos; counter < endPos; counter++)
  /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++)
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ResizableIntArrayTests.java 278 final int endPos = startPos + length;
299 if (i >= startPos && i < endPos) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 263 Position endPos = new DefaultPosition(line, -1, nodeStart + end);
264 return Location.create(context.file, startPos, endPos);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.cpp 191 int startPos, endPos;
195 endPos = textRenderer->textLength();
198 textRenderer->selectionStartEnd(startPos, endPos);
199 endPos = textRenderer->textLength();
202 textRenderer->selectionStartEnd(startPos, endPos);
206 textRenderer->selectionStartEnd(startPos, endPos);
213 textRenderer->absoluteQuadsForRange(quads, startPos, endPos);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.cpp 347 size_t endPos = startPos;
348 while (endPos < length && !isWhitespace(idList[endPos]))
349 ++endPos;
353 Node* node = contextScope.getElementById(AtomicString(idList.substring(startPos, endPos - startPos)));
357 startPos = endPos;
  /external/deqp/framework/opengl/
gluES3PlusWrapperContext.cpp 284 const size_t endPos = line.find(';');
286 if (precEndPos != std::string::npos && endPos != std::string::npos && endPos > precEndPos+1)
290 const std::string type = line.substr(typePos, endPos-typePos);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 697 size_t endPos;
698 while ((endPos = find(separator, startPos)) != kNotFound) {
699 if (allowEmptyEntries || startPos != endPos)
700 result.append(substring(startPos, endPos - startPos));
701 startPos = endPos + separator.length();
712 size_t endPos;
713 while ((endPos = find(separator, startPos)) != kNotFound) {
714 if (allowEmptyEntries || startPos != endPos)
715 result.append(substring(startPos, endPos - startPos));
716 startPos = endPos + 1
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 192 int endPos = catedStr.length();
193 while (itemEnd < endPos)
197 for (itemStart = itemEnd; itemStart < endPos; itemStart++)
206 if (itemStart >= endPos)
215 for (itemEnd = itemStart; itemEnd < endPos; itemEnd++)
229 else if ((itemEnd + 1) < endPos)
259 for (itemEnd = itemStart; itemEnd < endPos; itemEnd++)
278 if ((itemEnd + 1) < endPos)
    [all...]
  /frameworks/base/core/java/android/os/
BaseBundle.java     [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 271 int endPos = (asciiCharsLen - startPos > addCount) ?
273 sb.append(sAsciiChars, startPos, endPos);
274 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
305 int endPos = (unicodeCharsLen - startPos > addCount) ?
307 sb.append(sUnicodeChars, startPos, endPos);
308 startPos = (endPos == unicodeCharsLen) ? 0 : endPos;
  /external/chromium_org/third_party/icu/source/test/intltest/
ustrtest.cpp 734 int32_t endPos = 28;
737 (startPos = test1.indexOf(test2, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
avi_file.cc 1175 const long endPos = ftell(_aviFile);
1176 if (endPos < 0) {
1184 const long len = endPos - startPos;
1185 if (endPos > startPos) {
    [all...]

Completed in 857 milliseconds

1 2 3 4 5