/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/ |
D | DexAnnotator.java | 56 ItemType.MAP_LIST, 58 ItemType.HEADER_ITEM, 59 ItemType.STRING_ID_ITEM, 60 ItemType.TYPE_ID_ITEM, 61 ItemType.PROTO_ID_ITEM, 62 ItemType.FIELD_ID_ITEM, 63 ItemType.METHOD_ID_ITEM, 66 ItemType.CLASS_DEF_ITEM, 67 ItemType.CLASS_DATA_ITEM, 68 ItemType.CODE_ITEM, [all …]
|
/external/autotest/client/site_tests/webstore_InstallItem/ |
D | webstore_InstallItem.py | 5 from autotest_lib.client.cros.webstore_test import ItemType 20 if item_type != ItemType.extension and item_type != ItemType.theme:
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectwriter.h | 185 enum ItemType { enum 192 Item(ProtoStreamObjectWriter* enclosing, ItemType item_type, 196 Item(Item* parent, ItemType item_type, bool is_placeholder, bool is_list); 230 ItemType item_type_; 306 void Push(StringPiece name, Item::ItemType item_type, bool is_placeholder,
|
/external/perfetto/src/traced/probes/filesystem/ |
D | lru_inode_cache.h | 42 using ItemType = std::pair<const InodeKey, InodeMapValue>; 43 using ListIteratorType = std::list<ItemType>::iterator; 50 std::list<ItemType> list_;
|
/external/autotest/client/cros/ |
D | webstore_test.py | 48 ItemType = enum( variable 86 if item_type == ItemType.hosted_app: 217 item_id, ItemType.to_string[item_type], 227 if item_type == ItemType.extension or item_type == ItemType.theme:
|
/external/v8/src/heap/ |
D | item-parallel-job.h | 82 template <class ItemType> 83 ItemType* GetItem() { in GetItem() 91 return static_cast<ItemType*>(item); in GetItem()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | DexWriter.java | 1243 writeMapItem(writer, ItemType.HEADER_ITEM, 1, 0); 1244 …writeMapItem(writer, ItemType.STRING_ID_ITEM, stringSection.getItems().size(), stringIndexSectionO… 1245 … writeMapItem(writer, ItemType.TYPE_ID_ITEM, typeSection.getItems().size(), typeSectionOffset); 1246 … writeMapItem(writer, ItemType.PROTO_ID_ITEM, protoSection.getItems().size(), protoSectionOffset); 1247 … writeMapItem(writer, ItemType.FIELD_ID_ITEM, fieldSection.getItems().size(), fieldSectionOffset); 1248 …writeMapItem(writer, ItemType.METHOD_ID_ITEM, methodSection.getItems().size(), methodSectionOffset… 1249 …writeMapItem(writer, ItemType.CLASS_DEF_ITEM, classSection.getItems().size(), classIndexSectionOff… 1252 …writeMapItem(writer, ItemType.STRING_DATA_ITEM, stringSection.getItems().size(), stringDataSection… 1253 …writeMapItem(writer, ItemType.TYPE_LIST, typeListSection.getItems().size(), typeListSectionOffset); 1254 …writeMapItem(writer, ItemType.ENCODED_ARRAY_ITEM, numEncodedArrayItems, encodedArraySectionOffset); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/ |
D | TGParser.cpp | 882 Init *TGParser::ParseOperation(Record *CurRec, RecTy *ItemType) { in ParseOperation() argument 1096 ArgType = ItemType; in ParseOperation() 1104 if (Type && ItemType && !Type->typeIsConvertibleTo(ItemType)) { in ParseOperation() 1106 ItemType->getAsString() + "', got '" + in ParseOperation() 1246 if (ItemType) { in ParseOperation() 1247 if (ListRecTy *OutListTy = dyn_cast<ListRecTy>(ItemType)) { in ParseOperation() 1251 "expected value of type '" + Twine(ItemType->getAsString()) + in ParseOperation() 1258 if (ItemType && !isa<DagRecTy>(ItemType)) { in ParseOperation() 1260 "expected value of type '" + Twine(ItemType->getAsString()) + in ParseOperation() 1320 ItemType = nullptr; in ParseOperation() [all …]
|
D | TGParser.h | 181 Init *ParseSimpleValue(Record *CurRec, RecTy *ItemType = nullptr, 183 Init *ParseValue(Record *CurRec, RecTy *ItemType = nullptr, 195 Init *ParseOperation(Record *CurRec, RecTy *ItemType);
|
/external/icu/icu4c/packaging/ |
D | distrelease.ps1 | 32 New-Item -Path "$icuDir\source\dist" -ErrorAction SilentlyContinue -ItemType "directory" 35 New-Item -Path $source -ItemType "directory" -ErrorAction SilentlyContinue
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | MapItem.java | 62 return ItemType.getItemTypeName(getType()); in getName() 83 out.annotate(2, "type = 0x%x: %s", itemType, ItemType.getItemTypeName(itemType)); in makeAnnotator()
|
D | ClassDefItem.java | 61 classDataAnnotator = annotator.getAnnotator(ItemType.CLASS_DATA_ITEM); in makeAnnotator() 128 MapItem mapItem = dexFile.getMapItemForSection(ItemType.CLASS_DEF_ITEM); in getClasses()
|
D | ItemType.java | 36 public class ItemType { class
|
D | TypeIdItem.java | 79 MapItem mapItem = dexFile.getMapItemForSection(ItemType.TYPE_ID_ITEM);
|
D | MethodIdItem.java | 96 MapItem mapItem = dexFile.getMapItemForSection(ItemType.METHOD_ID_ITEM);
|
D | FieldIdItem.java | 96 MapItem mapItem = dexFile.getMapItemForSection(ItemType.FIELD_ID_ITEM);
|
/external/llvm/lib/TableGen/ |
D | TGParser.h | 173 Init *ParseSimpleValue(Record *CurRec, RecTy *ItemType = nullptr, 175 Init *ParseValue(Record *CurRec, RecTy *ItemType = nullptr, 185 Init *ParseOperation(Record *CurRec, RecTy *ItemType);
|
D | TGParser.cpp | 764 Init *TGParser::ParseOperation(Record *CurRec, RecTy *ItemType) { in ParseOperation() argument 997 Init *MHS = ParseValue(CurRec, ItemType); in ParseOperation() 1007 Init *RHS = ParseValue(CurRec, ItemType); in ParseOperation() 1133 Init *TGParser::ParseSimpleValue(Record *CurRec, RecTy *ItemType, in ParseSimpleValue() argument 1142 return ParseSimpleValue(CurRec, ItemType, Mode); in ParseSimpleValue() 1309 if (ItemType) { in ParseSimpleValue() 1310 ListRecTy *ListType = dyn_cast<ListRecTy>(ItemType); in ParseSimpleValue() 1313 ItemType->getAsString()); in ParseSimpleValue() 1379 if (!ItemType) { in ParseSimpleValue() 1449 return ParseOperation(CurRec, ItemType); in ParseSimpleValue() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | peers.cpp | 122 QString Peers::ItemType(int type) in ItemType() function in Peers 183 menu->addAction(Peers::ItemType(type))->setEnabled(false); in context_menu() 448 item->setToolTip(ItemType(PEER_TYPE_ASSOCIATED_STATION)); in add_station() 553 item->setToolTip(ItemType(PEER_TYPE_P2P_CLIENT)); in add_p2p_group_client() 635 item->setToolTip(ItemType(type)); in add_bss() 700 item->setToolTip(ItemType(type)); in add_persistent() 856 item->setToolTip(ItemType(PEER_TYPE_WPS_PIN_NEEDED)); in event_notify() 938 item->setToolTip(ItemType(PEER_TYPE_P2P)); in event_notify() 984 item->setToolTip(ItemType(PEER_TYPE_P2P_GROUP)); in event_notify() 1086 item->setToolTip(ItemType(PEER_TYPE_P2P_INVITATION)); in event_notify() [all …]
|
D | peers.h | 75 QString ItemType(int type);
|
/external/skqp/third_party/vulkanmemoryallocator/include/ |
D | vk_mem_alloc.h | 3173 typedef VmaListItem<T> ItemType; typedef 3182 ItemType* Front() { return m_pFront; } in Front() 3183 const ItemType* Front() const { return m_pFront; } in Front() 3184 ItemType* Back() { return m_pBack; } in Back() 3185 const ItemType* Back() const { return m_pBack; } in Back() 3187 ItemType* PushBack(); 3188 ItemType* PushFront(); 3189 ItemType* PushBack(const T& value); 3190 ItemType* PushFront(const T& value); 3195 ItemType* InsertBefore(ItemType* pItem); [all …]
|
/external/skia/third_party/vulkanmemoryallocator/include/ |
D | vk_mem_alloc.h | 3173 typedef VmaListItem<T> ItemType; typedef 3182 ItemType* Front() { return m_pFront; } in Front() 3183 const ItemType* Front() const { return m_pFront; } in Front() 3184 ItemType* Back() { return m_pBack; } in Back() 3185 const ItemType* Back() const { return m_pBack; } in Back() 3187 ItemType* PushBack(); 3188 ItemType* PushFront(); 3189 ItemType* PushBack(const T& value); 3190 ItemType* PushFront(const T& value); 3195 ItemType* InsertBefore(ItemType* pItem); [all …]
|
/external/swiftshader/third_party/LLVM/lib/TableGen/ |
D | TGParser.h | 118 Init *ParseSimpleValue(Record *CurRec, RecTy *ItemType = 0); 119 Init *ParseValue(Record *CurRec, RecTy *ItemType = 0);
|
D | TGParser.cpp | 1044 Init *TGParser::ParseSimpleValue(Record *CurRec, RecTy *ItemType) { in ParseSimpleValue() argument 1153 if (ItemType != 0) { in ParseSimpleValue() 1154 ListRecTy *ListType = dynamic_cast<ListRecTy*>(ItemType); in ParseSimpleValue() 1158 << ItemType->getAsString(); in ParseSimpleValue() 1227 if (ItemType == 0) { in ParseSimpleValue() 1308 Init *TGParser::ParseValue(Record *CurRec, RecTy *ItemType) { in ParseValue() argument 1309 Init *Result = ParseSimpleValue(CurRec, ItemType); in ParseValue() 1417 RecTy *ItemType = EltTy; in ParseValueList() local 1427 ItemType = RV->getType(); in ParseValueList() 1430 Result.push_back(ParseValue(CurRec, ItemType)); in ParseValueList() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | pattern_matcher.h | 264 template <typename ItemType, size_t index> 265 bool MatchImpl(ItemType* item, MatchOption option, 273 template <typename ItemType> 274 bool MatchImpl(ItemType* item, MatchOption option, 540 template <typename ItemType> 541 bool MatchImpl(ItemType* item, MatchOption option) const { 557 template <typename ItemType, size_t index> 558 bool MatchRecursiveImpl(ItemType* item, MatchOption option, 603 template <typename ItemType> 605 ItemType* item, MatchOption option,
|