Searched defs:Item (Results 1 - 25 of 90) sorted by relevance

1234

/external/v8/test/mjsunit/regress/
H A Dregress-swapelements.js31 function Item(val) { class
48 array1[i] = new Item(i);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_list.h34 void * Item; member in struct:rc_list
/external/v8/test/webkit/fast/js/kde/
H A DPrototype.js41 function Item(name){ class
46 this.base = Item; // set Item constructor as method of Book object
50 Book.prototype = new Item;
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/
H A Ditem.py24 class Item(dict): class in inherits:dict
107 If you have changed attribute values on an Item instance,
H A Dconnection.py27 from boto.sdb.item import Item namespace
33 A threaded :class:`Item <boto.sdb.item.Item>` retriever utility class.
34 Retrieved :class:`Item <boto.sdb.item.Item>` objects are stored in the
60 ``items`` list with :class:`Item <boto.sdb.item.Item>` objects.
73 :class:`Item <boto.sdb.item.Item>` objects.
125 self.item_cls = Item
[all...]
/external/clang/test/CodeGenCXX/
H A Dtypeid-cxx11.cpp6 struct Item { struct in namespace:Test1
13 template<typename T> constexpr Item item(const char *name) {
22 extern constexpr Item items[] = {
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DItem.java25 public abstract class Item { class
29 public Item() { method in class:Item
/external/giflib/
H A Dgif_hash.c32 static int KeyItem(uint32_t Item);
60 Routine to insert a new Item into the HashTable. The data is assumed to be *
114 static int KeyItem(uint32_t Item) argument
116 return ((Item >> 12) ^ Item) & HT_KEY_MASK;
/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAEnumDebugStreams.cpp27 CComPtr<IDiaEnumDebugStreamData> Item; local
31 if (S_OK != Enumerator->Item(VarIndex, &Item))
34 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
38 CComPtr<IDiaEnumDebugStreamData> Item; local
40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
43 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
H A DDIAEnumLineNumbers.cpp27 CComPtr<IDiaLineNumber> Item; local
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
35 CComPtr<IDiaLineNumber> Item; local
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
H A DDIAEnumSourceFiles.cpp27 CComPtr<IDiaSourceFile> Item; local
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
35 CComPtr<IDiaSourceFile> Item; local
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
H A DDIAEnumSymbols.cpp28 CComPtr<IDiaSymbol> Item; local
29 if (S_OK != Enumerator->Item(Index, &Item))
32 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
37 CComPtr<IDiaSymbol> Item; local
39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
42 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DItem.java18 public class Item { class
23 public Item(String id) { method in class:Item
/external/skia/include/views/
H A DSkOSMenu.h50 class Item { class in class:SkOSMenu
56 Item(const char label[], SkOSMenu::Type type, const char slotName[],
58 ~Item() { delete fEvent; }
96 const Item* getItemByID(int itemID) const;
97 void getItems(const Item* items[]) const;
175 SkTDArray<Item*> fItems;
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/
H A Ditem.py27 class Item(dict): class in inherits:dict
H A Dtable.py26 from boto.dynamodb.item import Item namespace
256 item_class=Item):
283 :class:`boto.dynamodb.item.Item`
292 Checks the table to see if the Item with the specified ``hash_key``
296 Amazon not to return anything but the Item's key.
314 :returns: ``True`` if the Item exists, ``False`` if not.
329 item_class=Item):
331 Return an new, unsaved Item which can later be PUT to
377 :class:`boto.dynamodb.item.Item`
446 :class:`boto.dynamodb.item.Item`
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ecs/
H A Ditem.py33 """Initialize this Item"""
88 class Item(ResponseGroup): class in inherits:ResponseGroup
89 """A single Item"""
92 """Initialize this Item"""
93 ResponseGroup.__init__(self, connection, "Item")
97 only creates new Items on the "Item" tag"""
113 if name == "Item":
114 self.curItem = Item(self._connection)
131 elif name == 'Item':
/external/clang/test/CodeGen/
H A Daarch64-type-sizes.c85 Item enumerator in enum:Small
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DItem.java38 final class Item { class
55 * Special Item types are used for Items that are stored in the ClassWriter
101 Item next;
104 * Constructs an uninitialized {@link Item}.
106 Item() { method in class:Item
110 * Constructs an uninitialized {@link Item} for constant pool element at
115 Item(final int index) { method in class:Item
125 Item(final int index, final Item i) { method in class:Item
225 boolean isEqualTo(final Item
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb2/
H A Dtest_highlevel.py34 from boto.dynamodb2.items import Item namespace
206 sadie = Item(users, data={
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DPooledLinkedList.java22 static final class Item<T> { class in class:PooledLinkedList
24 public Item<T> next;
25 public Item<T> prev;
28 private Item<T> head;
29 private Item<T> tail;
30 private Item<T> iter;
31 private Item<T> curr;
34 private final Pool<Item<T>> pool;
37 this.pool = new Pool<Item<T>>(16, maxPoolSize) {
39 protected Item<
[all...]
/external/llvm/tools/llvm-pdbdump/
H A DLinePrinter.cpp20 bool IsItemExcluded(llvm::StringRef Item, argument
23 if (Item.empty())
26 auto match_pred = [Item](llvm::Regex &R) { return R.match(Item); };
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb2/
H A Ditems.py9 class Item(object): class in inherits:object
26 Constructs an (unsaved) ``Item`` instance.
28 To persist the data in DynamoDB, you'll need to call the ``Item.save``
29 (or ``Item.partial_save``) on the instance.
36 of the fields & values of the item. Alternatively, an ``Item`` instance
46 >>> user = Item(users, data={
73 if isinstance(self._data, Item):
155 Returns whether or not the data has changed on the ``Item``.
184 Marks an ``Item`` instance as no longer needing to be saved.
202 DEPRECATED: Marks an ``Item`` instanc
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
H A Dorder.py36 class Item(IObject): class in inherits:IObject
169 item = Item()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/mws/
H A Dtest_response.py22 Item = Element(Test9one) variable in class:TestMWSResponse.test_parsing_nested_elements.Test9Result
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()))
48 Item = MemberList(SimpleList) variable in class:TestMWSResponse.test_parsing_member_list_specification.Test8Result
52 <Item>
57 </Item>
76 Item = MemberList(Nest=MemberList(), variable in class:TestMWSResponse.test_parsing_nested_lists.Test7Result
145 Item = MemberList() variable in class:TestMWSResponse.test_parsing_member_list.Test6Result
167 Item = MemberList(Nest=MemberList()) variable in class:TestMWSResponse.test_parsing_empty_member_list.Test5Result
177 Item = MemberList(NestedItem=MemberList()) variable in class:TestMWSResponse.test_parsing_missing_member_list.Test4Result
186 Item = ElementList() variable in class:TestMWSResponse.test_parsing_element_lists.Test1Result
202 Item = ElementList() variable in class:TestMWSResponse.test_parsing_missing_lists.Test2Result
211 Item = SimpleList() variable in class:TestMWSResponse.test_parsing_simple_lists.Test3Result
[all...]

Completed in 803 milliseconds

1234