/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | LanguageData.java | 23 public static class Record class in LanguageData 28 public Record(String tag, String name) in Record() method in LanguageData.Record 59 private Record[] languages = 61 new Record("", "null"), 62 new Record("ARA", "Arabic"), 63 new Record("ASM", "Assamese"), 64 new Record("BEN", "Bengali"), 65 new Record("FAR", "Farsi"), 66 new Record("GUJ", "Gujarati"), 67 new Record("HIN", "Hindi"), [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | MetadataLoader.cpp | 472 Error parseOneMetadata(SmallVectorImpl<uint64_t> &Record, unsigned Code, 475 Error parseMetadataStrings(ArrayRef<uint64_t> Record, StringRef Blob, 478 ArrayRef<uint64_t> Record); 479 Error parseMetadataKindRecord(SmallVectorImpl<uint64_t> &Record); 686 SmallVector<uint64_t, 64> Record; in lazyLoadModuleMetadataBlock() local 702 case BitstreamEntry::Record: { in lazyLoadModuleMetadataBlock() 716 Record.clear(); in lazyLoadModuleMetadataBlock() 718 IndexCursor.readRecord(Entry.ID, Record, &Blob)) in lazyLoadModuleMetadataBlock() 722 unsigned NumStrings = Record[0]; in lazyLoadModuleMetadataBlock() 727 if (auto Err = parseMetadataStrings(Record, Blob, IndexNextMDString)) in lazyLoadModuleMetadataBlock() [all …]
|
D | BitcodeReader.cpp | 151 static bool convertToString(ArrayRef<uint64_t> Record, unsigned Idx, in convertToString() argument 153 if (Idx > Record.size()) in convertToString() 156 for (unsigned i = Idx, e = Record.size(); i != e; ++i) in convertToString() 157 Result += (char)Record[i]; in convertToString() 178 SmallVector<uint64_t, 64> Record; in readIdentificationBlock() local 195 case BitstreamEntry::Record: in readIdentificationBlock() 201 Record.clear(); in readIdentificationBlock() 202 Expected<unsigned> MaybeBitCode = Stream.readRecord(Entry.ID, Record); in readIdentificationBlock() 209 convertToString(Record, 0, ProducerIdentification); in readIdentificationBlock() 212 unsigned epoch = (unsigned)Record[0]; in readIdentificationBlock() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordMapping.cpp | 219 Error TypeRecordMapping::visitTypeEnd(CVType &Record) { in visitTypeEnd() argument 229 Error TypeRecordMapping::visitMemberBegin(CVMemberRecord &Record) { in visitMemberBegin() argument 242 MemberKind = Record.Kind; in visitMemberBegin() 244 std::string MemberKindName = getLeafTypeName(Record.Kind); in visitMemberBegin() 247 (getEnumName(IO, unsigned(Record.Kind), makeArrayRef(LeafTypeNames))) in visitMemberBegin() 250 error(IO.mapEnum(Record.Kind, "Member kind: " + MemberKindName)); in visitMemberBegin() 255 Error TypeRecordMapping::visitMemberEnd(CVMemberRecord &Record) { in visitMemberEnd() argument 269 Error TypeRecordMapping::visitKnownRecord(CVType &CVR, ModifierRecord &Record) { in visitKnownRecord() argument 271 getFlagNames(IO, static_cast<uint16_t>(Record.Modifiers), in visitKnownRecord() 273 error(IO.mapInteger(Record.ModifiedType, "ModifiedType")); in visitKnownRecord() [all …]
|
D | CVTypeVisitor.cpp | 24 static Error visitKnownRecord(CVType &Record, TypeVisitorCallbacks &Callbacks) { in visitKnownRecord() argument 25 TypeRecordKind RK = static_cast<TypeRecordKind>(Record.kind()); in visitKnownRecord() 27 if (auto EC = Callbacks.visitKnownRecord(Record, KnownRecord)) in visitKnownRecord() 33 static Error visitKnownMember(CVMemberRecord &Record, in visitKnownMember() argument 35 TypeRecordKind RK = static_cast<TypeRecordKind>(Record.Kind); in visitKnownMember() 37 if (auto EC = Callbacks.visitKnownMember(Record, KnownRecord)) in visitKnownMember() 42 static Error visitMemberRecord(CVMemberRecord &Record, in visitMemberRecord() argument 44 if (auto EC = Callbacks.visitMemberBegin(Record)) in visitMemberRecord() 47 switch (Record.Kind) { in visitMemberRecord() 49 if (auto EC = Callbacks.visitUnknownMember(Record)) in visitMemberRecord() [all …]
|
D | CVSymbolVisitor.cpp | 21 static Error visitKnownRecord(CVSymbol &Record, in visitKnownRecord() argument 23 SymbolRecordKind RK = static_cast<SymbolRecordKind>(Record.kind()); in visitKnownRecord() 25 if (auto EC = Callbacks.visitKnownRecord(Record, KnownRecord)) in visitKnownRecord() 30 static Error finishVisitation(CVSymbol &Record, in finishVisitation() argument 32 switch (Record.kind()) { in finishVisitation() 34 if (auto EC = Callbacks.visitUnknownSymbol(Record)) in finishVisitation() 39 if (auto EC = visitKnownRecord<Name>(Record, Callbacks)) \ in finishVisitation() 48 if (auto EC = Callbacks.visitSymbolEnd(Record)) in finishVisitation() 54 Error CVSymbolVisitor::visitSymbolRecord(CVSymbol &Record) { in visitSymbolRecord() argument 55 if (auto EC = Callbacks.visitSymbolBegin(Record)) in visitSymbolRecord() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | spreadOfObjectLiteralAssignableToIndexSignature.types | 2 const foo: Record<never, never> = {} // OK 3 >foo : Record<never, never> 6 interface RecordOfRecords extends Record<keyof any, RecordOfRecords> {} 12 >recordOfRecords.propA = {...(foo !== undefined ? {foo} : {})} : { foo?: Record<never, never> | und… 16 >{...(foo !== undefined ? {foo} : {})} : { foo?: Record<never, never> | undefined; } 17 >(foo !== undefined ? {foo} : {}) : { foo: Record<never, never>; } | {} 18 >foo !== undefined ? {foo} : {} : { foo: Record<never, never>; } | {} 20 >foo : Record<never, never> 22 >{foo} : { foo: Record<never, never>; } 23 >foo : Record<never, never> [all …]
|
D | consistentAliasVsNonAliasRecordBehavior.types | 12 function defaultRecord(x: Record<'a', string>, y: Record<string, string>) { 13 >defaultRecord : (x: Record<'a', string>, y: Record<string, string>) => void 14 >x : Record<"a", string> 15 >y : Record<string, string> 18 >x = y : Record<string, string> 19 >x : Record<"a", string> 20 >y : Record<string, string> 34 function mixed1(x: Record2<'a', string>, y: Record<string, string>) { 35 >mixed1 : (x: Record2<'a', string>, y: Record<string, string>) => void 37 >y : Record<string, string> [all …]
|
D | nestedTypeVariableInfersLiteral.types | 3 declare function direct<A extends string>(a: A | A[]): Record<A, string> 4 >direct : <A extends string>(a: A | A[]) => Record<A, string> 7 declare function nested<A extends string>(a: { fields: A }): Record<A, string> 8 >nested : <A extends string>(a: { fields: A;}) => Record<A, string> 12 declare function nestedUnion<A extends string>(a: { fields: A | A[] }): Record<A, string> 13 >nestedUnion : <A extends string>(a: { fields: A | A[];}) => Record<A, string> 18 >directUnionSingle : Record<"z", string> 19 >direct("z") : Record<"z", string> 20 >direct : <A extends string>(a: A | A[]) => Record<A, string> 24 >directUnionArray : Record<"z" | "y", string> [all …]
|
D | indexSignatureAndMappedType.types | 5 function f1<T, K extends string>(x: { [key: string]: T }, y: Record<K, T>) { 6 >f1 : <T, K extends string>(x: { [key: string]: T; }, y: Record<K, T>) => void 9 >y : Record<K, T> 12 >x = y : Record<K, T> 14 >y : Record<K, T> 18 >y : Record<K, T> 22 function f2<T>(x: { [key: string]: T }, y: Record<string, T>) { 23 >f2 : <T>(x: { [key: string]: T; }, y: Record<string, T>) => void 26 >y : Record<string, T> 29 >x = y : Record<string, T> [all …]
|
D | keyofIntersection.js | 15 type Example1<T extends string, U extends string> = keyof (Record<T, any> & Record<U, any>); 18 type Result2 = keyof (Record<'x', any> & Record<'y', any>); // "x" | "y" 20 type Example3<T extends string> = keyof (Record<T, any>); 23 type Example4<T extends string, U extends string> = (Record<T, any> & Record<U, any>); 27 type Result5 = Example5<Record<'x', any>, Record<'y', any>>; // "x" | "y" 48 type Example1<T extends string, U extends string> = keyof (Record<T, any> & Record<U, any>); 50 type Result2 = keyof (Record<'x', any> & Record<'y', any>); 51 type Example3<T extends string> = keyof (Record<T, any>); 53 type Example4<T extends string, U extends string> = (Record<T, any> & Record<U, any>); 56 type Result5 = Example5<Record<'x', any>, Record<'y', any>>;
|
D | keyofIntersection.symbols | 52 type Example1<T extends string, U extends string> = keyof (Record<T, any> & Record<U, any>); 56 >Record : Symbol(Record, Decl(lib.es5.d.ts, --, --)) 58 >Record : Symbol(Record, Decl(lib.es5.d.ts, --, --)) 65 type Result2 = keyof (Record<'x', any> & Record<'y', any>); // "x" | "y" 67 >Record : Symbol(Record, Decl(lib.es5.d.ts, --, --)) 68 >Record : Symbol(Record, Decl(lib.es5.d.ts, --, --)) 70 type Example3<T extends string> = keyof (Record<T, any>); 73 >Record : Symbol(Record, Decl(lib.es5.d.ts, --, --)) 80 type Example4<T extends string, U extends string> = (Record<T, any> & Record<U, any>); 84 >Record : Symbol(Record, Decl(lib.es5.d.ts, --, --)) [all …]
|
D | controlFlowFavorAssertedTypeThroughTypePredicate.types | 4 declare function isObject1(value: unknown): value is Record<string, unknown>; 5 >isObject1 : (value: unknown) => value is Record<string, unknown> 13 >isObject1 : (value: unknown) => value is Record<string, unknown> 17 >obj1 : Record<string, unknown> 21 >obj1 : Record<string, unknown> 26 >obj1 : Record<string, unknown> 33 >isObject1 : (value: unknown) => value is Record<string, unknown> 37 >obj2 : Record<string, unknown> 41 >obj2 : Record<string, unknown> 46 >obj2 : Record<string, unknown> | undefined [all …]
|
D | inKeywordTypeguard(strict=false).types | 149 >x : (AWithMethod | BWithMethod) & Record<"c", unknown> 155 >x : (AWithMethod | BWithMethod) & Record<"c", unknown> 335 >error : Error & Record<"extra", unknown> 466 >x : Record<"a", unknown> 478 >x : Record<"a", unknown> 495 >x : object & Record<"a", unknown> 513 >x : object & Record<"a", unknown> 516 >x : object & Record<"a", unknown> & Record<"b", unknown> 520 >x : object & Record<"a", unknown> & Record<"b", unknown> & Record<"c", unknown> 525 >x : object & Record<"a", unknown> & Record<"b", unknown> & Record<"c", unknown> [all …]
|
D | inKeywordTypeguard(strict=true).types | 149 >x : (AWithMethod | BWithMethod) & Record<"c", unknown> 155 >x : (AWithMethod | BWithMethod) & Record<"c", unknown> 335 >error : Error & Record<"extra", unknown> 466 >x : Record<"a", unknown> 478 >x : Record<"a", unknown> 495 >x : object & Record<"a", unknown> 513 >x : object & Record<"a", unknown> 516 >x : object & Record<"a", unknown> & Record<"b", unknown> 520 >x : object & Record<"a", unknown> & Record<"b", unknown> & Record<"c", unknown> 525 >x : object & Record<"a", unknown> & Record<"b", unknown> & Record<"c", unknown> [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/ |
D | NaClBitcodeParser.cpp | 37 const NaClBitcodeRecord &Record) in NaClBitcodeBlock() argument 38 : NaClBitcodeData(Record), BlockID(BlockID), in NaClBitcodeBlock() 39 EnclosingBlock(&Record.GetBlock()), LocalStartBit(Record.GetStartBit()) {} in NaClBitcodeBlock() 50 Parser->Record.SetStartBit(StartBit); in SetBID() 51 Parser->Record.Entry.Kind = NaClBitstreamEntry::Record; in SetBID() 52 Parser->Record.Entry.ID = naclbitc::UNABBREV_RECORD; in SetBID() 53 Parser->Record.Data.Code = naclbitc::BLOCKINFO_CODE_SETBID; in SetBID() 54 Parser->Record.Data.Values = Values; in SetBID() 61 Parser->Record.SetStartBit(StartBit); in EndBlockInfoBlock() 62 Parser->Record.Entry.Kind = NaClBitstreamEntry::EndBlock; in EndBlockInfoBlock() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLTypes.cpp | 91 : LeafRecordBase(K), Record(static_cast<TypeRecordKind>(K)) {} in LeafRecordImpl() 96 return TypeDeserializer::deserializeAs<T>(Type, Record); in fromCodeViewRecord() 100 TS.writeLeafType(Record); in toCodeViewRecord() 104 mutable T Record; member 129 : MemberRecordBase(K), Record(static_cast<TypeRecordKind>(K)) {} in MemberRecordImpl() 134 CRB.writeMemberType(Record); in writeTo() 137 mutable T Record; member 395 IO.mapRequired("ModifiedType", Record.ModifiedType); in map() 396 IO.mapRequired("Modifiers", Record.Modifiers); in map() 400 IO.mapRequired("ReturnType", Record.ReturnType); in map() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeVisitorCallbackPipeline.h | 25 Error visitUnknownType(CVRecord<TypeLeafKind> &Record) override { in visitUnknownType() argument 27 if (auto EC = Visitor->visitUnknownType(Record)) in visitUnknownType() 33 Error visitUnknownMember(CVMemberRecord &Record) override { in visitUnknownMember() argument 35 if (auto EC = Visitor->visitUnknownMember(Record)) in visitUnknownMember() 41 Error visitTypeBegin(CVType &Record) override { in visitTypeBegin() argument 43 if (auto EC = Visitor->visitTypeBegin(Record)) in visitTypeBegin() 49 Error visitTypeBegin(CVType &Record, TypeIndex Index) override { in visitTypeBegin() argument 51 if (auto EC = Visitor->visitTypeBegin(Record, Index)) in visitTypeBegin() 57 Error visitTypeEnd(CVType &Record) override { in visitTypeEnd() argument 59 if (auto EC = Visitor->visitTypeEnd(Record)) in visitTypeEnd() [all …]
|
D | TypeDeserializer.h | 42 template <typename T> static Error deserializeAs(CVType &CVT, T &Record) { in deserializeAs() argument 43 Record.Kind = static_cast<TypeRecordKind>(CVT.kind()); in deserializeAs() 47 if (auto EC = I.Mapping.visitKnownRecord(CVT, Record)) in deserializeAs() 60 T Record(K); in deserializeAs() 62 if (auto EC = deserializeAs<T>(CVT, Record)) in deserializeAs() 64 return Record; in deserializeAs() 67 Error visitTypeBegin(CVType &Record) override { in visitTypeBegin() argument 69 Mapping = std::make_unique<MappingInfo>(Record.content()); in visitTypeBegin() 70 return Mapping->Mapping.visitTypeBegin(Record); in visitTypeBegin() 73 Error visitTypeBegin(CVType &Record, TypeIndex Index) override { in visitTypeBegin() argument [all …]
|
D | SymbolDeserializer.h | 36 template <typename T> static Error deserializeAs(CVSymbol Symbol, T &Record) { in deserializeAs() argument 42 if (auto EC = S.visitKnownRecord(Symbol, Record)) in deserializeAs() 49 T Record(static_cast<SymbolRecordKind>(Symbol.kind())); in deserializeAs() 50 if (auto EC = deserializeAs<T>(Symbol, Record)) in deserializeAs() 52 return Record; in deserializeAs() 59 Error visitSymbolBegin(CVSymbol &Record, uint32_t Offset) override { in visitSymbolBegin() argument 60 return visitSymbolBegin(Record); in visitSymbolBegin() 63 Error visitSymbolBegin(CVSymbol &Record) override { in visitSymbolBegin() argument 65 Mapping = std::make_unique<MappingInfo>(Record.content(), Container); in visitSymbolBegin() 66 return Mapping->Mapping.visitSymbolBegin(Record); in visitSymbolBegin() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeTypePointer.cpp | 28 codeview::PointerRecord Record) in NativeTypePointer() argument 30 Record(std::move(Record)) {} in NativeTypePointer() 73 assert(Record); in getClassParentId() 74 const MemberPointerInfo &MPI = Record->getMemberInfo(); in getClassParentId() 79 if (Record) in getLength() 80 return Record->getSize(); in getLength() 102 TypeIndex Referent = Record ? Record->ReferentType : TI.makeDirect(); in getTypeId() 108 if (!Record) in isReference() 110 return Record->getMode() == PointerMode::LValueReference; in isReference() 114 if (!Record) in isRValueReference() [all …]
|
/third_party/openssl/test/recipes/ |
D | 70-test_sslrecords.t | 43 my $content_type = TLSProxy::Record::RT_APPLICATION_DATA; 53 $content_type = TLSProxy::Record::RT_HANDSHAKE; 266 my $record = TLSProxy::Record->new( 269 TLSProxy::Record::VERS_TLS_1_2, 308 my $record = TLSProxy::Record->new( 310 TLSProxy::Record::RT_ALERT, 311 TLSProxy::Record::VERS_TLS_1_2, 323 $record = TLSProxy::Record->new( 325 TLSProxy::Record::RT_ALERT, 326 TLSProxy::Record::VERS_TLS_1_2, [all …]
|
/third_party/node/deps/v8/src/utils/ |
D | locked-queue-inl.h | 14 template <typename Record> 15 struct LockedQueue<Record>::Node : Malloced { 17 Record value; 21 template <typename Record> 22 inline LockedQueue<Record>::LockedQueue() { 29 template <typename Record> 30 inline LockedQueue<Record>::~LockedQueue() { 41 template <typename Record> 42 inline void LockedQueue<Record>::Enqueue(Record record) { 54 template <typename Record> [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 289 SmallVectorImpl<uint64_t> &Record); 290 void writeMDTuple(const MDTuple *N, SmallVectorImpl<uint64_t> &Record, 293 void writeDILocation(const DILocation *N, SmallVectorImpl<uint64_t> &Record, 297 SmallVectorImpl<uint64_t> &Record, unsigned &Abbrev); 298 void writeDISubrange(const DISubrange *N, SmallVectorImpl<uint64_t> &Record, 301 SmallVectorImpl<uint64_t> &Record, unsigned Abbrev); 302 void writeDIBasicType(const DIBasicType *N, SmallVectorImpl<uint64_t> &Record, 305 SmallVectorImpl<uint64_t> &Record, unsigned Abbrev); 307 SmallVectorImpl<uint64_t> &Record, unsigned Abbrev); 309 SmallVectorImpl<uint64_t> &Record, [all …]
|
/third_party/vixl/src/aarch64/ |
D | cpu-features-auditor-aarch64.cc | 85 void Record(const CPUFeatures& features) { in Record() function in vixl::aarch64::CPUFeaturesAuditor::RecordInstructionFeaturesScope 89 void Record(CPUFeatures::Feature feature0, in Record() function in vixl::aarch64::CPUFeaturesAuditor::RecordInstructionFeaturesScope 103 Record(a); in RecordOneOrBothOf() 105 Record(b); in RecordOneOrBothOf() 107 Record(a, b); in RecordOneOrBothOf() 122 scope.Record(CPUFeatures::kNEON); in LoadStoreHelper() 143 scope.Record(CPUFeatures::kNEON); in LoadStorePairHelper() 182 scope.Record(CPUFeatures::kFlagM); in VisitRotateRightIntoFlags() 192 scope.Record(CPUFeatures::kFlagM); in VisitEvaluateIntoFlags() 204 scope.Record(CPUFeatures::kRCpc); in VisitAtomicMemory() [all …]
|