Home
last modified time | relevance | path

Searched full:record (Results 1 – 25 of 4533) sorted by relevance

12345678910>>...182

/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DLanguageData.java23 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/DebugInfo/CodeView/
DTypeRecordMapping.cpp177 // record. Truncating large names are done during writing, so its not in mapNameAndUniqueName()
192 // split with continuation records. All other record types cannot be in visitTypeBegin()
193 // longer than the maximum record length. in visitTypeBegin()
206 error(IO.mapInteger(RecordLen, "Record length")); in visitTypeBegin()
207 error(IO.mapEnum(RecordKind, "Record kind: " + RecordKindName)); in visitTypeBegin()
219 Error TypeRecordMapping::visitTypeEnd(CVType &Record) { in visitTypeEnd() argument
229 Error TypeRecordMapping::visitMemberBegin(CVMemberRecord &Record) { in visitMemberBegin() argument
233 // The largest possible subrecord is one in which there is a record prefix, in visitMemberBegin()
235 // sequence spaws `MaxRecordLength` bytes. So the record's length is in visitMemberBegin()
242 MemberKind = Record.Kind; in visitMemberBegin()
[all …]
DCVTypeVisitor.cpp24 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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DMetadataLoader.cpp431 /// the middle of the metadata block and load any record.
441 /// Index that keeps track of where to find a metadata record in the stream.
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);
554 return error("Invalid record"); in upgradeDIExpression()
686 SmallVector<uint64_t, 64> Record; in lazyLoadModuleMetadataBlock() local
687 // Get the abbrevs, and preload record positions to make them lazy-loadable. in lazyLoadModuleMetadataBlock()
702 case BitstreamEntry::Record: { in lazyLoadModuleMetadataBlock()
[all …]
DBitcodeReader.cpp149 /// Convert a string from a record into an std::string, return true on failure.
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()
200 // Read a record. in readIdentificationBlock()
201 Record.clear(); in readIdentificationBlock()
202 Expected<unsigned> MaybeBitCode = Stream.readRecord(Entry.ID, Record); in readIdentificationBlock()
[all …]
/third_party/openssl/test/recipes/
D70-test_sslrecords.t43 my $content_type = TLSProxy::Record::RT_APPLICATION_DATA;
52 $content_type = TLSProxy::Record::RT_HANDSHAKE;
85 #Test 5: Inject an SSLv2 style record format for a TLSv1.2 ClientHello
93 #Test 6: Inject an SSLv2 style record format for an SSLv2 ClientHello. We don't
111 #Test 8: Fragment a TLSv1.2 ClientHello across a TLS1.2 record; an SSLv2
112 # record; and another TLS1.2 record. This isn't allowed so should fail
120 # fail because an SSLv2 ClientHello must be the first record.
127 #Unrecognised record type tests
129 #Test 10: Sending an unrecognised record type in TLS1.2 should fail
135 ok($fatal_alert, "Unrecognised record type in TLS1.2");
[all …]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkAllocationCallbackUtil.cpp132 AllocationCallbackRecord record; in allocation() local
134 record.type = TYPE_ALLOCATION; in allocation()
135 record.data.allocation.size = size; in allocation()
136 record.data.allocation.alignment = alignment; in allocation()
137 record.data.allocation.scope = scope; in allocation()
138 record.data.allocation.returnedPtr = returnedPtr; in allocation()
140 return record; in allocation()
145 AllocationCallbackRecord record; in reallocation() local
147 record.type = TYPE_REALLOCATION; in reallocation()
148 record.data.reallocation.original = original; in reallocation()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
Dndef.c36 struct ndef_record *record) in ndef_parse_record() argument
42 record->type_length = *pos++; in ndef_parse_record()
46 record->payload_length = *pos++; in ndef_parse_record()
55 record->payload_length = len; in ndef_parse_record()
62 record->id_length = *pos++; in ndef_parse_record()
64 record->id_length = 0; in ndef_parse_record()
66 record->type = record->type_length == 0 ? NULL : pos; in ndef_parse_record()
67 pos += record->type_length; in ndef_parse_record()
69 record->id = record->id_length == 0 ? NULL : pos; in ndef_parse_record()
70 pos += record->id_length; in ndef_parse_record()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
Dndef.c36 struct ndef_record *record) in ndef_parse_record() argument
42 record->type_length = *pos++; in ndef_parse_record()
46 record->payload_length = *pos++; in ndef_parse_record()
55 record->payload_length = len; in ndef_parse_record()
62 record->id_length = *pos++; in ndef_parse_record()
64 record->id_length = 0; in ndef_parse_record()
66 record->type = record->type_length == 0 ? NULL : pos; in ndef_parse_record()
67 pos += record->type_length; in ndef_parse_record()
69 record->id = record->id_length == 0 ? NULL : pos; in ndef_parse_record()
70 pos += record->id_length; in ndef_parse_record()
[all …]
/third_party/typescript/tests/baselines/reference/
DspreadOfObjectLiteralAssignableToIndexSignature.types2 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 …]
DconsistentAliasVsNonAliasRecordBehavior.types12 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 …]
/third_party/flutter/skia/tests/
DRecordTest.cpp31 void apply(const SkRecord& record) { in apply() argument
32 for (int i = 0; i < record.count(); i++) { in apply()
33 record.visit(i, *this); in apply()
49 void apply(SkRecord* record) { in apply()
50 for (int i = 0; i < record->count(); i++) { in apply()
51 record->mutate(i, *this); in apply()
56 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__} argument
59 DEF_TEST(Record, r) { in DEF_TEST() argument
60 SkRecord record; in DEF_TEST() local
65 APPEND(record, SkRecords::DrawRect, paint, rect); in DEF_TEST()
[all …]
DRecordPatternTest.cpp24 SkRecord record; in DEF_TEST() local
25 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
27 SkRecorder recorder(&record, 1920, 1200); in DEF_TEST()
31 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
34 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
37 REPORTER_ASSERT(r, pattern.match(&record, 0)); in DEF_TEST()
46 SkRecord record; in DEF_TEST() local
47 SkRecorder recorder(&record, 1920, 1200); in DEF_TEST()
59 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3); in DEF_TEST()
61 REPORTER_ASSERT(r, !pattern.match(&record, i)); in DEF_TEST()
[all …]
DRecordOptsTest.cpp23 SkRecord record; in DEF_TEST() local
24 SkRecorder recorder(&record, W, H); in DEF_TEST()
30 record.replace<SkRecords::NoOp>(1); // NoOps should be allowed. in DEF_TEST()
32 SkRecordNoopSaveRestores(&record); in DEF_TEST()
34 REPORTER_ASSERT(r, 2 == count_instances_of_type<SkRecords::DrawRect>(record)); in DEF_TEST()
38 SkRecord record; in DEF_TEST() local
39 SkRecorder recorder(&record, W, H); in DEF_TEST()
45 SkRecordNoopSaveRestores(&record); in DEF_TEST()
47 assert_type<SkRecords::NoOp>(r, record, i); in DEF_TEST()
52 SkRecord record; in DEF_TEST() local
[all …]
/third_party/skia/tests/
DRecordTest.cpp31 void apply(const SkRecord& record) { in apply() argument
32 for (int i = 0; i < record.count(); i++) { in apply()
33 record.visit(i, *this); in apply()
49 void apply(SkRecord* record) { in apply()
50 for (int i = 0; i < record->count(); i++) { in apply()
51 record->mutate(i, *this); in apply()
56 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__} argument
59 DEF_TEST(Record, r) { in DEF_TEST() argument
60 SkRecord record; in DEF_TEST() local
65 APPEND(record, SkRecords::DrawRect, paint, rect); in DEF_TEST()
[all …]
DRecordPatternTest.cpp24 SkRecord record; in DEF_TEST() local
25 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
27 SkRecorder recorder(&record, 1920, 1200); in DEF_TEST()
31 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
34 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
37 REPORTER_ASSERT(r, pattern.match(&record, 0)); in DEF_TEST()
46 SkRecord record; in DEF_TEST() local
47 SkRecorder recorder(&record, 1920, 1200); in DEF_TEST()
59 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3); in DEF_TEST()
61 REPORTER_ASSERT(r, !pattern.match(&record, i)); in DEF_TEST()
[all …]
DRecordOptsTest.cpp23 SkRecord record; in DEF_TEST() local
24 SkRecorder recorder(&record, W, H); in DEF_TEST()
30 record.replace<SkRecords::NoOp>(1); // NoOps should be allowed. in DEF_TEST()
32 SkRecordNoopSaveRestores(&record); in DEF_TEST()
34 REPORTER_ASSERT(r, 2 == count_instances_of_type<SkRecords::DrawRect>(record)); in DEF_TEST()
38 SkRecord record; in DEF_TEST() local
39 SkRecorder recorder(&record, W, H); in DEF_TEST()
45 SkRecordNoopSaveRestores(&record); in DEF_TEST()
47 assert_type<SkRecords::NoOp>(r, record, i); in DEF_TEST()
52 SkRecord record; in DEF_TEST() local
[all …]
/third_party/gn/src/gn/
Dbuilder.cc69 BuilderRecord* record = in ItemDefined() local
71 if (!record) { in ItemDefined()
77 if (record->item()) { in ItemDefined()
82 Err(record->item()->defined_from(), "Previous definition:")); in ItemDefined()
87 record->set_item(std::move(item)); in ItemDefined()
93 TargetDefined(record, &err); in ItemDefined()
96 ConfigDefined(record, &err); in ItemDefined()
99 ToolchainDefined(record, &err); in ItemDefined()
109 if (record->can_resolve()) { in ItemDefined()
110 if (!ResolveItem(record, &err)) { in ItemDefined()
[all …]
/third_party/boost/boost/log/core/
Drecord.hpp8 * \file record.hpp
12 * This header contains a logging record class definition.
37 * \brief Logging record class
39 * The logging record encapsulates all information related to a single logging statement,
40 …* in particular, attribute values view and the log message string. The record can be updated befor…
43 class record class
45 BOOST_MOVABLE_BUT_NOT_COPYABLE(record)
55 //! A pointer to the log record implementation
60 BOOST_CONSTEXPR explicit record(public_data* impl) BOOST_NOEXCEPT : m_impl(impl) {} in record() function in boost::record
66 * Default constructor. Creates an empty record that is equivalent to the invalid record handle.
[all …]
/third_party/ntfs-3g/ntfsprogs/
Dplaylog.c85 /* check whether a MFT or INDX record is older than action */
88 /* check whether a MFT or INDX record is newer than action */
274 printf("** Invalid index record" in sanity_indx_list()
282 printf("** Invalid index record length %d\n", in sanity_indx_list()
289 printf("** Bad index record length %ld (computed %ld)\n", in sanity_indx_list()
301 * Rough check of sanity of an mft record
306 const MFT_RECORD *record; in sanity_mft() local
317 record = (const MFT_RECORD*)buffer; in sanity_mft()
318 nextinstance = le16_to_cpu(record->next_attr_instance); in sanity_mft()
320 k = le16_to_cpu(record->attrs_offset); in sanity_mft()
[all …]
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/
Ddd_draw.c948 dd_free_record(struct pipe_screen *screen, struct dd_draw_record *record) in dd_free_record() argument
950 u_log_page_destroy(record->log_page); in dd_free_record()
951 dd_unreference_copy_of_call(&record->call); in dd_free_record()
952 dd_unreference_copy_of_draw_state(&record->draw_state); in dd_free_record()
953 screen->fence_reference(screen, &record->prev_bottom_of_pipe, NULL); in dd_free_record()
954 screen->fence_reference(screen, &record->top_of_pipe, NULL); in dd_free_record()
955 screen->fence_reference(screen, &record->bottom_of_pipe, NULL); in dd_free_record()
956 util_queue_fence_destroy(&record->driver_finished); in dd_free_record()
957 FREE(record); in dd_free_record()
961 dd_write_record(FILE *f, struct dd_draw_record *record) in dd_write_record() argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeParser.cpp37 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/
DCodeViewYAMLTypes.cpp91 : 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/src/core/
DSkRecords.h31 // A list of all the types of canvas calls we can record.
37 // types polymorphically. (See SkRecord::Record::{visit,mutate} for an example.)
86 // Defines SkRecords::Type, an enum of all record types.
130 // Recording is a convenient time to cache these, or we can delay it to between record and playback.
153 #define RECORD(T, tags, ...) \
160 RECORD(NoOp, 0);
161 RECORD(Flush, 0);
162 RECORD(Restore, 0,
164 RECORD(Save, 0);
166 RECORD(SaveLayer, kHasPaint_Tag,
[all …]
/third_party/mbedtls/tests/suites/
Dtest_suite_ssl.data633 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 …]

12345678910>>...182