HomeSort by relevance Sort by last modified time
    Searched full:startpos (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /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...]
  /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));
  /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/llvm/test/CodeGen/SystemZ/
2009-06-05-InvalidArgLoad.ll 8 define i32 @xre_search_2(%struct.re_pattern_buffer* nocapture %bufp, i8* %string1, i32 %size1, i8* %string2, i32 %size2, i32 %startpos, i32 %range, %struct.re_registers* %regs, i32 %stop) nounwind {
10 %cmp17.i = icmp slt i32 undef, %startpos ; <i1> [#uses=1]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 42 # define re_search(bufp, string, size, startpos, range, regs) \
43 __re_search (bufp, string, size, startpos, range, regs)
47 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
  /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);
BulkCursorNative.java 63 int startPos = data.readInt();
64 CursorWindow window = getWindow(startPos);
183 public CursorWindow getWindow(int startPos) throws RemoteException
189 data.writeInt(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/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/webkit/Source/WebCore/platform/text/brew/
TextBoundariesBrew.cpp 63 int startPos = (currentPosition < 0) ? 0 : ++currentPosition;
70 *start = startPos;
  /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...]