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

1 2 3 4 5 6 7

  /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/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/av/media/libstagefright/codecs/amrnb/dec/src/
d2_9pf.cpp 104 extern const Word16 startPos[];
206 /* pos0 =i*5+startPos[j*8+subNr*2] */
207 pos[0] = i * 5 + startPos[k++];
214 /* pos1 =i*5+startPos[j*8+subNr*2 + 1] */
215 pos[1] = i * 5 + startPos[k];
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ResizableIntArray.java 112 public void append(final ResizableIntArray src, final int startPos, final int length) {
119 System.arraycopy(src.mArray, startPos, mArray, currentLength, length);
123 public void fill(final int value, final int startPos, final int length) {
124 if (startPos < 0 || length < 0) {
125 throw new IllegalArgumentException("startPos=" + startPos + "; length=" + length);
127 final int endPos = startPos + length;
129 Arrays.fill(mArray, startPos, endPos, value);
InputPointers.java 72 * @param startPos the starting index of the pointers in {@code src}.
76 void append(InputPointers src, int startPos, int length) {
80 mXCoordinates.append(src.mXCoordinates, startPos, length);
81 mYCoordinates.append(src.mYCoordinates, startPos, length);
82 mPointerIds.append(src.mPointerIds, startPos, length);
83 mTimes.append(src.mTimes, startPos, length);
93 * @param startPos the starting index of the data in {@code times} and etc.
97 ResizableIntArray yCoordinates, int startPos, int length) {
101 mXCoordinates.append(xCoordinates, startPos, length);
102 mYCoordinates.append(yCoordinates, startPos, length)
    [all...]
  /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/webkit/Source/WebCore/platform/text/brew/
TextBoundariesBrew.cpp 63 int startPos = (currentPosition < 0) ? 0 : ++currentPosition;
70 *start = startPos;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 46 * @param startPos The start position for filling the window.
57 int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) {
63 window, startPos, requiredPos, countAllRows, getConnectionFlags(),
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);
  /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/icu4c/common/
brkeng.h 66 * @param startPos The start of the run within the supplied text.
75 int32_t startPos,
191 * @param startPos The start of the run within the supplied text.
200 int32_t startPos,
rbbi.cpp 595 int32_t startPos = current();
598 result = checkDictionary(startPos, result, FALSE);
609 int32_t startPos;
631 if (fText == NULL || (startPos = current()) == 0) {
640 result = checkDictionary(result, startPos, TRUE);
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
WireFormatNano.java 125 int startPos = input.getPosition();
135 input.rewindToPosition(startPos);
  /external/icu4c/test/intltest/
ustrtest.cpp 718 int32_t startPos = 0;
720 startPos != -1 && startPos < test1.length();
721 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
726 for ( occurrences = 0, startPos = 10;
727 startPos != -1 && startPos < test1.length();
728 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0
    [all...]
  /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/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...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 262 int startPos = 0;
271 int endPos = (asciiCharsLen - startPos > addCount) ?
272 (startPos + addCount) : asciiCharsLen;
273 sb.append(sAsciiChars, startPos, endPos);
274 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
295 int startPos = 0;
305 int endPos = (unicodeCharsLen - startPos > addCount) ?
306 (startPos + addCount) : unicodeCharsLen;
307 sb.append(sUnicodeChars, startPos, endPos);
308 startPos = (endPos == unicodeCharsLen) ? 0 : endPos
    [all...]
  /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/icu4c/i18n/
rematch.cpp 607 int64_t startPos = fMatchEnd;
608 if (startPos==0) {
609 startPos = fActiveStart;
619 if (startPos >= fActiveLimit) {
624 UTEXT_SETNATIVEINDEX(fInputText, startPos);
626 startPos = UTEXT_GETNATIVEINDEX(fInputText);
646 if (startPos > testStartLimit) {
658 U_ASSERT(startPos >= 0);
665 MatchAt(startPos, FALSE, fDeferredStatus);
672 if (startPos >= testStartLimit)
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.h 100 virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
101 bool isSelected(int startPos, int endPos) const;
160 void paintCompositionBackground(GraphicsContext*, const FloatPoint& boxOrigin, RenderStyle*, const Font&, int startPos, int endPos);
  /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
  /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/jni/
android_database_SQLiteConnection.cpp 574 sqlite3_stmt* statement, int numColumns, int startPos, int addedRows) {
578 LOG_WINDOW("Failed allocating fieldDir at startPos %d row %d, error=%d",
579 startPos, addedRows, status);
598 sizeIncludingNull, startPos + addedRows, i, status);
603 startPos + addedRows, i, sizeIncludingNull);
614 LOG_WINDOW("%d,%d is INTEGER 0x%016llx", startPos + addedRows, i, value);
625 LOG_WINDOW("%d,%d is FLOAT %lf", startPos + addedRows, i, value);
633 size, startPos + addedRows, i, status);
638 startPos + addedRows, i, size);
649 LOG_WINDOW("%d,%d is NULL", startPos + addedRows, i)
    [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/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 606 unsigned startPos = 0;
608 while ((endPos = find(separator, startPos)) != notFound) {
609 if (allowEmptyEntries || startPos != endPos)
610 result.append(substring(startPos, endPos - startPos));
611 startPos = endPos + separator.length();
613 if (allowEmptyEntries || startPos != length())
614 result.append(substring(startPos));
626 unsigned startPos = 0;
628 while ((endPos = find(separator, startPos)) != notFound)
    [all...]

Completed in 585 milliseconds

1 2 3 4 5 6 7