HomeSort by relevance Sort by last modified time
    Searched full:getitem (Results 26 - 50 of 1368) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/history/
HistoryManager.java 44 public HistoryItem getItem(int position) {
122 return getItem(0);
126 return getItem(mCurrentPresetPosition);
139 oldItems.add(getItem(i));
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CheckableListAdapter.java 65 CheckableItem item = getItem(position);
72 CheckableItem item = getItem(position);
88 CheckableItem item = getItem(i);
111 CheckableItem current = getItem(i);
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndActivity.java 44 textView.setText((String) getItem(position));
52 public Object getItem(int position) {
  /developers/build/prebuilts/gradle/CustomChoiceList/Application/src/main/java/com/example/android/customchoicelist/
MainActivity.java 48 public String getItem(int position) {
64 .setText(getItem(position));
  /developers/samples/android/ui/lists/CustomChoiceList/Application/src/main/java/com/example/android/customchoicelist/
MainActivity.java 48 public String getItem(int position) {
64 .setText(getItem(position));
  /developers/samples/android/ui/transition/FragmentTransition/Application/src/main/java/com/example/android/fragmenttransition/
MeatAdapter.java 42 public Meat getItem(int position) {
71 Meat meat = getItem(position);
  /development/samples/browseable/CustomChoiceList/src/com.example.android.customchoicelist/
MainActivity.java 48 public String getItem(int position) {
64 .setText(getItem(position));
  /cts/tests/tests/widget/src/android/widget/cts/
ActionMenuViewTest.java 80 assertEquals(R.id.action_highlight, menu.getItem(0).getItemId());
81 assertEquals(R.id.action_edit, menu.getItem(1).getItemId());
82 assertEquals(R.id.action_delete, menu.getItem(2).getItemId());
83 assertEquals(R.id.action_ignore, menu.getItem(3).getItemId());
84 assertEquals(R.id.action_share, menu.getItem(4).getItemId());
85 assertEquals(R.id.action_print, menu.getItem(5).getItemId());
  /external/pdfium/xfa/fwl/
cfwl_combolist.cpp 34 CFWL_ListItem* hItem = GetItem(this, i);
44 CFWL_ListItem* hItem = GetItem(this, iSel);
52 if (CFWL_ListItem* hOldItem = GetItem(this, iOld))
57 if (CFWL_ListItem* hOldItem = GetItem(this, iSel))
59 CFWL_ListItem* hSel = GetItem(this, iSel);
226 CFWL_ListItem* hItem = GetItem(this, pOuter->GetCurrentSelection());
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
SectionedAlbumDataAdapter.java 72 PhotoSource.AlbumData item = mAlbumData.getItem(i);
86 PhotoSource.AlbumData item = mAlbumData.getItem(i);
129 public Object getItem(int position) {
131 return mAlbumData.getItem(internalPosition(position+1)).account;
133 return mAlbumData.getItem(internalPosition(position));
187 textView.setText((String) getItem(position));
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 185 ConstInfo getItem(int n) {
194 return getItem(index).getTag();
209 ClassInfo c = (ClassInfo)getItem(index);
222 NameAndTypeInfo ntinfo = (NameAndTypeInfo)getItem(index);
232 NameAndTypeInfo ntinfo = (NameAndTypeInfo)getItem(index);
246 MemberrefInfo minfo = (MemberrefInfo)getItem(index);
260 MemberrefInfo minfo = (MemberrefInfo)getItem(index);
270 FieldrefInfo finfo = (FieldrefInfo)getItem(index);
282 FieldrefInfo f = (FieldrefInfo)getItem(index);
295 FieldrefInfo finfo = (FieldrefInfo)getItem(index)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
MenuTest.java 89 Assert.assertEquals(firstOrder, mMenu.getItem(0).getOrder());
90 Assert.assertEquals(a, mMenu.getItem(0).getTitle());
91 Assert.assertEquals(midOrder, mMenu.getItem(1).getOrder());
92 Assert.assertEquals(b, mMenu.getItem(1).getTitle());
93 Assert.assertEquals(lastOrder, mMenu.getItem(2).getOrder());
94 Assert.assertEquals(c, mMenu.getItem(2).getTitle());
155 final MenuItem subMenuItem = subMenu.getItem();
  /external/guava/guava-testlib/src/com/google/common/testing/
RelationshipTester.java 98 Item<T> itemInfo = getItem(groupNumber, itemNumber);
99 Item<T> relatedInfo = getItem(groupNumber, relatedItemNumber);
114 Item<T> itemInfo = getItem(groupNumber, itemNumber);
115 Item<T> unrelatedInfo = getItem(unrelatedGroupNumber, unrelatedItemNumber);
131 private Item<T> getItem(int groupNumber, int itemNumber) {
  /packages/apps/ExactCalculator/src/com/android/calculator2/
HistoryAdapter.java 69 final HistoryItem item = getItem(position);
114 return getItem(position).getEvaluatorIndex();
119 return getItem(position).isEmptyView() ? EMPTY_VIEW_TYPE : HISTORY_VIEW_TYPE;
161 final HistoryItem prevItem = getItem(position + 1);
175 private HistoryItem getItem(int position) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java 55 Action action = getItem(i);
97 Action action = getItem(position);
156 Action action = getItem(i);
168 Action action = getItem(i);
216 FilterRepresentation itemRep = getItem(i).getRepresentation();
  /cts/tests/tests/view/src/android/view/cts/
MenuItemTest.java 69 MenuItem firstItem = mMenu.getItem(0);
70 MenuItem secondItem = mMenu.getItem(1);
71 MenuItem thirdItem = mMenu.getItem(2);
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
MainActivity.java 101 public Item getItem(int position) {
107 return getItem(position).getId();
116 final Item item = getItem(position);
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
MainActivity.java 101 public Item getItem(int position) {
107 return getItem(position).getId();
116 final Item item = getItem(position);
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
MainActivity.java 101 public Item getItem(int position) {
107 return getItem(position).getId();
116 final Item item = getItem(position);
  /packages/apps/DeskClock/src/com/android/deskclock/settings/
SimpleMenuPreference.java 107 final CharSequence item = getItem(0);
113 final CharSequence item = getItem(position);
125 final CharSequence item = getItem(position);
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DropdownBreadcrumb.java 109 public DocumentInfo getItem(int position) {
126 final DocumentInfo doc = getItem(position);
146 final DocumentInfo doc = getItem(position);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StateAdapter.java 52 State state = getItem(position);
69 if (state == getItem(i)) {
90 State state = getItem(i);
  /external/lzma/CPP/7zip/UI/GUI/
ExtractDialog.cpp 156 _passwordControl.Attach(GetItem(IDE_EXTRACT_PASSWORD));
159 _pathName.Attach(GetItem(IDE_EXTRACT_NAME));
188 _path.Attach(GetItem(IDC_EXTRACT_PATH));
225 _pathMode.Attach(GetItem(IDC_EXTRACT_PATH_MODE));
226 _overwriteMode.Attach(GetItem(IDC_EXTRACT_OVERWRITE_MODE));
236 // CWindow filesWindow = GetItem(IDC_EXTRACT_RADIO_FILES);
  /developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
SelectContactActivity.java 65 public Object getItem(int i) {
81 Contact contact = (Contact) getItem(i);
  /developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
SelectContactActivity.java 65 public Object getItem(int i) {
81 Contact contact = (Contact) getItem(i);

Completed in 1595 milliseconds

12 3 4 5 6 7 8 91011>>