Searched defs:startPos (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/media/libstagefright/codecs/amrnb/common/src/
H A Dc2_9pf_tab.cpp52 This file contains the declaration for startPos[] used by the functions
89 extern const Word16 startPos[2*4*2] = {0, 2, 0, 3, variable
/frameworks/base/core/java/android/database/
H A DIBulkCursor.java36 public CursorWindow getWindow(int startPos) throws RemoteException; argument
H A DBulkCursorNative.java63 int startPos = data.readInt();
64 CursorWindow window = getWindow(startPos);
183 public CursorWindow getWindow(int startPos) throws RemoteException argument
189 data.writeInt(startPos);
H A DCursorToBulkCursorAdaptor.java135 public CursorWindow getWindow(int startPos) { argument
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);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java35 int startPos, int offsetParam);
85 int startPos = window.getStartPosition();
87 startPos, mOffsetIndex);
93 + "\", startPos=" + startPos
34 nativeFillWindow(int databasePtr, int statementPtr, int windowPtr, int startPos, int offsetParam) argument
H A DSQLiteCursor.java161 private void fillWindow(int startPos) { argument
163 mWindow.setStartPosition(startPos);
165 if (startPos == 0) { // fillWindow returns count(*) only for startPos = 0
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteQuery.cpp39 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
38 nativeFillWindow(JNIEnv* env, jclass clazz, jint databasePtr, jint statementPtr, jint windowPtr, jint startPos, jint offsetParam) argument
[all...]
/frameworks/base/media/libmedia/
H A DMediaScanner.cpp115 int startPos = 0; local
121 && (strncmp(path, &mSkipList[startPos], len) == 0)) {
124 startPos += mSkipIndex[idx] + 1; // extra char for the delimiter
/frameworks/base/core/java/android/widget/
H A DGridView.java296 private View makeRow(int startPos, int y, boolean flow) { argument
305 last = Math.min(startPos + mNumColumns, mItemCount);
307 last = startPos + 1;
308 startPos = Math.max(0, startPos - mNumColumns + 1);
310 if (last - startPos < mNumColumns) {
311 nextLeft += (mNumColumns - (last - startPos)) * (columnWidth + horizontalSpacing);
322 for (int pos = startPos; pos < last; pos++) {
327 final int where = flow ? -1 : pos - startPos;
/frameworks/base/libs/binder/
H A DParcel.cpp368 int startPos = mDataPos; local
425 size_t off = objects[i] - offset + startPos;

Completed in 685 milliseconds