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

/frameworks/base/core/java/android/database/
H A DBulkCursorNative.java65 int startPos = data.readInt();
66 CursorWindow window = getWindow(startPos);
206 public CursorWindow getWindow(int startPos) throws RemoteException argument
213 data.writeInt(startPos);
H A DIBulkCursor.java39 public CursorWindow getWindow(int startPos) throws RemoteException; argument
H A DCursorToBulkCursorAdaptor.java113 public CursorWindow getWindow(int startPos) { argument
114 mCursor.moveToPosition(startPos);
117 if (startPos < mWindow.getStartPosition() ||
118 startPos >= (mWindow.getStartPosition() + mWindow.getNumRows())) {
119 mCursor.fillWindow(startPos, mWindow);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java194 int startPos, int offsetParam, int maxRead, int lastPos);
193 native_fill_window(CursorWindow window, int startPos, int offsetParam, int maxRead, int lastPos) argument
H A DSQLiteCursor.java274 private void fillWindow (int startPos) { argument
287 mWindow.setStartPosition(startPos);
291 mCount = startPos + mInitialRead;
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteQuery.cpp109 jint startPos, jint offsetParam, jint maxRead, jint lastPos)
131 err = sqlite3_bind_int(statement, offsetParam, startPos);
138 LOG_WINDOW("Bound to startPos %d", startPos);
140 LOG_WINDOW("Not binding to startPos %d", startPos);
161 if (startPos > 0) {
162 int num = skip_rows(statement, startPos);
166 } else if (num < startPos) {
167 LOGE("startPos
108 native_fill_window(JNIEnv* env, jobject object, jobject javaWindow, jint startPos, jint offsetParam, jint maxRead, jint lastPos) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DWifiWatchdogService.java1314 private static void writeString(byte[] buf, int startPos, String string) { argument
1315 int pos = startPos;
/frameworks/base/core/java/android/widget/
H A DGridView.java231 private View makeRow(int startPos, int y, boolean flow) { argument
239 last = Math.min(startPos + mNumColumns, mItemCount);
241 last = startPos + 1;
242 startPos = Math.max(0, startPos - mNumColumns + 1);
244 if (last - startPos < mNumColumns) {
245 nextLeft += (mNumColumns - (last - startPos)) * (columnWidth + horizontalSpacing);
257 for (int pos = startPos; pos < last; pos++) {
262 final int where = flow ? -1 : pos - startPos;
/frameworks/base/libs/utils/
H A DParcel.cpp355 int startPos = mDataPos; local
408 size_t off = objects[i] - offset + startPos;

Completed in 149 milliseconds