Searched defs:startPos (Results 1 - 12 of 12) 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);
806 * @param startPos The start position for filling the window.
809 * so that it does. Must be greater than or equal to <code>startPos</code>.
821 CursorWindow window, int startPos, int requiredPos, boolean countAllRows,
847 startPos, requiredPos, countAllRows);
865 + "', startPos=" + startPos
153 nativeExecuteForCursorWindow( long connectionPtr, long statementPtr, long windowPtr, int startPos, int requiredPos, boolean countAllRows) argument
820 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/libs/hwui/
H A DGradientCache.cpp265 float startPos = positions[0]; local
266 float distance = positions[1] - startPos;
273 startPos = positions[currentPos];
278 distance = positions[currentPos] - startPos;
281 float amount = (pos - startPos) / distance;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStaggeredGrid.java286 * on that row between startPos(included) and endPositions(included).
289 public final List<Integer>[] getItemPositionsInRows(int startPos, int endPos) { argument
293 if (startPos >= 0) {
294 for (int i = startPos; i <= endPos; i++) {
/frameworks/base/core/java/android/widget/
H A DGridView.java318 private View makeRow(int startPos, int y, boolean flow) { argument
336 last = Math.min(startPos + mNumColumns, mItemCount);
338 last = startPos + 1;
339 startPos = Math.max(0, startPos - mNumColumns + 1);
341 if (last - startPos < mNumColumns) {
342 final int deltaLeft = (mNumColumns - (last - startPos)) * (columnWidth + horizontalSpacing);
355 for (int pos = startPos; pos < last; pos++) {
360 final int where = flow ? -1 : pos - startPos;
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp575 sqlite3_stmt* statement, int numColumns, int startPos, int addedRows) {
579 LOG_WINDOW("Failed allocating fieldDir at startPos %d row %d, error=%d",
580 startPos, addedRows, status);
599 sizeIncludingNull, startPos + addedRows, i, status);
604 startPos + addedRows, i, sizeIncludingNull);
615 LOG_WINDOW("%d,%d is INTEGER 0x%016llx", startPos + addedRows, i, value);
626 LOG_WINDOW("%d,%d is FLOAT %lf", startPos + addedRows, i, value);
634 size, startPos + addedRows, i, status);
639 startPos + addedRows, i, size);
650 LOG_WINDOW("%d,%d is NULL", startPos
574 copyRow(JNIEnv* env, CursorWindow* window, sqlite3_stmt* statement, int numColumns, int startPos, int addedRows) argument
667 nativeExecuteForCursorWindow(JNIEnv* env, jclass clazz, jlong connectionPtr, jlong statementPtr, jlong windowPtr, jint startPos, jint requiredPos, jboolean countAllRows) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java384 * @param startPos Offset from left/top edge of outer rectangle to
389 private static float computePivot(int startPos, float finalScale) { argument
392 return startPos;
394 return -startPos / denom;
/frameworks/native/libs/binder/
H A DParcel.cpp397 int startPos = mDataPos; local
454 size_t off = objects[i] - offset + startPos;

Completed in 335 milliseconds