HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 101 - 125 of 526) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SetObjectTest.java 74 ScriptField__set_object_element_input.Item mItem = new ScriptField__set_object_element_input.Item();
94 ScriptField__set_object_type_input.Item mItem = new ScriptField__set_object_type_input.Item();
117 ScriptField__set_object_allocation_input.Item mItem = new ScriptField__set_object_allocation_input.Item();
139 ScriptField__set_object_sampler_input.Item mItem = new ScriptField__set_object_sampler_input.Item();
161 ScriptField__set_object_script_input.Item mItem = new ScriptField__set_object_script_input.Item();
    [all...]
StructFieldTest.java 32 private ScriptField_InnerOne.Item makeInnerOne() {
33 ScriptField_InnerOne.Item innerOne = new ScriptField_InnerOne.Item();
40 private ScriptField_InnerTwo.Item makeInnerTwo() {
41 ScriptField_InnerTwo.Item innerTwo = new ScriptField_InnerTwo.Item();
50 ScriptField_Outer.Item outer = new ScriptField_Outer.Item();
  /external/tensorflow/tensorflow/contrib/nearest_neighbor/kernels/
heap.h 36 class Item {
41 Item() {}
42 Item(const KeyType& k, const DataType& d) : key(k), data(d) {}
44 bool operator<(const Item& i2) const { return key < i2.key; }
63 v_.push_back(Item(key, data));
73 v_.push_back(Item(key, data));
101 Item tmp = v_[a];
142 std::vector<Item> v_;
158 std::vector<typename HeapBase<KeyType, DataType>::Item>& GetData() {
201 typename HeapBase<KeyType, DataType>::Item guaranteed_top_
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringMap.h 55 /// ItemBucket - The hash table consists of an array of these. If Item is
62 /// Item - This is a pointer to the actual item object.
63 StringMapEntryBase *Item;
84 /// up in. If it already exists as a key in the map, the Item pointer for the
153 // Okay, the item doesn't already exist, and 'Bucket' is the bucket to fill
154 // in. Allocate a new item with space for the string at the end and a null
221 // Free memory referenced by the item.
324 if (Bucket.Item && Bucket.Item != getTombstoneVal()
    [all...]
  /external/tensorflow/tensorflow/core/framework/
op_segment.cc 28 OpSegment::Item::~Item() {
43 auto item = gtl::FindPtrOrNull(sessions_, session_handle); local
44 if (item == nullptr) {
47 *kernel = gtl::FindPtrOrNull(item->name_kernel, node_name);
59 auto item = gtl::FindPtrOrNull(sessions_, session_handle); local
60 if (item == nullptr) {
63 OpKernel** p_kernel = &(item->name_kernel[node_name]);
76 Item** item = &sessions_[session_handle] local
85 Item* item = nullptr; local
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter.cc 375 ProtoStreamObjectWriter::Item::Item(ProtoStreamObjectWriter* enclosing,
389 ProtoStreamObjectWriter::Item::Item(ProtoStreamObjectWriter::Item* parent,
403 bool ProtoStreamObjectWriter::Item::InsertMapKeyIfNotPresent(
415 // Starting the root message. Create the root Item and return.
420 current_.reset(new Item(
421 this, master_type_.name() == kAnyType ? Item::ANY : Item::MESSAGE
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfGuidPpiProtocolSectionParser.py 110 for Item in self.LastSectionHeaderContent:
111 LineIndex = Item[3]
112 if Item[1] not in ArchList:
113 ArchList.append(Item[1])
195 for Item in self.LastSectionHeaderContent:
196 LineIndex = Item[3]
197 if Item[1] not in ArchList:
198 ArchList.append(Item[1])
232 for Item in self.LastSectionHeaderContent:
233 UserId = Item[1]
    [all...]
InfPackageSectionParser.py 82 for Item in HeaderComments:
83 LineCommentContent += Item[0] + DT.END_OF_LINE
130 for Item in self.LastSectionHeaderContent:
131 if Item[1] not in ArchList:
132 ArchList.append(Item[1])
140 Line=Item[3])
InfBinarySectionParser.py 105 for Item in HeaderComments:
106 LineCommentContent += Item[0] + DT.END_OF_LINE
157 for Item in TokenList:
158 NewValueList.append(Item)
174 for Item in TokenList:
175 NewValueList.append(Item)
192 for Item in TokenList:
193 NewValueList.append(Item)
217 for Item in self.LastSectionHeaderContent:
218 if Item[1] not in ArchList:
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Parsing.py 48 for Item in RecordSets[Key]:
49 Item[0] = ReplaceMacro(Item[0], Macros)
101 # Search item of section [Defines] by name, return its values
104 # @param Name: The Name of item of section [Defines]
105 # @param Arch: The Arch of item of section [Defines]
139 for Item in Items:
140 RetVal.append(Item)
145 # Search item of section [Defines] by name, return its values
148 # @param Name: The Name of item of section [Defines]
    [all...]
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
MainActivity.java 37 * user clicks on an item, {@link DetailActivity} is launched, using the Activity Scene Transitions
58 * Called when an item in the {@link android.widget.GridView} is clicked. Here will launch the
63 Item item = (Item) adapterView.getItemAtPosition(position); local
67 intent.putExtra(DetailActivity.EXTRA_PARAM_ID, item.getId());
97 return Item.ITEMS.length;
101 public Item getItem(int position) {
102 return Item.ITEMS[position];
116 final Item item = getItem(position) local
    [all...]
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
MainActivity.java 37 * user clicks on an item, {@link DetailActivity} is launched, using the Activity Scene Transitions
58 * Called when an item in the {@link android.widget.GridView} is clicked. Here will launch the
63 Item item = (Item) adapterView.getItemAtPosition(position); local
67 intent.putExtra(DetailActivity.EXTRA_PARAM_ID, item.getId());
97 return Item.ITEMS.length;
101 public Item getItem(int position) {
102 return Item.ITEMS[position];
116 final Item item = getItem(position) local
    [all...]
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
MainActivity.java 37 * user clicks on an item, {@link DetailActivity} is launched, using the Activity Scene Transitions
58 * Called when an item in the {@link android.widget.GridView} is clicked. Here will launch the
63 Item item = (Item) adapterView.getItemAtPosition(position); local
67 intent.putExtra(DetailActivity.EXTRA_PARAM_ID, item.getId());
97 return Item.ITEMS.length;
101 public Item getItem(int position) {
102 return Item.ITEMS[position];
116 final Item item = getItem(position) local
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
graph_mgr.h 119 struct Item : public core::RefCounted {
123 ~Item() override;
163 std::unordered_map<string, Item*> table_;
165 void StartParallelExecutors(const string& handle, int64 step_id, Item* item,
177 void BuildCostModel(Item* item, StepStatsCollector* collector,
183 DistributedFunctionLibraryRuntime* cluster_flr, Item* item);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Parsing.py 76 # @param Item: String as <LibraryClassKeyWord>|<LibraryInstance>
80 def GetLibraryClass(Item, ContainerFile, WorkspaceDir, LineNo= -1):
81 List = GetSplitValueList(Item[0])
84 RaiseParserError(Item[0], 'LibraryClasses', ContainerFile, \
88 'library class instance', Item[0], LineNo)
90 'LibraryClasses', Item[0], LineNo)
91 if Item[1] != '':
92 SupMod = Item[1]
101 # @param Item: String as <LibraryClassKeyWord>|<LibraryInstance>
105 def GetLibraryClassOfInf(Item, ContainerFile, WorkspaceDir, LineNo= -1):
    [all...]
  /external/v8/tools/
gc-nvp-trace-processor.py 60 class Item(object):
91 return flatten([item.fieldrefs() for item in self.items])
94 return 'plot ' + ', '.join([item.to_gnuplot(ctx) for item in self.items])
123 for field in flatten([item.fieldrefs() for item in plot]):
131 for item in subplot.items:
132 if item.axis == x1y2 or item.axis == x2y2
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_util.h 153 class Item
156 Item(void *priv) : next(this), prev(this), data(priv) { }
159 Item *next;
160 Item *prev;
169 Item *item = new Item(data); local
173 item->prev = &head;
174 item->next = head.next;
175 head.next->prev = item;
181 Item *item = new Item(data); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_rematerialization.cc 55 // . Cache IsRematerializable in Item? Only correct if control
103 // We wrap HloInstruction* with an Item that holds auxiliary
105 struct Item {
127 Item* next;
128 Item* prev;
136 using ItemList = absl::InlinedVector<Item*, 3>;
144 Item* last = nullptr;
146 // Add a new item to the linked list.
147 Item* item = new Item local
189 Item* item = new Item; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/Xml/
XmlRoutines.py 36 for Item in NodeList:
37 if type(Item) == type([]):
38 Key = Item[0]
39 Value = Item[1]
45 Element.appendChild(Item)
46 for Item in AttributeList:
47 Key = Item[0]
48 Value = Item[1]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/Xml/
XmlRoutines.py 42 for Item in NodeList:
43 if type(Item) == type([]):
44 Key = Item[0]
45 Value = Item[1]
51 Element.appendChild(Item)
52 for Item in AttributeList:
53 Key = Item[0]
54 Value = Item[1]
  /external/cldr/tools/java/org/unicode/cldr/draft/
JsonConverter.java 61 final Item main = new TableItem(null);
73 Item current = main;
81 Item temp = current.makeSubItem(element, Item.Type.unorderedItem);
88 actualAttributeKeys.containsKey("_q") ? Item.Type.orderedItem : Item.Type.unorderedItem);
241 static abstract class Item {
242 protected Item parent;
244 public Item(Item parent)
    [all...]
Rule.java 12 private final List<Item> results = new ArrayList<Item>();
16 * Default is zero, meaning at the end of the replacement unless there is a CURSOR item.
27 public interface Item {
31 public static class StringItem implements Item {
47 public static class NumberedItem implements Item {
65 public static class CursorItem implements Item {
66 static Item CURSOR = new CursorItem();
113 for (Item item : results)
    [all...]
  /external/dynamic_depth/internal/dynamic_depth/
container.cc 24 LOG(ERROR) << "Namespace list is null or item list is empty";
32 std::vector<std::unique_ptr<Item>>* items) {
34 LOG(ERROR) << "Item list is empty";
40 // Purge item elements that are null.
44 [](const std::unique_ptr<Item>& item) { return item == nullptr; }),
63 std::unique_ptr<Item> item = Item::FromDeserializer(*deserializer) local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
Formatters.cpp 30 assert(Item.size() == 16 && "Expected 16-byte GUID");
33 uint8_t Byte = Item[i];
RecordSerialization.cpp 127 Error llvm::codeview::consume(BinaryStreamReader &Reader, uint32_t &Item) {
128 return Reader.readInteger(Item);
131 Error llvm::codeview::consume(StringRef &Data, uint32_t &Item) {
135 auto EC = consume(SR, Item);
140 Error llvm::codeview::consume(BinaryStreamReader &Reader, int32_t &Item) {
141 return Reader.readInteger(Item);
144 Error llvm::codeview::consume(BinaryStreamReader &Reader, StringRef &Item) {
149 return Reader.readCString(Item);

Completed in 1750 milliseconds

1 2 3 45 6 7 8 91011>>