/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | RecordSerialization.h | 56 Error consume(BinaryStreamReader &Reader, uint32_t &Item); 57 Error consume(BinaryStreamReader &Reader, int32_t &Item); 60 Error consume(BinaryStreamReader &Reader, StringRef &Item); 63 Error consume(StringRef &Data, uint32_t &Item); 67 template <typename T> Error consume(BinaryStreamReader &Reader, T *&Item) { in consume() argument 68 return Reader.readObject(Item); in consume() 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {} in serialize_conditional_impl() 77 return consume(Reader, Item); in deserialize() 80 T &Item; member 85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) { in serialize_conditional() argument [all …]
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | RecordSerialization.h | 64 std::error_code consume(ArrayRef<uint8_t> &Data, uint32_t &Item); 65 std::error_code consume(StringRef &Data, uint32_t &Item); 66 std::error_code consume(ArrayRef<uint8_t> &Data, int32_t &Item); 69 std::error_code consume(ArrayRef<uint8_t> &Data, StringRef &Item); 74 std::error_code consume(ArrayRef<uint8_t> &Data, T *&Item) { in consume() argument 75 return consumeObject(Data, Item); in consume() 79 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {} in serialize_conditional_impl() 84 return consume(Data, Item); in deserialize() 87 T &Item; member 92 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) { in serialize_conditional() argument [all …]
|
D | CVRecord.h | 32 CVRecord<Kind> &Item) const { 39 Item.Length = Prefix->RecordLen; 40 if (Item.Length < 2) 42 Item.Type = static_cast<Kind>(uint16_t(Prefix->RecordKind)); 46 Reader.readBytes(Item.RawData, Item.Length + sizeof(uint16_t))) 48 Item.Data = Item.RawData.slice(sizeof(RecordPrefix));
|
/external/deqp/executor/ |
D | xeTestCaseResult.hpp | 61 class Item; 92 const Item& getItem (int ndx) const { return *m_items[ndx]; } in getItem() 93 Item& getItem (int ndx) { return *m_items[ndx]; } in getItem() 99 std::vector<Item*> m_items; 107 m_items.push_back(static_cast<ri::Item*>(item)); in allocItem() 192 class Item class 196 virtual ~Item (void) {} in ~Item() 201 Item (Type type) : m_type(type) {} in Item() function in xe::ri::Item 204 Item (const Item& other); 205 Item& operator= (const Item& other); [all …]
|
/external/dynamic_depth/internal/dynamic_depth/ |
D | item.cc | 22 Item::Item(const ItemParams& params) : params_(params) {} in Item() function in dynamic_depth::Item 26 std::unique_ptr<Item> Item::FromDataInternal(const ItemParams& params, in FromDataInternal() 52 return std::unique_ptr<Item>(new Item(params)); // NOLINT in FromDataInternal() 55 void Item::GetNamespaces(std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() 61 ns_name_href_map->emplace(DynamicDepthConst::Item(), kNamespaceHref); in GetNamespaces() 64 std::unique_ptr<Item> Item::FromData(const ItemParams& params) { in FromData() 68 std::unique_ptr<Item> Item::FromDeserializer( in FromDeserializer() 72 DynamicDepthConst::Namespace(DynamicDepthConst::Item()), in FromDeserializer() 73 DynamicDepthConst::Item()); in FromDeserializer() 83 if (!deserializer->ParseString(DynamicDepthConst::Item(), kMime, &mime) || in FromDeserializer() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | FormatAdapters.h | 23 explicit FormatAdapter(T &&Item) : Item(std::forward<T>(Item)) {} in FormatAdapter() argument 25 T Item; variable 35 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) in AlignAdapter() argument 36 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount), in AlignAdapter() 40 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() 50 PadAdapter(T &&Item, size_t Left, size_t Right) in PadAdapter() argument 51 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter() 54 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() 65 RepeatAdapter(T &&Item, size_t Count) in RepeatAdapter() argument 66 : FormatAdapter<T>(std::forward<T>(Item)), Count(Count) {} in RepeatAdapter() [all …]
|
D | FormatVariadicDetails.h | 32 T Item; variable 35 explicit provider_format_adapter(T &&Item) : Item(std::forward<T>(Item)) {} in provider_format_adapter() argument 38 format_provider<typename std::decay<T>::type>::format(Item, S, Options); in format() 44 T Item; variable 47 explicit stream_operator_format_adapter(T &&Item) in stream_operator_format_adapter() argument 48 : Item(std::forward<T>(Item)) {} in stream_operator_format_adapter() 50 void format(llvm::raw_ostream &S, StringRef Options) override { S << Item; } in format() 130 build_format_adapter(T &&Item) { in build_format_adapter() argument 131 return std::forward<T>(Item); in build_format_adapter() 137 build_format_adapter(T &&Item) { in build_format_adapter() argument [all …]
|
/external/autotest/frontend/client/src/autotest/common/ui/ |
D | MultiListSelectPresenter.java | 48 public void onRemoveGeneratedItem(Item generatedItem); in onRemoveGeneratedItem() 51 public static class Item implements Comparable<Item> { class in MultiListSelectPresenter 59 private Item(String name, String value) { in Item() method in MultiListSelectPresenter.Item 64 public static Item createItem(String name, String value) { in createItem() 65 return new Item(name, value); in createItem() 68 public static Item createGeneratedItem(String name, String value) { in createGeneratedItem() 69 Item item = new Item(name, value); in createGeneratedItem() 74 public int compareTo(Item item) { in compareTo() 80 if (!(obj instanceof Item)) { in equals() 83 Item other = (Item) obj; in equals() [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | IceRegAlloc.cpp | 38 bool overlapsDefs(const Cfg *Func, const Variable *Item, const Variable *Var) { in overlapsDefs() argument 42 if (Item->getLiveRange().overlapsInst(FirstDef->getNumber(), UseTrimmed)) in overlapsDefs() 45 if (Item->getLiveRange().overlapsInst(Def->getNumber(), UseTrimmed)) in overlapsDefs() 451 Variable *Item = Active[Index]; in handleActiveRangeExpiredOrInactive() local 452 Item->trimLiveRange(Cur->getLiveRange().getStart()); in handleActiveRangeExpiredOrInactive() 454 if (Item->rangeEndsBefore(Cur)) { in handleActiveRangeExpiredOrInactive() 456 dumpLiveRangeTrace("Expiring ", Item); in handleActiveRangeExpiredOrInactive() 459 } else if (!Item->rangeOverlapsStart(Cur)) { in handleActiveRangeExpiredOrInactive() 461 dumpLiveRangeTrace("Inactivating ", Item); in handleActiveRangeExpiredOrInactive() 467 assert(Item->hasRegTmp()); in handleActiveRangeExpiredOrInactive() [all …]
|
/external/zlib/src/contrib/ada/ |
D | mtest.adb | 45 procedure Further (Item : in Stream_Element_Array); 48 (Item : out Ada.Streams.Stream_Element_Array; 55 procedure Further (Item : in Stream_Element_Array) is 57 procedure Compare (Item : in Stream_Element_Array); 63 procedure Compare (Item : in Stream_Element_Array) is 64 Next_First : Stream_Element_Offset := Compare_First + Item'Length; 66 if Buffer (Compare_First .. Next_First - 1) /= Item then 75 Compare_Write (Inflate, Item, No_Flush); 83 (Item : out Ada.Streams.Stream_Element_Array; 89 if Item'Length <= Buff_Diff then [all …]
|
D | read.adb | 65 (Item : out Stream_Element_Array; 82 (Item : out Stream_Element_Array; 86 (Item'Last, 87 Item'First + File_Size - Offset); 89 for J in Item'First .. Last loop 90 if J < Item'First + Period then 91 Item (J) := Random_Elements.Random (Gen); 93 Item (J) := Item (J - Period);
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectwriter.cc | 375 ProtoStreamObjectWriter::Item::Item(ProtoStreamObjectWriter* enclosing, in Item() function in google::protobuf::util::converter::ProtoStreamObjectWriter::Item 389 ProtoStreamObjectWriter::Item::Item(ProtoStreamObjectWriter::Item* parent, in Item() function in google::protobuf::util::converter::ProtoStreamObjectWriter::Item 403 bool ProtoStreamObjectWriter::Item::InsertMapKeyIfNotPresent( in InsertMapKeyIfNotPresent() 420 current_.reset(new Item( in StartObject() 421 this, master_type_.name() == kAnyType ? Item::ANY : Item::MESSAGE, in StartObject() 430 Push("fields", Item::MAP, true, true); in StartObject() 443 Push("struct_value", Item::MESSAGE, true, false); in StartObject() 444 Push("fields", Item::MAP, true, true); in StartObject() 482 Push("", Item::MESSAGE, false, false); in StartObject() 485 Push("value", Item::MESSAGE, true, false); in StartObject() [all …]
|
/external/v8/src/torque/ |
D | earley-parser.cc | 35 base::Optional<ParseResult> Rule::RunAction(const Item* completed_item, in RunAction() 38 for (const Item* child : completed_item->Children()) { in RunAction() 58 std::vector<const Item*> Item::Children() const { in Children() 59 std::vector<const Item*> children; in Children() 60 for (const Item* current = this; current->prev_; current = current->prev_) { in Children() 69 std::string Item::SplitByChildren(const LexerResult& tokens) const { in SplitByChildren() 71 if (const Item* child = Children()[0]) in SplitByChildren() 76 for (const Item* item : Children()) { in SplitByChildren() 85 void Item::CheckAmbiguity(const Item& other, const LexerResult& tokens) const { in CheckAmbiguity() 171 const Item* RunEarleyAlgorithm( in RunEarleyAlgorithm() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_list.h | 28 template<class Item> 40 void push_back(Item *x) { in push_back() 53 void push_front(Item *x) { in push_front() 73 Item *front() { return first_; } in front() 74 const Item *front() const { return first_; } in front() 75 Item *back() { return last_; } in back() 76 const Item *back() const { return last_; } in back() 78 void append_front(IntrusiveList<Item> *l) { in append_front() 92 void append_back(IntrusiveList<Item> *l) { in append_back() 112 for (Item *i = first_; ; i = i->next) { in CheckConsistency() [all …]
|
/external/smali/util/src/main/java/org/jf/util/ |
D | ImmutableConverter.java | 44 public abstract class ImmutableConverter<ImmutableItem, Item> { 45 protected abstract boolean isImmutable(@Nonnull Item item); in isImmutable() 46 @Nonnull protected abstract ImmutableItem makeImmutable(@Nonnull Item item); in makeImmutable() 49 public ImmutableList<ImmutableItem> toList(@Nullable final Iterable<? extends Item> iterable) { in toList() 56 for (Item element: iterable) { in toList() 70 final Iterator<? extends Item> iter = iterable.iterator(); in toList() 80 public ImmutableSet<ImmutableItem> toSet(@Nullable final Iterable<? extends Item> iterable) { 87 for (Item element: iterable) { 101 final Iterator<? extends Item> iter = iterable.iterator(); 112 … @Nullable final Iterable<? extends Item> iterable) { [all …]
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | StringMap.cpp | 46 TheTable[NumBuckets].Item = (StringMapEntryBase*)2; in init() 68 StringMapEntryBase *BucketItem = Bucket.Item; in LookupBucketFor() 122 StringMapEntryBase *BucketItem = Bucket.Item; in FindKey() 168 StringMapEntryBase *Result = TheTable[Bucket].Item; in RemoveKey() 169 TheTable[Bucket].Item = getTombstoneVal(); in RemoveKey() 198 NewTableArray[NewSize].Item = (StringMapEntryBase*)2; in RehashTable() 203 if (IB->Item && IB->Item != getTombstoneVal()) { in RehashTable() 207 if (NewTableArray[NewBucket].Item == 0) { in RehashTable() 208 NewTableArray[FullHash & (NewSize-1)].Item = IB->Item; in RehashTable() 217 } while (NewTableArray[NewBucket].Item); in RehashTable() [all …]
|
/external/v8/tools/ |
D | gc-nvp-trace-processor.py | 60 class Item(object): class 208 Plot(Item('Scavenge', scavenge_scope, lc = 'green'), 209 Item('Marking', 'mark', lc = 'purple'), 210 Item('Sweep', 'sweep', lc = 'blue'), 211 Item('External', 'external', lc = '#489D43'), 212 Item('Other', other_scope, lc = 'grey'), 213 Item('IGC Steps', 'steps_took', lc = '#FF6347')) 219 Plot(Item('Scavenge', scavenge_scope, lc = 'green'), 220 Item('Marking', 'mark', lc = 'purple'), 221 Item('Sweep', 'sweep', lc = 'blue'), [all …]
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | JsonConverter.java | 61 final Item main = new TableItem(null); in main() 73 Item current = main; in main() 81 Item temp = current.makeSubItem(element, Item.Type.unorderedItem); in main() 88 … actualAttributeKeys.containsKey("_q") ? Item.Type.orderedItem : Item.Type.unorderedItem); in main() 241 static abstract class Item { class in JsonConverter 242 protected Item parent; 244 public Item(Item parent) { in Item() method in JsonConverter.Item 316 protected Item create(Type ordered) { in create() 327 public abstract Item makeSubItem(String element, Type ordered); in makeSubItem() 331 public Item getRoot() { in getRoot() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_rematerialization.cc | 105 struct Item { struct 127 Item* next; argument 128 Item* prev; argument 136 using ItemList = absl::InlinedVector<Item*, 3>; 144 Item* last = nullptr; in InstructionList() 147 Item* item = new Item; in InstructionList() 172 for (Item* item = first_; item != nullptr;) { in ~InstructionList() 173 Item* next = item->next; in ~InstructionList() 183 Item* first() const { return first_; } in first() 184 Item* next(Item* item) const { return item->next; } in next() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
D | DebugCrossImpSubsection.cpp | 28 codeview::CrossModuleImportItem &Item) { in operator ()() argument 34 if (auto EC = Reader.readObject(Item.Header)) in operator ()() 36 if (Reader.bytesRemaining() < Item.Header->Count * sizeof(uint32_t)) in operator ()() 40 if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count)) in operator ()() 66 for (const auto &Item : Mappings) { in calculateSerializedSize() local 68 Size += sizeof(support::ulittle32_t) * Item.second.size(); in calculateSerializedSize() 87 for (const auto &Item : Ids) { in commit() local 89 Imp.ModuleNameOffset = Strings.getIdForString(Item->getKey()); in commit() 90 Imp.Count = Item->getValue().size(); in commit() 93 if (auto EC = Writer.writeArray(makeArrayRef(Item->getValue()))) in commit()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_util.h | 153 class Item 156 Item(void *priv) : next(this), prev(this), data(priv) { } in Item() function 159 Item *next; 160 Item *prev; 169 Item *item = new Item(data); in insertHead() 181 Item *item = new Item(data); in insertTail() 195 Iterator(Item *head, bool r) : rev(r), pos(r ? head->prev : head->next), in Iterator() 211 Item *pos; 212 Item *term; 233 Item head; [all …]
|
/external/pdfium/xfa/fwl/ |
D | cfwl_widgetmgr.h | 70 class Item { 72 Item(); 73 explicit Item(CFWL_Widget* widget); 74 ~Item(); 76 Item* pParent; 77 Item* pOwner; 78 Item* pChild; 79 Item* pPrevious; 80 Item* pNext; 92 Item* GetWidgetMgrItem(CFWL_Widget* pWidget) const; [all …]
|
D | cfwl_widgetmgr.cpp | 35 m_mapWidgetItem[nullptr] = pdfium::MakeUnique<Item>(); in CFWL_WidgetMgr() 44 Item* pItem = GetWidgetMgrItem(pWidget); in GetParentWidget() 49 Item* pItem = GetWidgetMgrItem(pWidget); in GetOwnerWidget() 54 Item* pItem = GetWidgetMgrItem(pWidget); in GetFirstSiblingWidget() 65 Item* pItem = GetWidgetMgrItem(pWidget); in GetPriorSiblingWidget() 70 Item* pItem = GetWidgetMgrItem(pWidget); in GetNextSiblingWidget() 75 Item* pItem = GetWidgetMgrItem(pWidget); in GetFirstChildWidget() 80 Item* pItem = GetWidgetMgrItem(pWidget); in GetLastChildWidget() 91 Item* pItem = GetWidgetMgrItem(pWidget); in GetSystemFormWidget() 101 Item* pItem = GetWidgetMgrItem(pWidget); in AppendWidget() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | FormatCommon.h | 38 SmallString<64> Item; in format() local 39 raw_svector_ostream Stream(Item); in format() 42 if (Amount <= Item.size()) { in format() 43 S << Item; in format() 47 size_t PadAmount = Amount - Item.size(); in format() 50 S << Item; in format() 56 S << Item; in format() 62 S << Item; in format()
|
/external/v8/src/heap/ |
D | item-parallel-job.h | 46 class V8_EXPORT_PRIVATE Item { 48 Item() = default; 49 virtual ~Item() = default; 68 DISALLOW_COPY_AND_ASSIGN(Item); 89 Item* item = (*items_)[cur_index_++]; in GetItem() 99 friend class Item; variable 108 base::Semaphore* on_finish, std::vector<Item*>* items, 115 std::vector<Item*>* items_ = nullptr; 133 void AddItem(Item* item) { items_.push_back(item); } in AddItem() 143 std::vector<Item*> items_;
|