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

1 2 3 4 5

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
c2_9pf_tab.cpp 52 This file contains the declaration for startPos[] used by the functions
89 extern const Word16 startPos[];
90 const Word16 startPos[2*4*2] = {0, 2, 0, 3,
  /external/webkit/Source/WebCore/platform/text/brew/
TextBoundariesBrew.cpp 63 int startPos = (currentPosition < 0) ? 0 : ++currentPosition;
70 *start = startPos;
  /external/webkit/Source/WebKit/chromium/src/
WebEntities.cpp 66 const UChar* startPos = value.characters();
67 const UChar* curPos = startPos;
74 if (curPos > startPos)
75 result.append(String(startPos, curPos - startPos));
79 startPos = ++curPos;
84 if (curPos > startPos)
85 result.append(String(startPos, curPos - startPos));
  /frameworks/wilhelm/src/itf/
ISeek.c 52 SLmillisecond startPos, SLmillisecond endPos)
56 if (!(startPos < endPos)) {
62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) {
97 thiz->mStartPos = startPos;
119 SLmillisecond startPos = thiz->mStartPos;
123 *pStartPos = startPos;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoFile.java 181 long startPos = ((FileChannel) os).position();
183 long size = ((FileChannel) os).position() - startPos;
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
WireFormatNano.java 125 int startPos = input.getPosition();
135 input.rewindToPosition(startPos);
  /frameworks/av/media/libmedia/
MediaScanner.cpp 115 int startPos = 0;
121 && (strncmp(path, &mSkipList[startPos], len) == 0)) {
124 startPos += mSkipIndex[idx] + 1; // extra char for the delimiter
  /frameworks/base/core/java/android/database/
BulkCursorNative.java 63 int startPos = data.readInt();
64 CursorWindow window = getWindow(startPos);
  /frameworks/support/v4/java/android/support/v4/util/
TimeUtils.java 54 final int startPos = pos;
61 if ((always && zeropad >= 2) || amt > 9 || startPos != pos) {
  /external/aac/libSBRenc/src/
nf_est.cpp 308 INT nNoiseEnvelopes, startPos[2], stopPos[2], env, band;
317 startPos[0] = startIndex;
321 startPos[0] = startIndex;
325 startPos[0] = startIndex;
327 startPos[1] = startIndex + 1;
340 startPos[env],
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.cpp 289 CFIndex startPos = 0;
295 CFRange range = CFRangeMake(startPos, charactersLeft);
305 unsigned badChar = CFStringGetCharacterAtIndex(cfs.get(), startPos + charactersConverted);
308 UniChar low = CFStringGetCharacterAtIndex(cfs.get(), startPos + charactersConverted);
323 startPos += charactersConverted;
  /external/webkit/Source/WebCore/xml/
XPathParser.cpp 190 int startPos = m_nextPos + 1;
192 for (m_nextPos = startPos; m_nextPos < m_data.length(); ++m_nextPos) {
194 String value = m_data.substring(startPos, m_nextPos - startPos);
208 int startPos = m_nextPos;
224 return Token(NUMBER, m_data.substring(startPos, m_nextPos - startPos));
229 int startPos = m_nextPos;
241 name = m_data.substring(startPos, m_nextPos - startPos);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Plugins/win/
PluginInfoStoreWin.cpp 42 unsigned startPos = 0;
45 while (startPos < versionString.length()) {
46 for (endPos = startPos; endPos < versionString.length(); ++endPos)
50 int versionComponent = versionString.substring(startPos, endPos - startPos).toInt();
53 startPos = endPos + 1;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCursor.java 143 int startPos = DatabaseUtils.cursorPickFillWindowStartPosition(requiredPos, 0);
144 mCount = mQuery.fillWindow(mWindow, startPos, requiredPos, true);
150 int startPos = DatabaseUtils.cursorPickFillWindowStartPosition(requiredPos,
152 mQuery.fillWindow(mWindow, startPos, requiredPos, false);
  /frameworks/base/libs/hwui/
GradientCache.cpp 266 float startPos = positions[0];
267 float distance = positions[1] - startPos;
274 startPos = positions[currentPos];
279 distance = positions[currentPos] - startPos;
282 float amount = (pos - startPos) / distance;
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 182 final int startPos = 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/apps/Mms/src/com/android/mms/ui/
SearchActivity.java 103 int startPos = 0;
109 startPos = m.start();
122 snippetString = mFullText.substring(startPos, startPos + searchStringLength);
135 int newstart = Math.max(0, startPos - offset);
136 int newend = Math.min(bodyLength, startPos + searchStringLength + offset);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
ResizableIntArrayTests.java 257 final int startPos = srcLen / 3;
259 final int endPos = startPos + length;
260 assertTrue(startPos >= 1);
269 src.fill(value, startPos, -1);
275 src.fill(value, startPos, length);
280 if (i >= startPos && i < endPos) {
287 final int length2 = srcLen * 2 - startPos;
288 final int largeEnd = startPos + length2;
291 src.fill(value2, startPos, length2);
296 if (i >= startPos && i < largeEnd)
    [all...]
  /external/aac/libSBRdec/src/
env_extr.cpp     [all...]
sbrdecoder.cpp 909 INT startPos;
918 startPos = FDKgetValidBits(hBs);
1071 valBits = bsPayLen - ((INT)startPos - (INT)FDKgetValidBits(hBs));
1081 INT payloadbits = (INT)startPos - (INT)FDKgetValidBits(hBs) - startPos;
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeSetTest.java 268 final int startPos = 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++)
  /external/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 319 private int startPos;
387 startPos = output.getPos();
449 output.writeShort(startPos + 6, maxStack);
450 output.writeShort(startPos + 8, maxLocals);
451 output.writeInt(startPos + 10, output.getPos() - startPos - 14); // code_length
502 output.writeInt(startPos + 2, output.getPos() - startPos - 6);
522 protected int startPos;
527 startPos = out.getPos()
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_pcmdata.h 82 EAS_I32 startPos; /* start of PCM stream */
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_pcmdata.h 82 EAS_I32 startPos; /* start of PCM stream */
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
  /external/sonivox/arm-wt-22k/lib_src/
eas_pcmdata.h 82 EAS_I32 startPos; /* start of PCM stream */
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */

Completed in 1341 milliseconds

1 2 3 4 5