Searched refs:position (Results 1 - 25 of 481) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListHeterogeneous.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
41 switch (position % 3) {
44 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
47 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
50 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
57 public View convertView(int position, View convertView, ViewGroup parent) { argument
58 switch (position
73 getItemViewType(int position) argument
[all...]
H A DListItemFocusableAboveUnfocusable.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
41 if (position == 0) {
43 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
45 return super.createView(position, parent, desiredHeight);
H A DListInterleaveFocusables.java43 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
44 if (mFocusablePositions.contains(position)) {
46 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
48 return super.createView(position, parent, desiredHeight);
53 public int getItemViewType(int position) { argument
54 return mFocusablePositions.contains(position) ? 0 : 1;
H A DListOfTouchables.java41 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
43 b.setText("Position " + position);
44 b.setId(position);
/frameworks/base/core/java/android/widget/
H A DListAdapter.java41 * Returns true if the item at the specified position is not a separator.
44 * The result is unspecified if position is invalid. An {@link ArrayIndexOutOfBoundsException}
47 * @param position Index of the item
53 boolean isEnabled(int position); argument
H A DSectionIndexer.java29 * section/position.
49 * the starting position of that section within the adapter.
51 * If the section's starting position is outside of the adapter bounds, the
52 * position must be clipped to fall within the size of the adapter.
56 * @return the starting position of that section within the adapter,
62 * Given a position within the adapter, returns the index of the
69 * starts at adapter position 100. Calling this method with position 10,
72 * @param position the position withi
77 getSectionForPosition(int position) argument
[all...]
H A DAdapter.java57 * Get the data item associated with the specified position in the data set.
59 * @param position Position of the item whose data we want within the adapter's
61 * @return The data at the specified position.
63 Object getItem(int position); argument
66 * Get the row id associated with the specified position in the list.
68 * @param position The position of the item within the adapter's data set whose row id we want.
69 * @return The id of the item at the specified position.
71 long getItemId(int position); argument
82 * Get a View that displays the data at the specified position i
99 getView(int position, View convertView, ViewGroup parent) argument
123 getItemViewType(int position) argument
[all...]
H A DRemoteViewsListAdapter.java75 public Object getItem(int position) { argument
80 public long getItemId(int position) { argument
81 return position;
85 public View getView(int position, View convertView, ViewGroup parent) { argument
86 if (position < getCount()) {
87 RemoteViews rv = mRemoteViewsList.get(position);
104 public int getItemViewType(int position) { argument
105 if (position < getCount()) {
106 int layoutId = mRemoteViewsList.get(position).getLayoutId();
H A DBaseAdapter.java66 public boolean isEnabled(int position) { argument
70 public View getDropDownView(int position, View convertView, ViewGroup parent) { argument
71 return getView(position, convertView, parent);
74 public int getItemViewType(int position) { argument
H A DSpinnerAdapter.java32 * the data at the specified position in the data set.
34 * @param position index of the item whose view we want.
41 * specified position.
43 public View getDropDownView(int position, View convertView, ViewGroup parent); argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSectionedListAdapter.java66 public Object getItem(int position) { argument
72 // Check if position inside this section
73 if (position == 0) {
75 } else if (position < sectionSize) {
76 return section.getItem(position - 1);
80 position -= sectionSize;
82 throw new IllegalStateException("Unknown position " + position);
86 public long getItemId(int position) { argument
87 return position;
91 getView(int position, View convertView, ViewGroup parent) argument
116 isEnabled(int position) argument
136 getItemViewType(int position) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/animation/
H A DLookupTableInterpolator.java46 int position = Math.min((int) (input * (mValues.length - 1)), mValues.length - 2);
49 float quantized = position * mStepSize;
54 return mValues[position] + weight * (mValues[position + 1] - mValues[position]);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/util/
H A DSortedListAdapterCallback.java41 public void onInserted(int position, int count) { argument
42 mAdapter.notifyItemRangeInserted(position, count);
46 public void onRemoved(int position, int count) { argument
47 mAdapter.notifyItemRangeRemoved(position, count);
56 public void onChanged(int position, int count) { argument
57 mAdapter.notifyItemRangeChanged(position, count);
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputAction.h32 unsigned int position() const { return m_Position; } function in class:mcld::InputAction
35 return (position() < pOther.position());
/frameworks/base/core/java/android/database/
H A DCrossProcessCursor.java45 * row position until all of the data in the cursor is exhausted
54 * The current position of the cursor, as returned by {@link #getPosition},
58 * @param position The zero-based index of the first row to copy into the window.
61 void fillWindow(int position, CursorWindow window); argument
65 * to a new position, giving the subclass a chance to update any state it
67 * cursor will scroll to the beforeFirst position.
73 * @param oldPosition The position that we're moving from.
74 * @param newPosition The position that we're moving to.
/frameworks/base/core/java/com/android/internal/widget/
H A DPagerAdapter.java51 * independent of its position in the adapter. A call to the PagerAdapter method
74 * set change may involve pages being added, removed, or changing position. The
99 * Create the page for the given position. The adapter is responsible
105 * @param position The page position to be instantiated.
109 public Object instantiateItem(ViewGroup container, int position) { argument
110 return instantiateItem((View) container, position);
114 * Remove a page for the given position. The adapter is responsible
119 * @param position The page position t
123 destroyItem(ViewGroup container, int position, Object object) argument
136 setPrimaryItem(ViewGroup container, int position, Object object) argument
174 instantiateItem(View container, int position) argument
191 destroyItem(View container, int position, Object object) argument
206 setPrimaryItem(View container, int position, Object object) argument
306 getPageTitle(int position) argument
317 getPageWidth(int position) argument
[all...]
H A DIRemoteViewsFactory.aidl28 RemoteViews getViewAt(int position);
31 long getItemId(int position);
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerAdapter.java51 * independent of its position in the adapter. A call to the PagerAdapter method
74 * set change may involve pages being added, removed, or changing position. The
99 * Create the page for the given position. The adapter is responsible
105 * @param position The page position to be instantiated.
109 public Object instantiateItem(ViewGroup container, int position) { argument
110 return instantiateItem((View) container, position);
114 * Remove a page for the given position. The adapter is responsible
119 * @param position The page position t
123 destroyItem(ViewGroup container, int position, Object object) argument
136 setPrimaryItem(ViewGroup container, int position, Object object) argument
174 instantiateItem(View container, int position) argument
191 destroyItem(View container, int position, Object object) argument
206 setPrimaryItem(View container, int position, Object object) argument
306 getPageTitle(int position) argument
317 getPageWidth(int position) argument
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java43 /** Mapping of row ID to cursor position */
64 * moved to the correct position.
67 public abstract Fragment getItem(Context context, Cursor cursor, int position); argument
72 public Fragment getItem(int position) { argument
73 if (mCursor != null && moveCursorTo(position)) {
74 return getItem(mContext, mCursor, position);
89 public Object instantiateItem(View container, int position) { argument
95 if (moveCursorTo(position)) {
102 final Object obj = super.instantiateItem(container, position);
110 public void destroyItem(View container, int position, Objec argument
144 getDataItem(int position) argument
155 getItemId(int position) argument
220 moveCursorTo(int position) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaDataSource.java35 * Called to request data from the given position.
44 * @param position the position in the data source to read from.
51 public abstract int readAt(long position, byte[] buffer, int offset, int size) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DOnChildLaidOutListener.java30 * @param position The position of the view in the adapter.
33 void onChildLaidOut(ViewGroup parent, View view, int position, long id); argument
H A DOnChildSelectedListener.java33 * @param position The position of the view in the adapter, or NO_POSITION
38 void onChildSelected(ViewGroup parent, View view, int position, long id); argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DListViewCompat.java136 * Find a position that can be selected (i.e., is not a separator).
138 * @param position The starting position to look at.
140 * @return The next selectable position starting at position and then searching either up or
143 public int lookForSelectablePosition(int position, boolean lookDown) { argument
152 position = Math.max(0, position);
153 while (position < count && !adapter.isEnabled(position)) {
175 positionSelectorLikeTouchCompat(int position, View sel, float x, float y) argument
184 positionSelectorLikeFocusCompat(int position, View sel) argument
204 positionSelectorCompat(int position, View sel) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DListScenario.java87 * Return whether the item at position is selectable (i.e is a separator).
90 private boolean isItemAtPositionSelectable(int position) { argument
91 return !mUnselectableItems.contains(position);
135 * Set the position that starts selected.
137 * @param startingSelectionPosition The selected position within the adapter's data set.
158 * @param position The position in the list.
162 int position, double itemScreenSizeFactor) {
163 mOverrideItemScreenSizeFactors.put(position, itemScreenSizeFactor);
168 * Set a position a
161 setPositionScreenSizeFactorOverride( int position, double itemScreenSizeFactor) argument
172 setPositionUnselectable(int position) argument
287 positionClicked(int position) argument
296 positionLongClicked(int position) argument
490 getValueAtPosition(int position) argument
500 getHeightForPosition(int position) argument
540 createView(int position, ViewGroup parent, int desiredHeight) argument
548 convertView(int position, View convertView, ViewGroup parent) argument
588 getItemViewType(int position) argument
613 getItem(int position) argument
617 getItemId(int position) argument
627 isEnabled(int position) argument
631 getView(int position, View convertView, ViewGroup parent) argument
652 getItemViewType(int position) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridThrasher.java81 public Object getItem(int position) { argument
82 return position;
85 public long getItemId(int position) { argument
86 return position;
89 public View getView(int position, View convertView, ViewGroup parent) { argument
97 view.setText(mTitles[position] + " " + mVersion[position]);
103 int position = mRandomizer.nextInt(getCount());
104 mVersion[position]++;
128 public void onItemSelected(AdapterView parent, View v, int position, lon argument
[all...]

Completed in 2239 milliseconds

1234567891011>>