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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gn/
item.cc 5 #include "tools/gn/item.h"
9 Item::Item(const Settings* settings, const Label& label)
15 Item::~Item() {
18 Config* Item::AsConfig() { return NULL; }
19 const Config* Item::AsConfig() const { return NULL; }
20 Target* Item::AsTarget() { return NULL; }
21 const Target* Item::AsTarget() const { return NULL; }
22 Toolchain* Item::AsToolchain() { return NULL;
    [all...]
visibility.h 16 class Item;
49 static bool CheckItemVisibility(const Item* from, const Item* to, Err* err);
51 // Helper function to fill an item's visibility from the "visibility" value
53 static bool FillItemVisibility(Item* item, Scope* scope, Err* err);
config.cc 12 : Item(settings, label) {
builder_record.h 12 #include "tools/gn/item.h"
18 // tree. It holds a reference to an item and links to other records that the
19 // item depends on, both resolved ones, and unresolved ones.
22 // a placeholder BuilderRecord with no item, and try to load the buildfile
23 // associated with the new item. The item will get filled in when we encounter
24 // the declaration for the item (or when we're done and realize there are
27 // You can also have null item pointers when the target is not required for
50 // Returns true if the given item is of the given type.
51 static bool IsItemOfType(const Item* item, ItemType type)
56 Item* item() { return item_.get(); } function in class:BuilderRecord
57 const Item* item() const { return item_.get(); } function in class:BuilderRecord
    [all...]
  /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/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 27 template<class Item>
39 void push_back(Item *x) {
52 void push_front(Item *x) {
72 Item *front() { return first_; }
73 Item *back() { return last_; }
75 void append_front(IntrusiveList<Item> *l) {
89 void append_back(IntrusiveList<Item> *l) {
109 for (Item *i = first_; ; i = i->next) {
120 explicit Iterator(IntrusiveList<Item> *list)
122 Item *next()
    [all...]
  /external/chromium_org/chrome/browser/ui/bookmarks/
recently_used_folders_combo_model.cc 21 struct RecentlyUsedFoldersComboModel::Item {
28 Item(const BookmarkNode* node, Type type);
29 ~Item();
31 bool operator==(const Item& item) const;
37 RecentlyUsedFoldersComboModel::Item::Item(const BookmarkNode* node,
43 RecentlyUsedFoldersComboModel::Item::~Item() {}
45 bool RecentlyUsedFoldersComboModel::Item::operator==(const Item& item) const
    [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.
191 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/chromium_org/third_party/WebKit/Source/platform/heap/
CallbackStack.h 19 class Item {
21 Item() { }
22 Item(void* object, VisitorCallback callback)
41 Item* allocateEntry();
42 Item* pop();
  /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...]
LineNumberList.java 69 * Gets the indicated item.
71 * @param n {@code >= 0;} which item
72 * @return {@code null-ok;} the indicated item
74 public Item get(int n) {
75 return (Item) get0(n);
79 * Sets the item at the given index.
82 * @param item {@code non-null;} the item
84 public void set(int n, Item item) {
    [all...]
  /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 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",
  /external/chromium_org/storage/common/blob/
blob_data.cc 23 items_.push_back(Item());
31 items_.push_back(Item());
39 items_.push_back(Item());
48 items_.push_back(Item());
55 for (std::vector<Item>::const_iterator iter = items_.begin();
57 if (iter->type() == Item::TYPE_BYTES)
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassWriter.java 214 * Normal type Item stored in the ClassWriter {@link ClassWriter#typeTable},
221 * Uninitialized type Item stored in the ClassWriter
229 * Merged type Item stored in the ClassWriter {@link ClassWriter#typeTable},
246 * Index of the next item to be added in the constant pool.
258 Item[] items;
268 final Item key;
273 final Item key2;
278 final Item key3;
285 * the Item whose index is <tt>i</tt>. All Item objects stored in this
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDragData.cpp 84 WebVector<WebDragData::Item> WebDragData::items() const
86 Vector<Item> itemList;
88 DataObjectItem* originalItem = m_private->item(i).get();
89 WebDragData::Item item; local
91 item.storageType = Item::StorageTypeString;
92 item.stringType = originalItem->type();
93 item.stringData = originalItem->getAsString();
96 item.storageType = Item::StorageTypeBinaryData
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
LineNumberList.java 69 * Gets the indicated item.
71 * @param n {@code >= 0;} which item
72 * @return {@code null-ok;} the indicated item
74 public Item get(int n) {
75 return (Item) get0(n);
79 * Sets the item at the given index.
82 * @param item {@code non-null;} the item
84 public void set(int n, Item item) {
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 110 Item: String;
112 Item := 'Item 1';
113 FIStackList.Push(Item);
114 Item := 'Item 2';
115 FIStackList.Push(Item);
116 CheckEquals(FIStackList.Pop,'Item 2');
117 CheckEquals(FIStackList.Pop,'Item 1');
122 FIStackList.Push('Item 1')
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormDataList.h 36 class Item {
39 Item() { }
40 Item(const WTF::CString& data) : m_data(data) { }
41 Item(PassRefPtrWillBeRawPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { }
81 const WillBeHeapVector<Item>& items() const { return m_items; }
100 WillBeHeapVector<Item> m_items;
105 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::FormDataList::Item);
  /external/chromium_org/extensions/browser/
process_map.cc 15 // Item
16 struct ProcessMap::Item {
17 Item() : process_id(0), site_instance_id(0) {
22 explicit Item(const ProcessMap::Item& other)
28 Item(const std::string& extension_id, int process_id,
35 ~Item() {
38 bool operator<(const ProcessMap::Item& other) const {
76 return items_.insert(Item(extension_id, process_id, site_instance_id)).second;
81 return items_.erase(Item(extension_id, process_id, site_instance_id)) > 0
    [all...]

Completed in 8638 milliseconds

1 2 3 4 5 6 7 8 91011>>