Home
last modified time | relevance | path

Searched refs:OwnedStrings (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DStringsAndChecksums.cpp37 OwnedStrings = std::make_shared<DebugStringTableSubsectionRef>(); in initializeStrings()
38 consumeError(OwnedStrings->initialize(SR.getRecordData())); in initializeStrings()
39 Strings = OwnedStrings.get(); in initializeStrings()
48 OwnedStrings.reset(); in resetStrings()
59 OwnedStrings = std::make_shared<DebugStringTableSubsectionRef>(); in setStrings()
60 *OwnedStrings = StringsRef; in setStrings()
61 Strings = OwnedStrings.get(); in setStrings()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DStringsAndChecksums.h74 std::shared_ptr<DebugStringTableSubsectionRef> OwnedStrings; variable