Home
last modified time | relevance | path

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

12345678910>>...159

/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DLanguageData.java21 public static class Record class in LanguageData
26 public Record(String tag, String name) in Record() method in LanguageData.Record
57 private Record[] languages =
59 new Record("", "null"),
60 new Record("ARA", "Arabic"),
61 new Record("ASM", "Assamese"),
62 new Record("BEN", "Bengali"),
63 new Record("FAR", "Farsi"),
64 new Record("GUJ", "Gujarati"),
65 new Record("HIN", "Hindi"),
[all …]
/external/clang/lib/Serialization/
DASTWriterStmt.cpp34 ASTWriter::RecordData &Record; member in clang::ASTStmtWriter
40 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record) in ASTStmtWriter() argument
41 : Writer(Writer), Record(Record) { } in ASTStmtWriter()
54 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record); in AddTemplateKWAndArgsInfo()
55 Writer.AddSourceLocation(Args.LAngleLoc, Record); in AddTemplateKWAndArgsInfo()
56 Writer.AddSourceLocation(Args.RAngleLoc, Record); in AddTemplateKWAndArgsInfo()
58 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record); in AddTemplateKWAndArgsInfo()
66 Writer.AddSourceLocation(S->getSemiLoc(), Record); in VisitNullStmt()
67 Record.push_back(S->HasLeadingEmptyMacro); in VisitNullStmt()
73 Record.push_back(S->size()); in VisitCompoundStmt()
[all …]
DASTWriter.cpp87 ASTWriter::RecordDataImpl &Record; member in __anon84a3a1ce0111::ASTTypeWriter
90 /// \brief Type code that corresponds to the record generated.
92 /// \brief Abbreviation to use for the record, if any.
95 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record) in ASTTypeWriter() argument
96 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { } in ASTTypeWriter()
113 Writer.AddTypeRef(T->getElementType(), Record); in VisitComplexType()
118 Writer.AddTypeRef(T->getPointeeType(), Record); in VisitPointerType()
123 Writer.AddTypeRef(T->getOriginalType(), Record); in VisitDecayedType()
128 Writer.AddTypeRef(T->getOriginalType(), Record); in VisitAdjustedType()
129 Writer.AddTypeRef(T->getAdjustedType(), Record); in VisitAdjustedType()
[all …]
DASTReaderStmt.cpp34 const ASTReader::RecordData &Record; member in clang::ASTStmtReader
83 const ASTReader::RecordData &Record, unsigned &Idx) in ASTStmtReader() argument
84 : Reader(Reader), F(F), DeclsCursor(Cursor), Record(Record), Idx(Idx) { } in ASTStmtReader()
86 /// \brief The number of record fields required for the Stmt class
90 /// \brief The number of record fields required for the Expr class
111 SourceLocation TemplateKWLoc = ReadSourceLocation(Record, Idx); in ReadTemplateKWAndArgsInfo()
113 ArgInfo.setLAngleLoc(ReadSourceLocation(Record, Idx)); in ReadTemplateKWAndArgsInfo()
114 ArgInfo.setRAngleLoc(ReadSourceLocation(Record, Idx)); in ReadTemplateKWAndArgsInfo()
117 Reader.ReadTemplateArgumentLoc(F, Record, Idx)); in ReadTemplateKWAndArgsInfo()
127 S->setSemiLoc(ReadSourceLocation(Record, Idx)); in VisitNullStmt()
[all …]
DASTWriterDecl.cpp39 RecordData &Record; member in clang::ASTDeclWriter
45 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record) in ASTDeclWriter() argument
46 : Writer(Writer), Context(Context), Record(Record) { in ASTDeclWriter()
135 /// Add an Objective-C type parameter list to the given record.
139 Record.push_back(0); in AddObjCTypeParamList()
143 Record.push_back(typeParams->size()); in AddObjCTypeParamList()
145 Writer.AddDeclRef(typeParam, Record); in AddObjCTypeParamList()
147 Writer.AddSourceLocation(typeParams->getLAngleLoc(), Record); in AddObjCTypeParamList()
148 Writer.AddSourceLocation(typeParams->getRAngleLoc(), Record); in AddObjCTypeParamList()
154 Record.push_back(CD->NumCtorInitializers); in AddFunctionDefinition()
[all …]
DASTReaderDecl.cpp44 const RecordData &Record; member in clang::ASTDeclReader
72 for (unsigned I = 0, Size = Record[Idx++]; I != Size; ++I) in ReadDeclIDList()
73 IDs.push_back(ReadDeclID(Record, Idx)); in ReadDeclIDList()
199 unsigned RawLocation, const RecordData &Record, unsigned &Idx) in ASTDeclReader() argument
201 RawLocation(RawLocation), Record(Record), Idx(Idx), in ASTDeclReader()
233 const RecordData &Record);
431 GetTypeSourceInfo(Record, Idx); in Visit()
434 DD->DeclInfo = GetTypeSourceInfo(Record, Idx); in Visit()
455 if (Record[Idx++]) { in Visit()
457 CD->NumCtorInitializers = Record[Idx++]; in Visit()
[all …]
DASTReader.cpp564 // Detailed record is important since it is used for the module cache hash. in checkPreprocessorOptions()
986 RecordData Record; in ReadLexicalDeclContextStorage() local
989 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob); in ReadLexicalDeclContextStorage()
996 "expected a TU_UPDATE_LEXICAL record for TU"); in ReadLexicalDeclContextStorage()
998 // lexical updates for the same record. It's important that we select only one in ReadLexicalDeclContextStorage()
1022 RecordData Record; in ReadVisibleDeclContextStorage() local
1025 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob); in ReadVisibleDeclContextStorage()
1062 const RecordData &Record) { in ParseLineTable() argument
1068 for (unsigned I = 0; Record[Idx]; ++I) { in ParseLineTable()
1070 auto Filename = ReadPath(F, Record, Idx); in ParseLineTable()
[all …]
/external/clang/include/clang/Serialization/
DASTBitCodes.h156 /// preprocessing record.
218 /// \brief The block containing the detailed preprocessing record.
249 /// \brief Record types that occur within the control block.
255 /// \brief Record code for the list of other AST files imported by
259 /// \brief Record code for the original file that was used to
267 /// \brief Record code for file ID of the file or buffer that was used to
275 /// \brief Record code for the module name.
278 /// \brief Record code for the module map file that was used to build this
282 /// \brief Record code for the signature that identifiers this AST file.
285 /// \brief Record code for the module build directory.
[all …]
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp148 // MODULE_CODE_METADATA_VALUES record.
150 // Support older bitcode without the MODULE_CODE_METADATA_VALUES record.
274 /// OnlyTempMD is true, then only record those entries that are still
309 /// Read a value/type pair out of the specified record from slot 'Slot'.
310 /// Increment Slot past the number of slots used in the record. Return true on
312 bool getValueTypePair(SmallVectorImpl<uint64_t> &Record, unsigned &Slot, in getValueTypePair() argument
314 if (Slot == Record.size()) return true; in getValueTypePair()
315 unsigned ValNo = (unsigned)Record[Slot++]; in getValueTypePair()
325 if (Slot == Record.size()) in getValueTypePair()
328 unsigned TypeNo = (unsigned)Record[Slot++]; in getValueTypePair()
[all …]
/external/deqp/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 …]
/external/libnfc-nxp/src/
DphFriNfc_NdefRecord.c19 * \brief NFC Ndef Record component file.
32 * \name \name NDEF Record Tools Header
52 * Get a specific NDEF record from the data, provided by the caller. The data is a buffer holding
63 …* \param[in] IsChunked This boolean tells the user that the record of a certain po…
64 …* an array has the CHUNKED flag set (is a partial record). Th…
67 …* \param[in,out] NumberOfRawRecords Length of the Record pointer array. The caller has to provi…
159 /* Check the First Record(MB = 0) for TNF = 0x06(Unchanged) */ in phFriNfc_NdefRecord_GetRecords()
170 /* First Record i.e., MB = 1, TNF != 0x05 and TypeLength = 0 */ in phFriNfc_NdefRecord_GetRecords()
191 /* For Each Record Check whether it contains the ME bit set and CF bit Set in phFriNfc_NdefRecord_GetRecords()
228 short or normal record */ in phFriNfc_NdefRecord_GetRecords()
[all …]
/external/wpa_supplicant_8/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 …]
/external/skia/tests/
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 …]
DRecordTest.cpp30 void apply(const SkRecord& record) { in apply() argument
31 for (int i = 0; i < record.count(); i++) { in apply()
32 record.visit<void>(i, *this); in apply()
48 void apply(SkRecord* record) { in apply()
49 for (int i = 0; i < record->count(); i++) { in apply()
50 record->mutate<void>(i, *this); in apply()
55 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__} argument
58 DEF_TEST(Record, r) { in DEF_TEST() argument
59 SkRecord record; in DEF_TEST() local
64 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 …]
DFontNamesTest.cpp18 SkOTTableName::Record nameRecord[R];
24 SkOTTableName::Record nameRecord[R];
40 /*Record*/ {
41 /*platformID*/ { SkOTTableName::Record::PlatformID::Windows },
42 /*encodingID*/ { SkOTTableName::Record::EncodingID::Windows::UnicodeBMPUCS2 },
43 /*languageID*/ { SkOTTableName::Record::LanguageID::Windows::English_UnitedStates },
44 /*nameID*/ { SkOTTableName::Record::NameID::Predefined::FontFamilyName },
60 /*Record*/ {
61 /*platformID*/ { SkOTTableName::Record::PlatformID::Windows },
62 /*encodingID*/ { SkOTTableName::Record::EncodingID::Windows::UnicodeBMPUCS2 },
[all …]
/external/clang/lib/Frontend/
DSerializedDiagnosticReader.cpp70 Record = 1, enumerator
101 // We found a record. in skipUntilRecordOrBlock()
103 return Cursor::Record; in skipUntilRecordOrBlock()
124 case Cursor::Record: in readMetaBlock()
135 SmallVector<uint64_t, 1> Record; in readMetaBlock() local
136 unsigned RecordID = Stream.readRecord(BlockOrCode, Record); in readMetaBlock()
139 if (Record.size() < 1) in readMetaBlock()
141 if (Record[0] > VersionNumber) in readMetaBlock()
157 SmallVector<uint64_t, 16> Record; in readDiagnosticBlock() local
177 case Cursor::Record: in readDiagnosticBlock()
[all …]
DSerializedDiagnosticPrinter.cpp131 std::error_code adjustSourceLocFilename(RecordData &Record,
134 void adjustAbbrevID(RecordData &Record, AbbrevLookup &Lookup,
137 void writeRecordWithAbbrev(unsigned ID, RecordData &Record);
139 void writeRecordWithBlob(unsigned ID, RecordData &Record, StringRef Blob);
197 /// \brief Emit a DIAG record.
210 /// \brief Emit a record for a CharSourceRange.
225 /// \brief Add SourceLocation information the specified record.
227 PresumedLoc PLoc, RecordDataImpl &Record,
230 /// \brief Add SourceLocation information the specified record.
231 void AddLocToRecord(SourceLocation Loc, RecordDataImpl &Record, in AddLocToRecord() argument
[all …]
/external/avahi/avahi-core/
Dresponse-sched.c60 AvahiRecord *record; member
77 static AvahiResponseJob* job_new(AvahiResponseScheduler *s, AvahiRecord *record, AvahiResponseJobSt… in job_new() argument
81 assert(record); in job_new()
89 rj->record = avahi_record_ref(record); in job_new()
118 avahi_record_unref(rj->record); in job_free()
205 /* Try to add this record to the packet */ in packet_add_response_job()
206 if (!avahi_dns_packet_append_record(p, rj->record, rj->flush_cache, 0)) in packet_add_response_job()
209 /* Ok, this record will definitely be sent, so schedule the in packet_add_response_job()
211 …avahi_server_enumerate_aux_records(s->interface->monitor->server, s->interface, rj->record, enumer… in packet_add_response_job()
246 size = avahi_record_get_estimate_size(rj->record) + AVAHI_DNS_PACKET_HEADER_SIZE; in send_response_packet()
[all …]
/external/v8/test/cctest/
Dtest-circular-queue.cc39 typedef v8::base::AtomicWord Record; in TEST() typedef
41 SamplingCircularQueue<Record, kMaxRecordsInQueue> scq; in TEST()
46 for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) { in TEST()
47 Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue()); in TEST()
59 Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue()); in TEST()
65 for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) { in TEST()
66 Record* rec = reinterpret_cast<Record*>(scq.Peek()); in TEST()
69 CHECK_EQ(rec, reinterpret_cast<Record*>(scq.Peek())); in TEST()
71 CHECK_NE(rec, reinterpret_cast<Record*>(scq.Peek())); in TEST()
78 for (Record i = 0; i < kMaxRecordsInQueue / 2; ++i) { in TEST()
[all …]
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp159 // Emit the finished record. in WriteStringRecord()
277 SmallVector<uint64_t, 64> Record; in WriteAttributeGroupTable() local
283 Record.push_back(VE.getAttributeGroupID(A)); in WriteAttributeGroupTable()
284 Record.push_back(AS.getSlotIndex(i)); in WriteAttributeGroupTable()
290 Record.push_back(0); in WriteAttributeGroupTable()
291 Record.push_back(getAttrKindEncoding(Attr.getKindAsEnum())); in WriteAttributeGroupTable()
293 Record.push_back(1); in WriteAttributeGroupTable()
294 Record.push_back(getAttrKindEncoding(Attr.getKindAsEnum())); in WriteAttributeGroupTable()
295 Record.push_back(Attr.getValueAsInt()); in WriteAttributeGroupTable()
300 Record.push_back(Val.empty() ? 3 : 4); in WriteAttributeGroupTable()
[all …]
/external/clang/test/Layout/
Dms-x86-alias-avoidance-padding.cpp1 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple i686-pc-win32 -fms-extensions -fdump-record-la…
3 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple x86_64-pc-win32 -fms-extensions -fdump-record-…
48 // CHECK: *** Dumping AST Record Layout
49 // CHECK: *** Dumping AST Record Layout
50 // CHECK: *** Dumping AST Record Layout
51 // CHECK: *** Dumping AST Record Layout
52 // CHECK: *** Dumping AST Record Layout
53 // CHECK: *** Dumping AST Record Layout
54 // CHECK: *** Dumping AST Record Layout
55 // CHECK: *** Dumping AST Record Layout
[all …]
/external/skia/src/core/
DSkRecordOpts.cpp23 // record, and [begin,end) span of the commands that matched.
25 static bool apply(Pass* pass, SkRecord* record) { in apply() argument
30 while (match.search(record, &begin, &end)) { in apply()
31 changed |= pass->onMatch(record, &match, begin, end); in apply()
38 static void multiple_set_matrices(SkRecord* record) { in multiple_set_matrices() argument
45 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) { in multiple_set_matrices()
46 record->replace<NoOp>(begin); // first SetMatrix in multiple_set_matrices()
50 while (apply(&pass, record)); in multiple_set_matrices()
56 static void apply_matrix_to_draw_params(SkRecord* record) {
63 bool onMatch(SkRecord* record, Pattern* pattern, int begin, int end) {
[all …]
/external/v8/src/
Dlocked-queue-inl.h14 template <typename Record>
15 struct LockedQueue<Record>::Node : Malloced {
17 Record value;
22 template <typename Record>
23 inline LockedQueue<Record>::LockedQueue() {
30 template <typename Record>
31 inline LockedQueue<Record>::~LockedQueue() {
43 template <typename Record>
44 inline void LockedQueue<Record>::Enqueue(const Record& record) {
47 n->value = record;
[all …]
/external/skia/include/private/
DSkRecords.h24 // A list of all the types of canvas calls we can record.
30 // types polymorphically. (See SkRecord::Record::{visit,mutate} for an example.)
71 // Defines SkRecords::Type, an enum of all record types.
145 // Using this, we guarantee the immutability of all bitmaps we record.
165 // Recording is a convenient time to cache these, or we can delay it to between record and playback.
185 #define RECORD(T, tags, ...) \ macro
192 RECORD(NoOp, 0);
193 RECORD(Restore, 0,
196 RECORD(Save, 0);
198 RECORD(SaveLayer, 0,
[all …]

12345678910>>...159