reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
 3892   int indent = strm.GetIndentLevel();
 3894   strm.Indent();
 3895   m_module->GetFileSpec().Dump(&strm);
 3896   strm.Indent(m_module->GetNumCompileUnits() ? "Debug info loaded."
 3898   strm.EOL();
 3899   strm.IndentMore();
 3901   strm.Indent();
 3902   strm.Printf("Globals: %" PRIu64, static_cast<uint64_t>(m_globals.size()));
 3903   strm.EOL();
 3904   strm.IndentMore();
 3906     global.Dump(strm);
 3908   strm.IndentLess();
 3910   strm.Indent();
 3911   strm.Printf("Kernels: %" PRIu64, static_cast<uint64_t>(m_kernels.size()));
 3912   strm.EOL();
 3913   strm.IndentMore();
 3915     kernel.Dump(strm);
 3917   strm.IndentLess();
 3919   strm.Indent();
 3920   strm.Printf("Pragmas: %" PRIu64, static_cast<uint64_t>(m_pragmas.size()));
 3921   strm.EOL();
 3922   strm.IndentMore();
 3924     strm.Indent();
 3925     strm.Printf("%s: %s", key_val.first.c_str(), key_val.second.c_str());
 3926     strm.EOL();
 3928   strm.IndentLess();
 3930   strm.Indent();
 3931   strm.Printf("Reductions: %" PRIu64,
 3933   strm.EOL();
 3934   strm.IndentMore();
 3936     reduction.Dump(strm);
 3939   strm.SetIndentLevel(indent);