Home
last modified time | relevance | path

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

/frameworks/rs/rsov/compiler/spirit/
Dmodule.cpp137 mDebugInfo.reset(Deserialize<DebugInfoSection>(IS)); in DeserializeInternal()
202 if (!mDebugInfo) { in addSource()
203 mDebugInfo.reset(mBuilder->MakeDebugInfoSection()); in addSource()
205 mDebugInfo->addSource(lang, version); in addSource()
210 if (!mDebugInfo) { in addSourceExtension()
211 mDebugInfo.reset(mBuilder->MakeDebugInfoSection()); in addSourceExtension()
213 mDebugInfo->addSourceExtension(ext); in addSourceExtension()
218 if (!mDebugInfo) { in addString()
219 mDebugInfo.reset(mBuilder->MakeDebugInfoSection()); in addString()
221 mDebugInfo->addString(str); in addString()
[all …]
Dmodule.h107 v->visit(mDebugInfo.get()); in accept()
236 std::unique_ptr<DebugInfoSection> mDebugInfo; variable