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

12345

/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/support/car/src/main/java/androidx/car/widget/
H A DListItemProvider.java32 * @return number of total items.
42 public ListProvider(List<ListItem> items) { argument
43 mItems = items;
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/inputmethod/
H A DComparableUtils.java36 * Checks whether specified items have ascending ordering.
38 * @param items objects to be checked Comparable contracts.
43 static <T> void assertAscendingOrdering(final List<T> items, argument
45 for (int i = 1; i < items.size(); i++) {
46 final T x = items.get(i - 1);
47 final T y = items.get(i);
54 * Checks whether specified items have the same ordering.
56 * @param items objects to be checked equality.
61 static <T> void assertSameOrdering(final Collection<T> items, argument
63 for (final T x : items) {
86 assertComparableContracts(final Collection<T> items, final ToIntBiFunction<T, T> compareTo, final Function<T, String> name) argument
[all...]
/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/gingerbread/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/recyclerview/src/com/android/setupwizardlib/items/
H A DItemViewHolder.java17 package com.android.setupwizardlib.items;
/frameworks/opt/setupwizard/library/recyclerview/test/instrumentation/src/com/android/setupwizardlib/items/
H A DRecyclerItemAdapterTest.java17 package com.android.setupwizardlib.items;
41 import com.android.setupwizardlib.items.RecyclerItemAdapter.PatchedLayerDrawable;
72 assertEquals("Adapter should have 5 items", 5, adapter.getItemCount());
/frameworks/base/cmds/statsd/tests/
H A DLogEvent_test.cpp47 const auto& items = event1.getValues(); local
48 EXPECT_EQ((size_t)8, items.size());
116 const auto& items = event1.getValues(); local
117 EXPECT_EQ((size_t)8, items.size());
/frameworks/base/core/java/android/view/
H A DKeyboardShortcutGroup.java41 * @param items The set of items to be included.
44 @NonNull List<KeyboardShortcutInfo> items) {
46 mItems = new ArrayList<>(checkNotNull(items));
58 * @param items The set of items to be included.
64 @NonNull List<KeyboardShortcutInfo> items, boolean isSystemGroup) {
66 mItems = new ArrayList<>(checkNotNull(items));
95 * Returns the list of items included in this group.
43 KeyboardShortcutGroup(@ullable CharSequence label, @NonNull List<KeyboardShortcutInfo> items) argument
63 KeyboardShortcutGroup(@ullable CharSequence label, @NonNull List<KeyboardShortcutInfo> items, boolean isSystemGroup) argument
/frameworks/opt/setupwizard/library/gingerbread/test/instrumentation/src/com/android/setupwizardlib/items/
H A DButtonItemDrawingTest.java17 package com.android.setupwizardlib.items;
/frameworks/support/car/src/androidTest/java/androidx/car/widget/
H A DSubheaderListItemTest.java70 private void setupPagedListView(List<? extends ListItem> items) { argument
72 new ArrayList<>(items));
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
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/globalactions/
H A DActionsAdapter.java37 public ActionsAdapter(Context context, List<Action> items, argument
40 mItems = items;
/frameworks/native/libs/vr/libvrflinger/
H A Ddisplay_manager_service.cpp97 std::vector<display::SurfaceState> items; local
101 [&items](const std::shared_ptr<DisplaySurface>& surface) mutable {
102 items.push_back({surface->surface_id(), surface->process_id(),
111 return items;
/frameworks/opt/setupwizard/library/gingerbread/src/com/android/setupwizardlib/items/
H A DExpandableSwitchItem.java17 package com.android.setupwizardlib.items;
H A DSwitchItem.java17 package com.android.setupwizardlib.items;

Completed in 355 milliseconds

12345