HomeSort by: relevance | last modified time | path
    Searched defs:RecordData (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 34 CVRecord(ArrayRef<uint8_t> Data) : RecordData(Data) {}
37 : RecordData(reinterpret_cast<const uint8_t *>(P), Size) {}
41 uint32_t length() const { return RecordData.size(); }
44 if (RecordData.size() < sizeof(RecordPrefix))
47 reinterpret_cast<const RecordPrefix *>(RecordData.data())->RecordKind));
50 ArrayRef<uint8_t> data() const { return RecordData; }
53 return StringRef(reinterpret_cast<const char *>(RecordData.data()),
54 RecordData.size());
58 return RecordData.drop_front(sizeof(RecordPrefix));
61 ArrayRef<uint8_t> RecordData;
    [all...]
TypeHashing.h 34 ArrayRef<uint8_t> RecordData;
37 static LocallyHashedType hashType(ArrayRef<uint8_t> RecordData);
54 Hashes.push_back(hashType(Type.RecordData));
102 /// that RecordData might reference, indexable by TypeIndex.
103 static GloballyHashedType hashType(ArrayRef<uint8_t> RecordData,
110 /// that RecordData might reference, indexable by TypeIndex.
114 return hashType(Type.RecordData, PreviousTypes, PreviousIds);
169 Hashes.push_back(hashType(Type.RecordData, Hashes, Hashes));
196 return LHS.RecordData == RHS.RecordData;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
MergingTypeTableBuilder.cpp 101 ArrayRef<uint8_t> RecordData = stabilize(RecordStorage, Record);
102 Result.first->first.RecordData = RecordData;
103 SeenRecords.push_back(RecordData);
123 TI = insertRecordBytes(C.RecordData);
147 Result.first->first.RecordData = Record;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 52 typedef SmallVector<uint64_t, 64> RecordData;
124 std::error_code adjustSourceLocFilename(RecordData &Record,
127 void adjustAbbrevID(RecordData &Record, AbbrevLookup &Lookup,
130 void writeRecordWithAbbrev(unsigned ID, RecordData &Record);
132 void writeRecordWithBlob(unsigned ID, RecordData &Record, StringRef Blob);
268 RecordData Record;
386 RecordData::value_type Record[] = {RECORD_FILENAME, entry, 0 /* For legacy */,
433 RecordData &Record = State->Record;
522 RecordData::value_type Record[] = {RECORD_VERSION, VersionNumber};
534 RecordData::value_type Record[] = {RECORD_CATEGORY, category, catName.size()}
    [all...]

Completed in 35 milliseconds