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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_list.h 34 void * Item;
39 struct rc_list * rc_list(struct memory_pool * pool, void * item);
  /external/pdfium/xfa/fxfa/parser/
cxfa_attachnodelist.cpp 44 CXFA_Node* CXFA_AttachNodeList::Item(size_t index) {
cxfa_arraynodelist.cpp 51 CXFA_Node* CXFA_ArrayNodeList::Item(size_t index) {
  /developers/build/prebuilts/gradle/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/
Item.java 18 public interface Item {
  /developers/samples/android/wearable/wear/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/
Item.java 18 public interface Item {
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIAEnumLineNumbers.cpp 28 CComPtr<IDiaLineNumber> Item;
29 if (S_OK != Enumerator->Item(Index, &Item))
32 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
36 CComPtr<IDiaLineNumber> Item;
38 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
41 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
DIAEnumSourceFiles.cpp 28 CComPtr<IDiaSourceFile> Item;
29 if (S_OK != Enumerator->Item(Index, &Item))
32 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
36 CComPtr<IDiaSourceFile> Item;
38 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
41 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
DIAEnumSymbols.cpp 29 CComPtr<IDiaSymbol> Item;
30 if (S_OK != Enumerator->Item(Index, &Item))
33 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
38 CComPtr<IDiaSymbol> Item;
40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
43 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
DIAEnumDebugStreams.cpp 28 CComPtr<IDiaEnumDebugStreamData> Item;
32 if (S_OK != Enumerator->Item(VarIndex, &Item))
35 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
39 CComPtr<IDiaEnumDebugStreamData> Item;
41 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
44 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
  /external/tensorflow/tensorflow/core/framework/
op_segment.h 66 struct Item {
69 ~Item();
72 // session handle -> item.
74 typedef std::unordered_map<string, Item*> SessionMap;
  /external/tensorflow/tensorflow/python/grappler/
item.py 27 class Item(object):
34 """Creates an Item.
  /frameworks/support/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/
Item.java 23 * Sample item.
25 class Item {
31 Item(int id, String text, int bgColor) {
42 Item item = (Item) o;
43 return this.id == item.id
44 && this.bgColor == item.bgColor
45 && this.text.equals(item.text);
48 static final DiffUtil.ItemCallback<Item> DIFF_CALLBACK = new DiffUtil.ItemCallback<Item>()
    [all...]
  /prebuilts/go/darwin-x86/src/container/heap/
example_pq_test.go 13 // An Item is something we manage in a priority queue.
14 type Item struct {
15 value string // The value of the item; arbitrary.
16 priority int // The priority of the item in the queue.
18 index int // The index of the item in the heap.
22 type PriorityQueue []*Item
39 item := x.(*Item)
40 item.index = n
41 *pq = append(*pq, item)
    [all...]
  /prebuilts/go/darwin-x86/test/ken/
rob1.go 11 type Item interface {
16 item Item
28 func (list *List) Insert(i Item) {
29 item := new(ListItem)
30 item.item = i
31 item.next = list.head
32 list.head = item
39 r += i.item.Print(
    [all...]
  /prebuilts/go/linux-x86/src/container/heap/
example_pq_test.go 13 // An Item is something we manage in a priority queue.
14 type Item struct {
15 value string // The value of the item; arbitrary.
16 priority int // The priority of the item in the queue.
18 index int // The index of the item in the heap.
22 type PriorityQueue []*Item
39 item := x.(*Item)
40 item.index = n
41 *pq = append(*pq, item)
    [all...]
  /prebuilts/go/linux-x86/test/ken/
rob1.go 11 type Item interface {
16 item Item
28 func (list *List) Insert(i Item) {
29 item := new(ListItem)
30 item.item = i
31 item.next = list.head
32 list.head = item
39 r += i.item.Print(
    [all...]
  /system/bt/osi/test/
leaky_bonded_queue_test.cc 35 class Item {
37 Item(int i) { index = i; }
38 virtual ~Item() {}
42 class MockItem : public Item {
44 MockItem(int i) : Item(i) {}
  /build/make/tools/releasetools/
test_blockimgdiff.py 29 class Item(object):
34 item1 = HeapItem(self.Item(15))
35 item2 = HeapItem(self.Item(20))
36 item3 = HeapItem(self.Item(15))
50 item = HeapItem(self.Item(15))
51 self.assertTrue(item)
53 item.clear()
54 self.assertFalse(item)
  /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
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/
Console.c 40 * Remove the above item if below is un-commented.
87 * Remove the above item if below is un-commented.
119 * Remove the above item if below is un-commented.
142 * Remove the above item if below is un-commented.
164 * Remove the above item if below is un-commented.
216 UNICODE_WIDTH_ENTRY *Item;
218 Item = NULL;
223 Item = &(mUnicodeWidthTable[Index]);
225 if (UnicodeChar <= Item->WChar) {
232 if (UnicodeChar > Item->WChar) {
    [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 extern constexpr Item items[] = {
23 item<A>("A"), item<B>("B"), item<C>("C"), item<int>("int")
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Item.java 18 public class Item {
23 public Item(String id) {
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
FormatCommon.h 38 SmallString<64> Item;
39 raw_svector_ostream Stream(Item);
42 if (Amount <= Item.size()) {
43 S << Item;
47 size_t PadAmount = Amount - Item.size();
50 S << Item;
56 S << Item;
62 S << Item;
FormatVariadicDetails.h 31 T Item;
34 explicit provider_format_adapter(T &&Item) : Item(Item) {}
37 format_provider<typename std::decay<T>::type>::format(Item, S, Options);
92 build_format_adapter(T &&Item) {
93 return std::forward<T>(Item);
99 build_format_adapter(T &&Item) {
100 return provider_format_adapter<T>(std::forward<T>(Item));
106 build_format_adapter(T &&Item) {
    [all...]

Completed in 779 milliseconds

1 2 3 4 5 6 7 8 91011>>