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

/frameworks/av/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[];
90 const Word16 startPos[2*4*2] = {0, 2, 0, 3, variable
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java46 * @param startPos The start position for filling the window.
57 int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) { argument
63 window, startPos, requiredPos, countAllRows, getConnectionFlags(),
H A DSQLiteSession.java803 * @param startPos The start position for filling the window.
806 * so that it does. Must be greater than or equal to <code>startPos</code>.
820 CursorWindow window, int startPos, int requiredPos, boolean countAllRows,
837 window, startPos, requiredPos, countAllRows,
819 executeForCursorWindow(String sql, Object[] bindArgs, CursorWindow window, int startPos, int requiredPos, boolean countAllRows, int connectionFlags, CancellationSignal cancellationSignal) argument
H A DSQLiteConnection.java155 int startPos, int requiredPos, boolean countAllRows);
799 * @param startPos The start position for filling the window.
802 * so that it does. Must be greater than or equal to <code>startPos</code>.
814 CursorWindow window, int startPos, int requiredPos, boolean countAllRows,
840 startPos, requiredPos, countAllRows);
858 + "', startPos=" + startPos
153 nativeExecuteForCursorWindow( int connectionPtr, int statementPtr, int windowPtr, int startPos, int requiredPos, boolean countAllRows) argument
813 executeForCursorWindow(String sql, Object[] bindArgs, CursorWindow window, int startPos, int requiredPos, boolean countAllRows, CancellationSignal cancellationSignal) argument
/frameworks/wilhelm/src/itf/
H A DISeek.c52 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; local
123 *pStartPos = startPos;
51 ISeek_SetLoop(SLSeekItf self, SLboolean loopEnable, SLmillisecond startPos, SLmillisecond endPos) argument
/frameworks/av/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.java299 private View makeRow(int startPos, int y, boolean flow) { argument
317 last = Math.min(startPos + mNumColumns, mItemCount);
319 last = startPos + 1;
320 startPos = Math.max(0, startPos - mNumColumns + 1);
322 if (last - startPos < mNumColumns) {
323 final int deltaLeft = (mNumColumns - (last - startPos)) * (columnWidth + horizontalSpacing);
335 for (int pos = startPos; pos < last; pos++) {
340 final int where = flow ? -1 : pos - startPos;
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp574 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
573 copyRow(JNIEnv* env, CursorWindow* window, sqlite3_stmt* statement, int numColumns, int startPos, int addedRows) argument
666 nativeExecuteForCursorWindow(JNIEnv* env, jclass clazz, jint connectionPtr, jint statementPtr, jint windowPtr, jint startPos, jint requiredPos, jboolean countAllRows) argument
[all...]
/frameworks/native/libs/binder/
H A DParcel.cpp368 int startPos = mDataPos; local
425 size_t off = objects[i] - offset + startPos;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java3297 * @param startPos Offset from left/top edge of outer rectangle to
3302 private static float computePivot(int startPos, float finalScale) { argument
3305 return startPos;
3307 return -startPos / denom;

Completed in 2665 milliseconds