/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 declare type Example1<T extends string, U extends string> = keyof (Record<T, any> & Record<U, any>); 50 declare type Result2 = keyof (Record<'x', any> & Record<'y', any>); 51 declare type Example3<T extends string> = keyof (Record<T, any>); 53 declare type Example4<T extends string, U extends string> = (Record<T, any> & Record<U, any>); 56 declare 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 …]
|
/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 …]
|
D | TypeVisitorCallbacks.h | 23 virtual Error visitUnknownType(CVType &Record) { return Error::success(); } in visitUnknownType() argument 31 virtual Error visitTypeBegin(CVType &Record) { return Error::success(); } in visitTypeBegin() argument 32 virtual Error visitTypeBegin(CVType &Record, TypeIndex Index) { in visitTypeBegin() argument 35 virtual Error visitTypeEnd(CVType &Record) { return Error::success(); } in visitTypeEnd() argument 37 virtual Error visitUnknownMember(CVMemberRecord &Record) { in visitUnknownMember() argument 41 virtual Error visitMemberBegin(CVMemberRecord &Record) { in visitMemberBegin() argument 45 virtual Error visitMemberEnd(CVMemberRecord &Record) { in visitMemberEnd() argument 50 virtual Error visitKnownRecord(CVType &CVR, Name##Record &Record) { \ 54 virtual Error visitKnownMember(CVMemberRecord &CVM, Name##Record &Record) { \
|
/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/boost/libs/endian/example/ |
D | use_cases.cpp | 34 struct Record struct 40 Record rec; argument 42 read(&rec, sizeof(Record)); 53 write(&rec, sizeof(Record)); 58 struct Record struct 64 Record rec; argument 66 read(&rec, sizeof(Record)); 71 write(&rec, sizeof(Record)); 76 struct Record struct 82 Record rec; argument [all …]
|
/third_party/openssl/test/recipes/ |
D | 70-test_sslrecords.t | 43 my $content_type = TLSProxy::Record::RT_APPLICATION_DATA; 52 $content_type = TLSProxy::Record::RT_HANDSHAKE; 244 my $record = TLSProxy::Record->new( 247 TLSProxy::Record::VERS_TLS_1_2, 286 my $record = TLSProxy::Record->new( 288 TLSProxy::Record::RT_ALERT, 289 TLSProxy::Record::VERS_TLS_1_2, 301 $record = TLSProxy::Record->new( 303 TLSProxy::Record::RT_ALERT, 304 TLSProxy::Record::VERS_TLS_1_2, [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/mbedtls/tests/suites/ |
D | test_suite_ssl.data | 633 Record crypt, AES-128-CBC, 1.2, SHA-384 637 Record crypt, AES-128-CBC, 1.2, SHA-384, CID 4+4 641 Record crypt, AES-128-CBC, 1.2, SHA-384, CID 4+0 645 Record crypt, AES-128-CBC, 1.2, SHA-384, EtM 649 Record crypt, AES-128-CBC, 1.2, SHA-384, EtM, CID 4+4 653 Record crypt, AES-128-CBC, 1.2, SHA-384, EtM, CID 4+0 657 Record crypt, AES-128-CBC, 1.2, SHA-384, short tag 661 Record crypt, AES-128-CBC, 1.2, SHA-384, short tag, CID 4+4 665 Record crypt, AES-128-CBC, 1.2, SHA-384, short tag, CID 4+0 669 Record crypt, AES-128-CBC, 1.2, SHA-384, short tag, EtM [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | TGParser.h | 24 class Record; variable 46 std::unique_ptr<Record> Rec; 52 RecordsEntry(std::unique_ptr<Record> Rec) : Rec(std::move(Rec)) {} in RecordsEntry() 122 Record Rec; // Placeholder for template args and Name. 198 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV); 199 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName, 202 bool AddSubClass(Record *Rec, SubClassReference &SubClass); 215 bool addDefOne(std::unique_ptr<Record> Rec); 232 bool ParseObjectBody(Record *CurRec); 233 bool ParseBody(Record *CurRec); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
D | ticket.h | 62 struct Record; 81 UnboundedPool<Record> pool; 104 struct Record { struct 105 MARL_NO_EXPORT inline ~Record(); 114 Record* next = nullptr; // guarded by shared->mutex argument 115 Record* prev = nullptr; // guarded by shared->mutex argument 124 Record tail; argument 127 MARL_NO_EXPORT inline Ticket(Loan<Record>&& record); 129 Loan<Record> record; 136 Ticket::Ticket(Loan<Record>&& record) : record(std::move(record)) {} in Ticket() [all …]
|