HomeSort by relevance Sort by last modified time
    Searched refs:Record (Results 76 - 100 of 698) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skia/src/sfnt/
SkOTUtils.cpp 64 // The required 'name' record types: Family, Style, Unique, Full and PostScript.
65 const SkOTTableName::Record::NameID::Predefined::Value namesToCreate[] = {
66 SkOTTableName::Record::NameID::Predefined::FontFamilyName,
67 SkOTTableName::Record::NameID::Predefined::FontSubfamilyName,
68 SkOTTableName::Record::NameID::Predefined::UniqueFontIdentifier,
69 SkOTTableName::Record::NameID::Predefined::FullFontName,
70 SkOTTableName::Record::NameID::Predefined::PostscriptName,
76 size_t nameTableLogicalSize = sizeof(SkOTTableName) + (namesCount * sizeof(SkOTTableName::Record)) + (fontNameLen * sizeof(wchar_t));
120 unsigned short stringOffset = sizeof(SkOTTableName) + (namesCount * sizeof(SkOTTableName::Record));
125 SkOTTableName::Record* nameRecords = reinterpret_cast<SkOTTableName::Record*>(data + originalDataSize + sizeof(SkOTTable (…)
184 SkOTTableName::Iterator::Record record; local
    [all...]
  /external/skia/tests/
FontNamesTest.cpp 18 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 }
115 SkOTTableName::Iterator::Record record; local
182 SkOTTableName::Iterator::Record record; local
    [all...]
  /system/extras/simpleperf/
record.h 51 // perf_event_header uses u16 to store record size. However, that is not
53 // a simpleperf_record_header struct to store record header for simpleperf
171 // SampleId is optional at the end of a record in binary format. Its content is
201 // Usually one record contains the following three parts in order in binary
203 // RecordHeader (at the head of a record, containing type and size info)
204 // data depends on the record type
205 // SampleId (optional part at the end of a record)
207 // Record, and hold the type specific data part in classes derived from Record.
208 struct Record {
553 Record* record; member in struct:RecordCache::RecordWithSeq
    [all...]
record_test.cpp 21 #include "record.h"
33 void CheckRecordMatchBinary(const Record& record) {
34 const char* p = record.Binary();
35 std::vector<std::unique_ptr<Record>> records =
36 ReadRecordsFromBuffer(event_attr, p, record.size());
38 CheckRecordEqual(record, *records[0]);
45 MmapRecord record(event_attr, true, 1, 2, 0x1000, 0x2000, 0x3000,
47 CheckRecordMatchBinary(record);
51 CommRecord record(event_attr, 1, 2, "CommRecord", 0, 7)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
InfClassObject.py 326 # Insert a record for file
539 for Record in RecordSet:
540 ValueList = GetSplitValueList(Record[0], TAB_EQUAL_SPLIT)
542 RaiseParserError(Record[0], 'Defines', ContainerFile, '<Key> = <Value>', Record[2])
543 ID, Value1, Value2, Arch, LineNo = Record[3], ValueList[0], ValueList[1], Record[1], Record[2]
657 for Record in RecordSet:
658 if Record[1] == Arch or Record[1] == TAB_ARCH_COMMON:
    [all...]
DscClassObject.py 219 for Record in RecordSet:
220 ValueList = GetSplitValueList(Record[1], TAB_EQUAL_SPLIT)
222 RaiseParserError(Record[1], 'Defines', ContainerFile, '<Key> = <Value>', Record[3])
223 ID, Value1, Value2, Arch = Record[0], ValueList[0], ValueList[1], Record[2]
289 for Record in RecordSet:
290 if Record[1] == Arch or Record[1] == TAB_ARCH_COMMON.upper():
291 (Family, ToolChain, Flag) = GetBuildOption(Record[0], ContainerFile, Record[2])
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/SmbiosLib/
SmbiosLib.c 65 Create SMBIOS record.
68 an SMBIOS record where the strings are cat'ed on the end of the fixed record
100 EFI_SMBIOS_TABLE_HEADER *Record;
106 // Calculate the size of the fixed record and optional string pack
122 Record = (EFI_SMBIOS_TABLE_HEADER *)AllocateZeroPool (Size);
123 if (Record == NULL) {
126 CopyMem (Record, SmbiosEntry, SmbiosEntry->Length);
130 Str = ((CHAR8 *)Record) + Record->Length
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 26 #include "llvm/TableGen/Record.h"
43 std::map<const Record*, std::vector<Record*> > Mapping;
46 std::vector<Record*> DiagGroups
49 std::vector<Record*> SubGroups =
56 const std::vector<Record*> &getParents(const Record *Group) {
63 getCategoryFromDiagGroup(const Record *Group,
71 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
81 static std::string getDiagnosticCategory(const Record *R
    [all...]
ClangCommentHTMLTagsEmitter.cpp 16 #include "llvm/TableGen/Record.h"
24 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
26 for (Record *Tag : Tags) {
40 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
43 for (Record *Tag : Tags) {
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 26 class Record;
67 Record *Rec;
107 OperandInfo(Record *R, const std::string &N, const std::string &PMN,
126 CGIOperandList(Record *D);
128 Record *TheDef; // The actual record containing this OperandList.
136 /// type (which is a record).
208 Record *TheDef; // The actual record defining this instruction.
221 std::vector<Record*> ImplicitDefs, ImplicitUses
    [all...]
CodeGenDAGPatterns.h 29 class Record;
173 SDTypeConstraint(Record *R);
224 Record *Def;
232 SDNodeInfo(Record *R); // Parse the specified record.
239 Record *getRecord() const { return Def; }
328 /// Operator - The Record for the operator if this is an interior node (not
330 Record *Operator;
332 /// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
346 Record *TransformFn
    [all...]
CodeGenMapTable.cpp 37 // 2) For each record, filter out instructions based on the FilterClass value.
83 typedef std::map<std::string, std::vector<Record*> > InstrRelMapTy;
85 typedef std::map<std::vector<Init*>, std::vector<Record*> > RowInstrMapTy;
101 InstrMap(Record* MapRec) {
106 // this InstrMapping object/record.
132 PrintFatalError(MapRec->getLoc(), "InstrMapping record `" +
141 PrintFatalError(MapRec->getLoc(), "Record `" + MapRec->getName() +
186 // InstrMapDesc - InstrMapping record to be processed.
191 std::vector<Record*> InstrDefs;
198 std::vector<Record*> KeyInstrVec
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/
FaultTolerantWrite.c 102 // Find the last write header and record.
173 Write a record with fault tolerant manner.
196 EFI_FAULT_TOLERANT_WRITE_RECORD *Record;
207 Record = FtwDevice->FtwLastWriteRecord;
213 if (IsWorkingBlock (FtwDevice, Fvb, Record->Lba)) {
218 Offset = (UINT8 *) Record - FtwDevice->FtwWorkSpace;
240 NumberOfWriteBlocks = FTW_BLOCKS ((UINTN) (Record->Offset + Record->Length), BlockSize);
241 Status = FlushSpareBlockToTargetBlock (FtwDevice, Fvb, Record->Lba, BlockSize, NumberOfWriteBlocks);
248 // Record the DestionationComplete in record
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/Pei/
PeiDebug.h 78 #define PEI_CR(Record, TYPE, Field, Signature) \
79 _CR(Record, TYPE, Field)
89 #define PEI_CR(Record, TYPE, Field, Signature) \
90 _CR(Record, TYPE, Field)
  /external/llvm/include/llvm/DebugInfo/PDB/
IPDBDataStream.h 32 virtual bool getNext(RecordType &Record) = 0;
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenInstruction.h 25 class Record;
67 Record *Rec;
107 OperandInfo(Record *R, const std::string &N, const std::string &PMN,
126 CGIOperandList(Record *D);
128 Record *TheDef; // The actual record containing this OperandList.
136 /// type (which is a record).
203 Record *TheDef; // The actual record defining this instruction.
216 std::vector<Record*> ImplicitDefs, ImplicitUses
    [all...]
SubtargetEmitter.cpp 16 #include "llvm/TableGen/Record.h"
29 std::vector<Record*> DefList = Records.getAllDerivedDefinitions(ClassName);
45 // For each record
47 // Next record
48 Record *Def = DefList[i];
74 std::vector<Record*> FeatureList =
90 Record *Feature = FeatureList[i];
104 const std::vector<Record*> &ImpliesList =
137 std::vector<Record*> ProcessorList =
148 Record *Processor = ProcessorList[i]
    [all...]
  /external/clang/lib/Frontend/
TestModuleFileExtension.cpp 26 // Write an abbreviation for this record.
41 uint64_t Record[] = {FIRST_EXTENSION_RECORD_ID, Message.size()};
42 Stream.EmitRecordWithBlob(Abbrev, Record, Message);
50 SmallVector<uint64_t, 4> Record;
59 case llvm::BitstreamEntry::Record:
63 Record.clear();
65 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob);
68 StringRef Message = Blob.substr(0, Record[0]);
  /external/clang/include/clang/Serialization/
ASTWriter.h 271 /// just after the stmt record.
300 /// record) to the macro IDs.
349 /// record containing modifications to them.
362 /// separate record for these declarations, which are provided to the AST
367 /// record.
530 void AddToken(const Token &Tok, RecordDataImpl &Record);
533 void AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record);
536 void AddSourceRange(SourceRange Range, RecordDataImpl &Record);
539 void AddIdentifierRef(const IdentifierInfo *II, RecordDataImpl &Record);
556 void AddTypeRef(QualType T, RecordDataImpl &Record);
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 45 /// \brief Describes the record types in the index.
149 case llvm::BitstreamEntry::Record:
168 SmallVector<uint64_t, 64> Record;
170 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) {
173 if (Record.size() < 1 || Record[0] != CurrentVersion)
179 unsigned ID = Record[Idx++];
189 Modules[ID].Size = Record[Idx++];
190 Modules[ID].ModTime = Record[Idx++];
193 unsigned NameLen = Record[Idx++]
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
TableReport.py 61 # Insert a record into table report
107 for Record in RecordSet:
109 ErrorID = Record[1]
110 OtherMsg = Record[2]
111 BelongsToTable = Record[3]
112 BelongsToItem = Record[4]
113 IsCorrected = Record[5]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscProcessorCacheFunction.c 75 EFI_DATA_RECORD_HEADER *Record;
112 Record = NULL;
119 &Record
122 if (Record->DataRecordClass == EFI_DATA_RECORD_CLASS_DATA) {
123 DataHeader = (EFI_SUBCLASS_TYPE1_HEADER *)(Record + 1);
125 SrcDataSize = Record->RecordSize - Record->HeaderSize - sizeof (EFI_SUBCLASS_TYPE1_HEADER);
126 if (CompareGuid(&Record->DataRecordGuid, &gEfiCacheSubClassGuid) && (DataHeader->RecordType == CacheSizeRecordType)) {
  /external/clang/test/SemaTemplate/
derived.cpp 24 C<long, 64> &Record;
28 AddSourceLocation(Record); // expected-error{{non-const lvalue reference to type}}
  /prebuilts/go/darwin-x86/doc/progs/
error2.go 20 key := datastore.NewKey(c, "Record", r.FormValue("id"), 0, nil)
21 record := new(Record)
22 if err := datastore.Get(c, key, record); err != nil {
26 if err := viewTemplate.Execute(w, record); err != nil {
46 func (ds) Get(*ctx, string, *Record) error { return nil }
50 type Record struct{}
  /prebuilts/go/linux-x86/doc/progs/
error2.go 20 key := datastore.NewKey(c, "Record", r.FormValue("id"), 0, nil)
21 record := new(Record)
22 if err := datastore.Get(c, key, record); err != nil {
26 if err := viewTemplate.Execute(w, record); err != nil {
46 func (ds) Get(*ctx, string, *Record) error { return nil }
50 type Record struct{}

Completed in 731 milliseconds

1 2 34 5 6 7 8 91011>>