/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFUnit.h | 66 uint8_t UnitType = 0; variable 95 uint8_t getUnitType() const { return UnitType; } in getUnitType() 97 return UnitType == dwarf::DW_UT_type || UnitType == dwarf::DW_UT_split_type; in isTypeUnit() 132 template<typename UnitType> 133 class DWARFUnitSection final : public SmallVector<std::unique_ptr<UnitType>, 1>, 136 std::function<std::unique_ptr<UnitType>(uint32_t)> Parser; 139 using UnitVector = SmallVectorImpl<std::unique_ptr<UnitType>>; 143 UnitType *getUnitForOffset(uint32_t Offset) const override { in getUnitForOffset() 146 [](uint32_t LHS, const std::unique_ptr<UnitType> &RHS) { in getUnitForOffset() 153 UnitType *getUnitForIndexEntry(const DWARFUnitIndex::Entry &E) override { in getUnitForIndexEntry() [all …]
|
D | DWARFVerifier.h | 131 /// \param UnitType A reference to the type of the unit 137 uint32_t *Offset, unsigned UnitIndex, uint8_t &UnitType, 151 /// \param UnitType An optional unit type which will be used to verify the 155 bool verifyUnitContents(DWARFUnit &Unit, uint8_t UnitType = 0);
|
/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/antlr/runtime/Cpp/include/ |
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 | 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 | antlr3exception.hpp | 57 typedef typename StreamType::UnitType TokenType;
|
D | antlr3recognizersharedstate.hpp | 59 typedef typename StreamType::UnitType TokenType;
|
D | antlr3commontreenodestream.hpp | 53 typedef TreeType UnitType; typedef in CommonTreeNodeStream
|
D | antlr3tokenstream.hpp | 146 typedef TokenType UnitType; typedef in TokenStream
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | ExampleGenerator.java | 769 … private String getFormattedUnit(String unitType, UnitLength unitWidth, FixedDecimal unitAmount) { in getFormattedUnit() argument 771 return getFormattedUnit(unitType, unitWidth, unitAmount, numberFormat.format(unitAmount)); in getFormattedUnit() 774 private String getFormattedUnit(String unitType, UnitLength unitWidth, double unitAmount) { in getFormattedUnit() argument 775 return getFormattedUnit(unitType, unitWidth, new FixedDecimal(unitAmount)); in getFormattedUnit() 778 …private String getFormattedUnit(String unitType, UnitLength unitWidth, FixedDecimal unitAmount, St… in getFormattedUnit() argument 782 return format(getValueFromFormat(pathFormat, unitType, form), formattedUnitAmount); in getFormattedUnit() 961 String unitType = parts.getAttributeValue(-2, "type"); in formatCountValue() local 962 if (unitType == null) { in formatCountValue() 963 unitType = "USD"; // sample for currency pattern in formatCountValue() 991 DecimalFormat currencyFormat = icuServiceBuilder.getCurrencyFormat(unitType); in formatCountValue() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFVerifier.cpp | 112 uint8_t &UnitType, bool &isUnitDWARF64) { in verifyUnitHeader() argument 136 UnitType = DebugInfoData.getU8(Offset); in verifyUnitHeader() 139 ValidType = dwarf::isUnitType(UnitType); in verifyUnitHeader() 141 UnitType = 0; in verifyUnitHeader() 174 bool DWARFVerifier::verifyUnitContents(DWARFUnit &Unit, uint8_t UnitType) { in verifyUnitContents() argument 200 if (UnitType != 0 && in verifyUnitContents() 201 !DWARFUnit::isMatchingUnitTypeAndTag(UnitType, Die.getTag())) { in verifyUnitContents() 202 error() << "Compilation unit type (" << dwarf::UnitTypeString(UnitType) in verifyUnitContents() 263 uint8_t UnitType = 0; in handleDebugInfo() local 271 if (!verifyUnitHeader(DebugInfoData, &Offset, UnitIdx, UnitType, in handleDebugInfo() [all …]
|
D | DWARFUnit.cpp | 109 UnitType = debug_info.getU8(offset_ptr); in extract() 118 UnitType = DW_UT_type; in extract() 120 UnitType = DW_UT_compile; in extract() 136 } else if (UnitType == DW_UT_split_compile || UnitType == DW_UT_skeleton) in extract()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
D | DWARFYAML.h | 104 llvm::dwarf::UnitType Type; // Added in DWARF 5 291 template <> struct ScalarEnumerationTraits<dwarf::UnitType> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 292 static void enumeration(IO &io, dwarf::UnitType &value) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/pdfium/fxjs/ |
D | cfxjse_formcalc_context_embeddertest.cpp | 960 TEST_F(CFXJSE_FormCalcContextEmbedderTest, UnitType) { in TEST_F() argument 966 } tests[] = {{"UnitType(\"36 in\")", "in"}, in TEST_F() 967 {"UnitType(\"2.54centimeters\")", "cm"}, in TEST_F() 968 {"UnitType(\"picas\")", "pt"}, in TEST_F() 969 {"UnitType(\"2.cm\")", "cm"}, in TEST_F() 970 {"UnitType(\"2.zero cm\")", "in"}, in TEST_F() 971 {"UnitType(\"kilometers\")", "in"}}; in TEST_F() 993 // {"UnitType(\"A\", \"cm\")", 0.0f}, in TEST_F() 994 // {"UnitType(\"5.08cm\", \"kilograms\")", 2.0f} in TEST_F()
|
D | cfxjse_formcalc_context.h | 210 static void UnitType(CFXJSE_Value* pThis,
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ObjectYAML/MachO/ |
D | DWARF5-debug_info.yaml | 391 UnitType: DW_UT_compile 517 #CHECK: UnitType: DW_UT_compile
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | linkValidate.cpp | 472 void TIntermediate::mergeImplicitArraySizes(TType& type, const TType& unitType) in mergeImplicitArraySizes() argument 475 if (unitType.isUnsizedArray()) { in mergeImplicitArraySizes() 476 type.updateImplicitArraySize(unitType.getImplicitArraySize()); in mergeImplicitArraySizes() 477 if (unitType.isArrayVariablyIndexed()) in mergeImplicitArraySizes() 479 } else if (unitType.isSizedArray()) in mergeImplicitArraySizes() 480 type.changeOuterArraySize(unitType.getOuterArraySize()); in mergeImplicitArraySizes() 484 …if (! type.isStruct() || ! unitType.isStruct() || type.getStruct()->size() != unitType.getStruct()… in mergeImplicitArraySizes() 488 mergeImplicitArraySizes(*(*type.getStruct())[i].type, *(*unitType.getStruct())[i].type); in mergeImplicitArraySizes()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/ |
D | Dwarf.h | 328 enum UnitType : unsigned char { enum 342 inline bool isUnitType(uint8_t UnitType) { in isUnitType() argument 343 switch (UnitType) { in isUnitType()
|
/external/u-boot/board/gdsys/common/ |
D | ioep-fpga.c | 108 printf("UnitType %d(not supported)", unit_type); in ioep_fpga_print_info()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | DWARFYAML.cpp | 103 IO.mapRequired("UnitType", Unit.Type); in mapping()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | dwarf2yaml.cpp | 122 NewUnit.Type = (dwarf::UnitType)CU->getUnitType(); in dumpDebugInfo()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | MeasureUnit.java | 268 String unitType = key.toString(); in put() local 272 internalGetInstance(unitType, unitName); in put()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | MeasureUnit.java | 276 String unitType = key.toString(); in put() local 280 internalGetInstance(unitType, unitName); in put()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.h | 340 void emitCommonHeader(bool UseOffsets, dwarf::UnitType UT);
|