/external/antlr/runtime/Cpp/include/ |
D | antlr3baserecognizer.hpp | 53 typedef typename StreamType::UnitType UnitType; typedef in BaseRecognizer 101 const UnitType* match(ANTLR_UINT32 ttype, BitsetListType* follow); 382 const UnitType* recoverFromMismatchedToken( ANTLR_UINT32 ttype, BitsetListType* follow); 387 const UnitType* recoverFromMismatchedSet(BitsetListType* follow); 452 const UnitType* getCurrentInputSymbol(IntStreamType* istream); 453 const UnitType* getCurrentInputSymbol(IntStreamType* istream, ClassForwarder<LexerType>); 454 const UnitType* getCurrentInputSymbol(IntStreamType* istream, ClassForwarder<ParserType>); 455 const UnitType* getCurrentInputSymbol(IntStreamType* istream, ClassForwarder<TreeParserType>); 476 UnitType* getMissingSymbol( IntStreamType* istream, ExceptionBaseType* e,
|
D | antlr3input.hpp | 57 typedef typename ImplTraits::StreamDataType UnitType; typedef in InputStream 58 typedef UnitType DataType; 59 typedef UnitType TokenType;
|
D | antlr3baserecognizer.inl | 55 const typename BaseRecognizer<ImplTraits, StreamType>::UnitType* 63 const UnitType* matchedSymbol = this->getCurrentInputSymbol(is); 417 const typename BaseRecognizer<ImplTraits, StreamType>::UnitType* 422 const UnitType* matchedSymbol; 508 const typename BaseRecognizer<ImplTraits, StreamType>::UnitType* 513 const UnitType* matchedSymbol; 757 const typename BaseRecognizer<ImplTraits, StreamType>::UnitType* 764 const typename BaseRecognizer<ImplTraits, StreamType>::UnitType* 771 const typename BaseRecognizer<ImplTraits, StreamType>::UnitType* 780 const typename BaseRecognizer<ImplTraits, StreamType>::UnitType* [all …]
|
D | antlr3commontreenodestream.hpp | 53 typedef TreeType UnitType; typedef in CommonTreeNodeStream
|
D | antlr3exception.hpp | 57 typedef typename StreamType::UnitType TokenType;
|
D | antlr3recognizersharedstate.hpp | 59 typedef typename StreamType::UnitType TokenType;
|
D | antlr3tokenstream.hpp | 146 typedef TokenType UnitType; typedef in TokenStream
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnit.h | 59 template<typename UnitType> 60 class DWARFUnitSection final : public SmallVector<std::unique_ptr<UnitType>, 1>, 65 typedef llvm::SmallVectorImpl<std::unique_ptr<UnitType>> UnitVector; 69 UnitType *getUnitForOffset(uint32_t Offset) const override { in getUnitForOffset() 72 [](uint32_t LHS, const std::unique_ptr<UnitType> &RHS) { in getUnitForOffset() 87 const auto &Index = getDWARFUnitIndex(Context, UnitType::Section); in parseImpl() 91 auto U = llvm::make_unique<UnitType>(Context, Section, DA, RS, SS, SOS, in parseImpl()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnit.h | 66 uint8_t UnitType = 0; variable 96 uint8_t getUnitType() const { return UnitType; } in getUnitType() 98 return UnitType == dwarf::DW_UT_type || UnitType == dwarf::DW_UT_split_type; in isTypeUnit() 357 static bool isMatchingUnitTypeAndTag(uint8_t UnitType, dwarf::Tag Tag) { in isMatchingUnitTypeAndTag() argument 358 switch (UnitType) { in isMatchingUnitTypeAndTag() 379 static uint32_t getDWARF5HeaderSize(uint8_t UnitType) { in getDWARF5HeaderSize() argument 380 switch (UnitType) { in getDWARF5HeaderSize()
|
D | DWARFVerifier.h | 141 uint64_t *Offset, unsigned UnitIndex, uint8_t &UnitType,
|
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnit.h | 66 uint8_t UnitType = 0; variable 100 uint8_t getUnitType() const { return UnitType; } in getUnitType() 102 return UnitType == dwarf::DW_UT_type || UnitType == dwarf::DW_UT_split_type; in isTypeUnit() 359 static bool isMatchingUnitTypeAndTag(uint8_t UnitType, dwarf::Tag Tag) { in isMatchingUnitTypeAndTag() argument 360 switch (UnitType) { in isMatchingUnitTypeAndTag()
|
D | DWARFVerifier.h | 141 uint64_t *Offset, unsigned UnitIndex, uint8_t &UnitType,
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFVerifier.cpp | 102 uint8_t &UnitType, bool &isUnitDWARF64) { in verifyUnitHeader() argument 123 UnitType = DebugInfoData.getU8(Offset); in verifyUnitHeader() 126 ValidType = dwarf::isUnitType(UnitType); in verifyUnitHeader() 128 UnitType = 0; in verifyUnitHeader() 191 uint8_t UnitType = Unit.getUnitType(); in verifyUnitContents() local 192 if (!DWARFUnit::isMatchingUnitTypeAndTag(UnitType, Die.getTag())) { in verifyUnitContents() 193 error() << "Compilation unit type (" << dwarf::UnitTypeString(UnitType) in verifyUnitContents() 287 uint8_t UnitType = 0; in verifyUnitSection() local 295 if (!verifyUnitHeader(DebugInfoData, &Offset, UnitIdx, UnitType, in verifyUnitSection() 304 switch (UnitType) { in verifyUnitSection()
|
D | DWARFUnit.cpp | 274 UnitType = debug_info.getU8(offset_ptr, &Err); in extract() 285 UnitType = DW_UT_type; in extract() 287 UnitType = DW_UT_compile; in extract() 304 } else if (UnitType == DW_UT_split_compile || UnitType == DW_UT_skeleton) in extract()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 103 llvm::dwarf::UnitType Type; // Added in DWARF 5 288 template <> struct ScalarEnumerationTraits<dwarf::UnitType> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 289 static void enumeration(IO &io, dwarf::UnitType &value) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFVerifier.cpp | 104 uint8_t &UnitType, bool &isUnitDWARF64) { in verifyUnitHeader() argument 123 UnitType = DebugInfoData.getU8(Offset); in verifyUnitHeader() 126 ValidType = dwarf::isUnitType(UnitType); in verifyUnitHeader() 128 UnitType = 0; in verifyUnitHeader() 200 uint8_t UnitType = Unit.getUnitType(); in verifyUnitContents() local 201 if (!DWARFUnit::isMatchingUnitTypeAndTag(UnitType, Die.getTag())) { in verifyUnitContents() 202 error() << "Compilation unit type (" << dwarf::UnitTypeString(UnitType) in verifyUnitContents() 296 uint8_t UnitType = 0; in verifyUnitSection() local 304 if (!verifyUnitHeader(DebugInfoData, &Offset, UnitIdx, UnitType, in verifyUnitSection() 313 switch (UnitType) { in verifyUnitSection()
|
D | DWARFUnit.cpp | 240 UnitType = debug_info.getU8(offset_ptr, &Err); in extract() 251 UnitType = DW_UT_type; in extract() 253 UnitType = DW_UT_compile; in extract() 259 } else if (UnitType == DW_UT_split_compile || UnitType == DW_UT_skeleton) in extract()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | Dwarf.h | 367 enum UnitType : unsigned char { enum 381 inline bool isUnitType(uint8_t UnitType) { in isUnitType() argument 382 switch (UnitType) { in isUnitType()
|
/external/llvm-project/llvm/include/llvm/BinaryFormat/ |
D | Dwarf.h | 439 enum UnitType : unsigned char { enum 453 inline bool isUnitType(uint8_t UnitType) { in isUnitType() argument 454 switch (UnitType) { in isUnitType()
|
/external/llvm-project/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 114 llvm::dwarf::UnitType Type; // Added in DWARF 5 442 template <> struct ScalarEnumerationTraits<dwarf::UnitType> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 443 static void enumeration(IO &io, dwarf::UnitType &value) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/llvm-project/llvm/tools/llvm-dwp/ |
D | llvm-dwp.cpp | 156 auto UnitType = InfoData.getU8(&Offset); in getCUIdentifiers() local 157 if (UnitType != dwarf::DW_UT_split_compile) in getCUIdentifiers() 161 utostr(UnitType) + " found")); in getCUIdentifiers()
|
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.h | 294 void emitCommonHeader(bool UseOffsets, dwarf::UnitType UT);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.h | 306 void emitCommonHeader(bool UseOffsets, dwarf::UnitType UT);
|
/external/pdfium/fxjs/xfa/ |
D | cfxjse_formcalc_context.h | 188 static void UnitType(CFXJSE_Value* pThis,
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | dwarf2yaml.cpp | 218 NewUnit.Type = (dwarf::UnitType)CU->getUnitType(); in dumpDebugInfo()
|