HomeSort by relevance Sort by last modified time
    Searched refs:indexLimit (Results 1 - 9 of 9) sorted by null

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SingleRow.java 175 protected final int findRowMin(boolean findLarge, int indexLimit, int[] indices) {
178 indices[1] = indexLimit;
180 return mReversedFlow ? mProvider.getEdge(indexLimit) - mProvider.getSize(indexLimit)
181 : mProvider.getEdge(indexLimit);
185 protected final int findRowMax(boolean findLarge, int indexLimit, int[] indices) {
188 indices[1] = indexLimit;
190 return mReversedFlow ? mProvider.getEdge(indexLimit)
191 : mProvider.getEdge(indexLimit) + mProvider.getSize(indexLimit);
    [all...]
StaggeredGridDefault.java 103 public int findRowMax(boolean findLarge, int indexLimit, int[] indices) {
105 int edge = mProvider.getEdge(indexLimit);
106 Location loc = getLocation(indexLimit);
108 int index = indexLimit;
113 for (int i = indexLimit + 1; visitedRows < mNumRows && i <= mLastVisibleIndex; i++) {
127 value = edge + mProvider.getSize(indexLimit);
128 for (int i = indexLimit - 1; visitedRows < mNumRows && i >= mFirstVisibleIndex; i--) {
155 public int findRowMin(boolean findLarge, int indexLimit, int[] indices) {
157 int edge = mProvider.getEdge(indexLimit);
158 Location loc = getLocation(indexLimit);
    [all...]
Grid.java 294 * indexLimit, the row index is returned in indices[0], the item index is returned in indices[1].
296 protected abstract int findRowMin(boolean findLarge, int indexLimit, int[] rowIndex);
308 * Find largest or smallest row max edge of visible items, starts searching from indexLimit,
311 protected abstract int findRowMax(boolean findLarge, int indexLimit, int[] indices);
  /external/sonivox/arm-wt-22k/lib_src/
eas_chorusdata.h 118 * indexLimit: the total size of the array, used to compute buffer wrap
125 static EAS_I16 WeightedTap(const EAS_I16 *array, EAS_I16 indexReference, EAS_I32 indexDesired, EAS_I16 indexLimit);
eas_chorus.c 190 * indexLimit: the total size of the array, used to compute buffer wrap
197 static EAS_I16 WeightedTap(const EAS_I16 *array, EAS_I16 indexReference, EAS_I32 indexDesired, EAS_I16 indexLimit)
215 index += indexLimit;
224 val2 = array[indexLimit-1]; //get last value from array
  /external/deqp/modules/gles3/stress/
es3sDrawTests.cpp 160 deInt64 indexLimit = 0;
168 gl.glGetInteger64v(GL_MAX_ELEMENT_INDEX, &indexLimit);
174 if ((deUint64)indexLimit > 0xFFFFFFFFULL)
177 min = (deUint32)(indexLimit - 16);
182 if ((deUint64)indexLimit > 0xFFFFFFFFULL)
185 max = (deUint32)indexLimit;
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java 397 final int indexLimit = state.getItemCount() - 1;
400 while (pos < indexLimit) {
    [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 

Completed in 405 milliseconds