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

1 2 3 4

  /frameworks/base/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[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/base/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];
  /frameworks/base/core/jni/
android_database_SQLiteQuery.cpp 39 jint statementPtr, jint windowPtr, jint startPos, jint offsetParam) {
48 int err = sqlite3_bind_int(statement, offsetParam, startPos);
54 LOG_WINDOW("Bound to startPos %d", startPos);
56 LOG_WINDOW("Not binding to startPos %d", startPos);
76 const bool countAllRows = (startPos == 0); // when startPos is 0, we count all rows
85 if (startPos >= totalRows || windowFull) {
94 LOG_WINDOW("Failed allocating fieldDir at startPos %d row %d, error=%d"
    [all...]
  /system/media/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 35 int startPos, int offsetParam);
85 int startPos = window.getStartPosition();
87 startPos, mOffsetIndex);
93 + "\", startPos=" + startPos
  /external/webkit/Source/WebCore/xml/
XPathParser.cpp 193 int startPos = m_nextPos + 1;
195 for (m_nextPos = startPos; m_nextPos < m_data.length(); ++m_nextPos) {
197 String value = m_data.substring(startPos, m_nextPos - startPos);
211 int startPos = m_nextPos;
227 return Token(NUMBER, m_data.substring(startPos, m_nextPos - startPos));
232 int startPos = m_nextPos;
244 name = m_data.substring(startPos, m_nextPos - startPos);
    [all...]
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 135 public CursorWindow getWindow(int startPos) {
139 if (!mCursor.moveToPosition(startPos)) {
152 mCursor.fillWindow(startPos, window);
153 } else if (startPos < window.getStartPosition()
154 || startPos >= window.getStartPosition() + window.getNumRows()) {
156 mCursor.fillWindow(startPos, window);
IBulkCursor.java 36 public CursorWindow getWindow(int startPos) throws RemoteException;
  /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,
dictbe.h 85 * @param startPos The start of the run within the supplied text.
94 int32_t startPos,
rbbi.cpp 534 int32_t startPos = current();
537 result = checkDictionary(startPos, result, FALSE);
548 int32_t startPos;
570 if (fText == NULL || (startPos = current()) == 0) {
579 result = checkDictionary(result, startPos, TRUE);
    [all...]
  /external/icu4c/test/intltest/
ustrtest.cpp 716 int32_t startPos = 0;
718 startPos != -1 && startPos < test1.length();
719 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
724 for ( occurrences = 0, startPos = 10;
725 startPos != -1 && startPos < test1.length();
726 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0
    [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/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 265 int startPos = 0;
274 int endPos = (asciiCharsLen - startPos > addCount) ?
275 (startPos + addCount) : asciiCharsLen;
276 sb.append(sAsciiChars, startPos, endPos);
277 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
298 int startPos = 0;
308 int endPos = (unicodeCharsLen - startPos > addCount) ?
309 (startPos + addCount) : unicodeCharsLen;
310 sb.append(sUnicodeChars, startPos, endPos);
311 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/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/base/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;
  /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...]
  /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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
MoreSuggestions.java 101 private boolean fitInWidth(int startPos, int endPos, int width) {
102 for (int pos = startPos; pos < endPos; pos++) {
109 private int calcurateMaxRowWidth(int startPos, int endPos) {
111 int pos = startPos;
  /external/icu4c/i18n/
rematch.cpp 601 int64_t startPos = fMatchEnd;
602 if (startPos==0) {
603 startPos = fActiveStart;
613 if (startPos >= fActiveLimit) {
618 UTEXT_SETNATIVEINDEX(fInputText, startPos);
620 startPos = UTEXT_GETNATIVEINDEX(fInputText);
640 if (startPos > testStartLimit) {
652 U_ASSERT(startPos >= 0);
659 MatchAt(startPos, FALSE, fDeferredStatus);
666 if (startPos >= testStartLimit)
    [all...]

Completed in 1743 milliseconds

1 2 3 4