HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 176 - 200 of 895) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/skia/src/views/mac/
SkOptionsTableView.h 14 const SkOSMenu::Item* fItem;
16 @property (nonatomic, assign) const SkOSMenu::Item* fItem;
  /frameworks/base/core/jni/hwbinder/
EphemeralStorage.h 66 struct Item {
72 Vector<Item> mItems;
EphemeralStorage.cpp 34 << "All item storage should have been released by now.";
38 Item item; local
39 item.mType = TYPE_STRING_ARRAY;
40 item.mObj = NULL;
41 item.mPtr = new hidl_string[size];
42 mItems.push_back(item);
44 return static_cast<hidl_string *>(item.mPtr);
48 Item item; local
62 Item item; local
116 const Item &item = mItems[i]; local
    [all...]
  /frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/
UT_struct.java 37 ScriptField_Point2.Item i = new ScriptField_Point2.Item();
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_struct.java 37 ScriptField_Point2.Item i = new ScriptField_Point2.Item();
  /frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
UT_struct.java 34 ScriptField_Point2.Item i = new ScriptField_Point2.Item();
  /frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
UnitTest.java 25 private ScriptField_ListAllocs_s.Item mItem;
96 public void setItem(ScriptField_ListAllocs_s.Item item) {
97 mItem = item;
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
UnitTest.java 25 private ScriptField_ListAllocs_s.Item mItem;
107 public void setItem(ScriptField_ListAllocs_s.Item item) {
108 mItem = item;
  /frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
UnitTest.java 25 private ScriptField_ListAllocs_s.Item mItem;
107 public void setItem(ScriptField_ListAllocs_s.Item item) {
108 mItem = item;
  /packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
Item.java 31 * Describes a root navigation point of documents. Each one of them is presented as an item in the
34 abstract class Item {
39 public Item(@LayoutRes int layoutId, String stringId) {
  /packages/apps/Stk/src/com/android/stk/
StkLauncherActivity.java 33 import com.android.internal.telephony.cat.Item;
52 private ArrayList<Item> mStkMenuList = null;
92 Item item = getSelectedItem(position); local
93 if (item == null) {
94 CatLog.d(LOG_TAG, "Item is null");
97 CatLog.d(LOG_TAG, "launch stk menu id: " + item.id);
98 if (item.id >= PhoneConstants.SIM_ID_1 && item.id < simCount) {
100 launchSTKMainMenu(item.id)
150 Item item = null; local
184 Item item = new Item(i + 1, stkItemName, mBitMap); local
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
DisplayModeFragment.java 43 protected List<Item> getItemList() {
44 List<Item> items = new ArrayList<>();
SideFragment.java 161 public void setItems(List<Item> items) {
187 * directly updates each item. This works around a bug in the base libraries where calling
188 * Adapter.notifyItemsChanged() causes the VerticalGridView to lose track of displayed item
196 protected void notifyItemChanged(Item item) {
197 item.notifyUpdated();
232 protected abstract List<Item> getItemList();
267 private List<Item> mItems;
269 private ItemAdapter(LayoutInflater layoutInflater, List<Item> items) {
274 private void reset(List<Item> items)
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
Contacts.java 215 public static class Item {
216 public Item(long id) {
272 if (!(o instanceof Contacts.Item)) return false;
274 Contacts.Item that = (Contacts.Item) o;
281 .append("Contacts.Item { ")
  /packages/services/Car/car-support-lib/src/android/support/car/app/menu/
CarMenu.java 45 public void sendResult(List<Item> results) {
52 for (Item item : results) {
53 ItemImpl impl = (ItemImpl) item;
105 * An individual item in a menu.
107 public interface Item {
109 * Gets the id of the menu item.
111 * @return The id of the menu item.
116 * Gets the title of the menu item.
118 * @return The title of the menu item. {@code null} if there is no title
    [all...]
  /frameworks/base/tools/aapt2/
Format.proto 142 optional Item item = 4;
163 optional Item item = 3;
182 optional Item item = 4;
187 message Item {
209 optional Item item = 4;
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
DxeNetLib.c 1228 NET_MAP_ITEM *Item;
1235 Item = NET_LIST_USER_STRUCT (Entry, NET_MAP_ITEM, Link);
1237 RemoveEntryList (&Item->Link);
1240 gBS->FreePool (Item);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
LockscreenFragment.java 112 Adapter adapter = new Adapter(getContext(), item -> {
113 mTunerService.setValue(buttonSetting, item.getSettingValue());
168 private static class StaticShortcut extends Item {
200 private static class App extends Item {
204 private final ArrayList<Item> mChildren = new ArrayList<>();
213 public void addChild(Item child) {
248 private abstract static class Item {
262 private ArrayList<Item> mItems = new ArrayList<>();
264 private final Consumer<Item> mCallback;
266 public Adapter(Context context, Consumer<Item> callback)
279 Item item = mItems.get(position); local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
UniClassObject.py 70 for Item in Uni:
71 Temp = '%04X' % ord(Item)
257 for Item in self.LanguageDef:
258 if Item[0] == LangName:
279 Item = self.OrderedStringList[FirstLangName][Index]
280 if Item.UseOtherLangDef != '':
281 OtherLang = Item.UseOtherLangDef
284 self.OrderedStringList[LangName].append (StringDefClassObject(Item.StringName, '', Item.Referenced, Item.Token, OtherLang))
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfSectionParser.py 117 for Item in ItemList:
118 if Item.startswith('\"') and not Item.endswith('\"'):
119 AppendContent = Item
121 elif Item.endswith('\"') and not Item.startswith('\"'):
127 AppendContent = AppendContent + "." + Item
131 elif Item.endswith('\"') and Item.startswith('\"'):
133 # Common item, not need to combine the information
    [all...]
InfBuildOptionSectionParser.py 145 for Item in self.LastSectionHeaderContent:
146 LastItem = Item
147 if not (Item[1] == '' or Item[1] == '') and Item[1] not in ArchList:
148 ArchList.append(Item[1])
149 InfSectionObject.SetSupArchList(Item[1])
  /frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/
BrowserListFragment.java 53 private List<Item> mItems = new ArrayList();
58 private static class Item {
61 Item(MediaBrowser.MediaItem m) {
102 final Item item = mItems.get(position); local
104 Log.i("BrowserListFragment", "Item clicked: " + position + " -- "
111 args.putParcelable(BrowserListFragment.ARG_ID, item.media.getDescription().getIconUri());
139 mItems.add(new Item(children.get(i)));
178 public Item getItem(int position) {
199 final Item item = mItems.get(position) local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 210 public boolean onMenuItemClick(MenuItem item) {
218 public boolean onMenuItemClick(MenuItem item) {
233 Item item = mAdapter.mItems.get(position); local
234 Uri targetUri = item.mFirstImageUri;
236 if (targetUri != null && item.mBucketId != null) {
238 .appendQueryParameter("bucketId", item.mBucketId)
337 // and generated thumbnail bitmaps for each item. We do this instead of
341 ArrayList<Item> allItems = new ArrayList<Item>();
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PopupList.java 44 public static class Item {
48 public Item(int id, String title) {
60 private final ArrayList<Item> mItems = new ArrayList<Item>();
79 mItems.add(new Item(id, title));
172 public Item findItem(int id) {
173 for (Item item : mItems) {
174 if (item.id == id) return item;
    [all...]
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.java 53 private final SparseArray<Item> mItems = new SparseArray<>();
102 final Item item = mItems.get(id); local
103 if (item == null) {
104 Log.w(TAG, "No item for id " + id);
107 if (!item.editable) {
108 Log.w(TAG, "Item for id " + id + " is not editable: " + item);
111 // Set the item's text to the text wrapped in the AutofillValue.
112 item.text = value.getTextValue()
126 Item item = mItems.valueAt(i); local
    [all...]

Completed in 713 milliseconds

1 2 3 4 5 6 78 91011>>