Searched defs:items (Results 1 - 25 of 80) sorted by relevance

1234

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DIItem.java17 package com.android.setupwizardlib.items;
35 * Called by items framework to display the data specified by this item. This method should
39 * display data from this item. This view may be recycled from other items with the
H A DAbstractItem.java17 package com.android.setupwizardlib.items;
24 * methods for {@link ItemHierarchy} for items representing itself.
H A DItemInflater.java17 package com.android.setupwizardlib.items;
H A DReflectionInflater.java17 package com.android.setupwizardlib.items;
29 * An XML inflater that creates items by reading the tag as a class name, and constructs said class
63 * constructor of the items created as the first argument.
H A DAbstractItemHierarchy.java17 package com.android.setupwizardlib.items;
H A DButtonBarItem.java17 package com.android.setupwizardlib.items;
31 * {@link com.android.setupwizardlib.items.ButtonItem}.
H A DItemHierarchy.java17 package com.android.setupwizardlib.items;
20 * Representation of zero or more items in a list. Each instance of ItemHierarchy should be capable
23 * For example, {@link com.android.setupwizardlib.items.Item} is a representation of a single item,
24 * typically with data provided from XML. {@link com.android.setupwizardlib.items.ItemGroup}
45 * items. This method indicates that there are no structural changes like inserting or
46 * removing items.
51 * Called when items are inserted at the given position.
56 * Called when the given items are moved to a different position.
62 * Called when the given items are removed from the item hierarchy.
78 * @return the number of items thi
[all...]
H A DSimpleInflater.java17 package com.android.setupwizardlib.items;
142 * items, instantiate their children, and then call onFinishInflate().
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestBasic.java35 private String[] items = {"This is a very very very very very very very very very very very long Item1", "Item2"}; field in class:BiDiTestBasic
60 builder.setSingleChoiceItems(items, 0, null);
/frameworks/native/cmds/installd/
H A DCacheTracker.h37 * for loading lightweight "stats", and then by loading detailed "items"
59 std::vector<std::shared_ptr<CacheItem>> items; member in class:android::installd::CacheTracker
/frameworks/opt/setupwizard/library/eclair-mr1/test/instrumentation/src/com/android/setupwizardlib/items/
H A DButtonItemDrawingTest.java17 package com.android.setupwizardlib.items;
/frameworks/opt/setupwizard/library/eclair-mr1/test/robotest/src/com/android/setupwizardlib/items/
H A DExpandableSwitchItemTest.java17 package com.android.setupwizardlib.items;
H A DSwitchItemTest.java17 package com.android.setupwizardlib.items;
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/items/
H A DItemViewHolder.java17 package com.android.setupwizardlib.items;
/frameworks/opt/setupwizard/library/full-support/test/instrumentation/src/com/android/setupwizardlib/items/
H A DRecyclerItemAdapterTest.java17 package com.android.setupwizardlib.items;
40 import com.android.setupwizardlib.items.RecyclerItemAdapter.PatchedLayerDrawable;
71 assertEquals("Adapter should have 5 items", 5, adapter.getItemCount());
/frameworks/base/core/java/android/view/
H A DKeyboardShortcutGroup.java40 * @param items The set of items to be included.
43 @NonNull List<KeyboardShortcutInfo> items) {
45 mItems = new ArrayList<>(checkNotNull(items));
57 * @param items The set of items to be included.
62 @NonNull List<KeyboardShortcutInfo> items, boolean isSystemGroup) {
64 mItems = new ArrayList<>(checkNotNull(items));
92 * Returns the list of items included in this group.
42 KeyboardShortcutGroup(@ullable CharSequence label, @NonNull List<KeyboardShortcutInfo> items) argument
61 KeyboardShortcutGroup(@ullable CharSequence label, @NonNull List<KeyboardShortcutInfo> items, boolean isSystemGroup) argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
H A DTileListTest.java140 private TileList.Tile<Integer> createTile(int startPosition, int... items) { argument
143 window.mItemCount = items.length;
144 for (int i = 0; i < items.length; i ++) {
145 window.mItems[i] = items[i];
/frameworks/base/core/java/com/android/internal/util/
H A DCollectionUtils.java42 * Returns a list of items from the provided list that match the given condition.
60 * Returns a list of items resulting from applying the given function to each element of the
150 public static <T> boolean any(@Nullable List<T> items, argument
152 return find(items, predicate) != null;
159 public static @Nullable <T> T find(@Nullable List<T> items, argument
161 if (isEmpty(items)) return null;
162 for (int i = 0; i < items.size(); i++) {
163 final T item = items.get(i);
/frameworks/native/libs/vr/libvrflinger/
H A Ddisplay_manager_service.cpp93 std::vector<display::SurfaceState> items; local
97 [&items](const std::shared_ptr<DisplaySurface>& surface) mutable {
98 items.push_back({surface->surface_id(), surface->process_id(),
107 return items;
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/items/
H A DExpandableSwitchItem.java17 package com.android.setupwizardlib.items;
H A DSwitchItem.java17 package com.android.setupwizardlib.items;
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/items/
H A DButtonItemTest.java17 package com.android.setupwizardlib.items;
44 import com.android.setupwizardlib.items.ButtonItem.OnClickListener;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DMenu.java31 public List<Item> items; field in class:Menu
44 items = new ArrayList<Item>();
60 // rebuild items list.
61 items = new ArrayList<Item>();
65 items.add(item);
84 // write items list to the parcel.
85 int size = items.size();
88 dest.writeParcelable(items.get(i), flags);
/frameworks/support/frameworks/support/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
H A DAppNavHomeActivity.java89 public SampleAdapter(List<SampleInfo> items) { argument
90 mItems = items;
/frameworks/support/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
H A DAppNavHomeActivity.java89 public SampleAdapter(List<SampleInfo> items) { argument
90 mItems = items;

Completed in 4034 milliseconds

1234