HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 1 - 25 of 642) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
Item.java 20 * Represents an Item in our application. Each item has a name, id, full size image url and
23 public class Item {
28 public static Item[] ITEMS = new Item[] {
29 new Item("Flying in the Light", "Romain Guy", "flying_in_the_light.jpg"),
30 new Item("Caterpillar", "Romain Guy", "caterpillar.jpg"),
31 new Item("Look Me in the Eye", "Romain Guy", "look_me_in_the_eye.jpg"),
32 new Item("Flamingo", "Romain Guy", "flamingo.jpg"),
33 new Item("Rainbow", "Romain Guy", "rainbow.jpg")
    [all...]
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
Item.java 20 * Represents an Item in our application. Each item has a name, id, full size image url and
23 public class Item {
28 public static Item[] ITEMS = new Item[] {
29 new Item("Flying in the Light", "Romain Guy", "flying_in_the_light.jpg"),
30 new Item("Caterpillar", "Romain Guy", "caterpillar.jpg"),
31 new Item("Look Me in the Eye", "Romain Guy", "look_me_in_the_eye.jpg"),
32 new Item("Flamingo", "Romain Guy", "flamingo.jpg"),
33 new Item("Rainbow", "Romain Guy", "rainbow.jpg")
    [all...]
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
Item.java 20 * Represents an Item in our application. Each item has a name, id, full size image url and
23 public class Item {
28 public static Item[] ITEMS = new Item[] {
29 new Item("Flying in the Light", "Romain Guy", "flying_in_the_light.jpg"),
30 new Item("Caterpillar", "Romain Guy", "caterpillar.jpg"),
31 new Item("Look Me in the Eye", "Romain Guy", "look_me_in_the_eye.jpg"),
32 new Item("Flamingo", "Romain Guy", "flamingo.jpg"),
33 new Item("Rainbow", "Romain Guy", "rainbow.jpg")
    [all...]
  /external/robolectric/v1/src/main/java/com/google/android/maps/
ShadowItemizedOverlayBridge.java 6 public class ShadowItemizedOverlayBridge<Item extends OverlayItem> {
7 private ItemizedOverlay<Item> itemizedObject;
9 public ShadowItemizedOverlayBridge(ItemizedOverlay<Item> itemizedObject) {
13 public Item createItem(int i) {
  /libcore/luni/src/test/java/libcore/java/util/
ComparatorTest.java 27 private static final Item ZERO = new Item(0);
28 private static final Item ONE = new Item(1);
29 private static final Item TWO = new Item(2);
30 private static final Item THREE = new Item(3);
31 private static final Item FOUR = new Item(4)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Box.java 21 private Item top;
22 private Item bottom;
30 public Item getTop() {
34 public void setTop(Item top) {
38 public Item getBottom() {
42 public void setBottom(Item bottom) {
Item.java 18 public class Item {
23 public Item(String id) {
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIAEnumLineNumbers.cpp 27 CComPtr<IDiaLineNumber> Item;
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
35 CComPtr<IDiaLineNumber> Item;
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
DIAEnumDebugStreams.cpp 27 CComPtr<IDiaEnumDebugStreamData> Item;
31 if (S_OK != Enumerator->Item(VarIndex, &Item))
34 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
38 CComPtr<IDiaEnumDebugStreamData> Item;
40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
43 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
DIAEnumSourceFiles.cpp 27 CComPtr<IDiaSourceFile> Item;
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
35 CComPtr<IDiaSourceFile> Item;
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
DIAEnumSymbols.cpp 28 CComPtr<IDiaSymbol> Item;
29 if (S_OK != Enumerator->Item(Index, &Item))
32 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
37 CComPtr<IDiaSymbol> Item;
39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
42 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Item.java 24 * Represents an Item COMPREHENSION-TLV object.
28 public class Item implements Parcelable {
29 /** Identifier of the item. */
31 /** Text string of the item. */
33 /** Icon of the item */
36 public Item(int id, String text) {
40 public Item(int id, String text, Bitmap icon) {
46 public Item(Parcel in) {
64 public static final Parcelable.Creator<Item> CREATOR = new Parcelable.Creator<Item>() {
    [all...]
  /external/deqp/executor/
xeTestCaseResult.hpp 61 class Item;
92 const Item& getItem (int ndx) const { return *m_items[ndx]; }
93 Item& getItem (int ndx) { return *m_items[ndx]; }
99 std::vector<Item*> m_items;
106 T* item = new T(); local
107 m_items.push_back(static_cast<ri::Item*>(item));
108 return item;
134 // Result item type.
192 class Item
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Item.java 25 public abstract class Item {
29 public Item() {
34 * Returns the item type for this instance.
36 * @return {@code non-null;} the item type
41 * Returns the human name for the particular type of item this
59 * This will <i>not</i> add an item to the file for this instance itself
  /dalvik/dx/src/com/android/dx/dex/file/
Item.java 25 public abstract class Item {
29 public Item() {
34 * Returns the item type for this instance.
36 * @return {@code non-null;} the item type
41 * Returns the human name for the particular type of item this
59 * This will <i>not</i> add an item to the file for this instance itself
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Item.java 25 public abstract class Item {
29 public Item() {
34 * Returns the item type for this instance.
36 * @return {@code non-null;} the item type
41 * Returns the human name for the particular type of item this
59 * This will <i>not</i> add an item to the file for this instance itself
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 28 template<class Item>
40 void push_back(Item *x) {
53 void push_front(Item *x) {
73 Item *front() { return first_; }
74 Item *back() { return last_; }
76 void append_front(IntrusiveList<Item> *l) {
90 void append_back(IntrusiveList<Item> *l) {
110 for (Item *i = first_; ; i = i->next) {
135 typedef IteratorBase<IntrusiveList<Item>, Item> Iterator
    [all...]
  /frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
SortedListTest.java 39 SortedList<Item> mList;
44 private SortedList.Callback<Item> mCallback;
45 InsertedCallback<Item> mInsertedCallback;
46 ChangedCallback<Item> mChangedCallback;
48 private Comparator<? super Item> sItemComparator = new Comparator<Item>() {
50 public int compare(Item o1, Item o2) {
67 mCallback = new SortedList.Callback<Item>() {
69 public int compare(Item o1, Item o2)
121 Item item = new Item(); local
140 Item item = new Item(); local
152 Item item = new Item(); local
166 Item item = new Item(); local
204 Item item = new Item(); local
233 assertNotSame(mList.get(index), item); local
282 Item item = new Item(id, id); local
309 Item item = mList.get(i); local
476 Item item = new Item(uniqueId++, cmpField); local
489 Item item = mList.get(i); local
531 Item item = new Item(id++, 0); local
754 Item item = (Item) o; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
LocalVariableList.java 84 Item item = descriptorList.get(i); local
85 Item signatureItem = signatureList.itemToLocal(item);
88 item = item.withSignature(signature);
90 result.set(i, item);
107 * Gets the indicated item.
109 * @param n {@code >= 0;} which item
110 * @return {@code null-ok;} the indicated item
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowItemizedOverlay.java 19 public class ShadowItemizedOverlay<Item extends OverlayItem> {
23 private ArrayList<Item> items = new ArrayList<Item>();
26 private ItemizedOverlay<Item> realObject;
39 public final Item getItem(int position) {
44 public boolean hitTest(OverlayItem item, android.graphics.drawable.Drawable drawable, int i, int i1) {
89 private ShadowItemizedOverlayBridge<Item> getBridge() {
90 return new ShadowItemizedOverlayBridge<Item>(realObject);
  /external/clang/test/CodeGenCXX/
typeid-cxx11.cpp 6 struct Item {
13 template<typename T> constexpr Item item(const char *name) { function in namespace:Test1
22 extern constexpr Item items[] = {
23 item<A>("A"), item<B>("B"), item<C>("C"), item<int>("int")
  /external/emma/core/java12/com/vladium/emma/report/
AllItem.java 16 final class AllItem extends Item
53 private static final Item.ItemMetadata METADATA; // set in <clinit>
57 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_ALL, "all",
  /packages/apps/Settings/src/com/android/settings/
AppWidgetLoader.java 33 public class AppWidgetLoader<Item extends AppWidgetLoader.LabelledItem> {
39 ItemConstructor<Item> mItemConstructor;
46 ItemConstructor<Item> itemConstructor) {
56 void putCustomAppWidgets(List<Item> items, Intent intent) {
115 List<Bundle> customExtras, List<Item> items, int categoryFilter,
127 Item item = mItemConstructor.createItem(mContext, info, local
130 items.add(item);
134 public interface ItemConstructor<Item> {
135 Item createItem(Context context, AppWidgetProviderInfo info, Bundle extras)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/mws/
test_response.py 22 Item = Element(Test9one)
25 <Item>
32 </Item>
35 Item = obj._result.Item
37 nest = dict(filter(useful, Item.Nest.__dict__.items()))
40 item = dict(filter(useful, Item.__dict__.items()))
41 self.assertEqual(item, dict(Foo='Bar', Bif='Bam', Zoom=None))
48 Item = MemberList(SimpleList
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
MultiListSelectPresenter.java 46 * The given generated Item was just deselected; handle any necessary cleanup.
48 public void onRemoveGeneratedItem(Item generatedItem);
51 public static class Item implements Comparable<Item> {
54 // a generated item is destroyed when deselected.
59 private Item(String name, String value) {
64 public static Item createItem(String name, String value) {
65 return new Item(name, value);
68 public static Item createGeneratedItem(String name, String value) {
69 Item item = new Item(name, value) local
    [all...]

Completed in 1372 milliseconds

1 2 3 4 5 6 7 8 91011>>