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

  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListAdapter.java 120 int position = listView.getPositionAt(topHeaderHeight) - headerViewsCount;
138 int position = listView.getPositionAt(listHeight - bottomHeaderHeight)
IndexerListAdapter.java 161 int listPosition = listView.getPositionAt(listView.getTotalTopPinnedHeaderHeight());
PinnedHeaderListView.java 399 public int getPositionAt(int y) {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
HeightField.java 43 * Use the {@link #getPositionAt(Vector3, int, int)} method to get the coordinate of a specific point on the grid.
243 public Vector3 getPositionAt (Vector3 out, int x, int y) {
272 Vector3 center = getPositionAt(tmpV2, x, y);
273 Vector3 left = x > 0 ? getPositionAt(tmpV3, x - 1, y) : null;
274 Vector3 right = x < (width - 1) ? getPositionAt(tmpV4, x + 1, y) : null;
275 Vector3 bottom = y > 0 ? getPositionAt(tmpV5, x, y - 1) : null;
276 Vector3 top = y < (height - 1) ? getPositionAt(tmpV6, x, y + 1) : null;

Completed in 107 milliseconds