Home
last modified time | relevance | path

Searched refs:LeafData (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/DebugInfo/CodeView/
DRecordSerialization.cpp25 StringRef llvm::codeview::getBytesAsCharacters(ArrayRef<uint8_t> LeafData) { in getBytesAsCharacters() argument
26 return StringRef(reinterpret_cast<const char *>(LeafData.data()), in getBytesAsCharacters()
27 LeafData.size()); in getBytesAsCharacters()
30 StringRef llvm::codeview::getBytesAsCString(ArrayRef<uint8_t> LeafData) { in getBytesAsCString() argument
31 return getBytesAsCharacters(LeafData).split('\0').first; in getBytesAsCString()
DCVTypeVisitor.cpp28 ArrayRef<uint8_t> LeafData = Record.Data; in visitTypeRecord() local
47 auto Result = Name##Record::deserialize(RK, LeafData); \ in visitTypeRecord()
/external/llvm/test/DebugInfo/COFF/
Dinlining-padding.ll3 ; Check how we pad out the LF_FUNC_ID records. The 00F3F2F1 bytes in LeafData are
9 ; CHECK: LeafData (
16 ; CHECK: LeafData (
23 ; CHECK: LeafData (
30 ; CHECK: LeafData (
/external/llvm/include/llvm/DebugInfo/CodeView/
DRecordSerialization.h34 StringRef getBytesAsCharacters(ArrayRef<uint8_t> LeafData);
35 StringRef getBytesAsCString(ArrayRef<uint8_t> LeafData);