HomeSort by relevance Sort by last modified time
    Searched defs:Demangle (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/tools/
unused-symbols-report.py 28 def Demangle(sym):
29 """Demangle a C++ symbol by passing it through c++filt."""
67 symbol = Unyuck(Demangle(symbol))
  /external/chromium_org/tools/valgrind/
test_suppressions.py 51 def Demangle(names):
52 """ Demangle a list of C++ symbols, return a list of human-readable symbols.
82 demangled = Demangle(symbols)
  /external/chromium_org/tools/linux/
dump-static-initializers.py 42 """A wrapper around c++filt to provide a function to demangle symbols."""
48 def Demangle(self, sym):
201 ref = demangler.Demangle(ref)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_win.cc 81 const char *Demangle(const char *name) {
sanitizer_symbolizer_libbacktrace.cc 27 # include "demangle.h"
104 info->function = LibbacktraceSymbolizer::Demangle(function, true);
122 info->function = LibbacktraceSymbolizer::Demangle(symname, true);
131 info->name = LibbacktraceSymbolizer::Demangle(symname, true);
196 char *LibbacktraceSymbolizer::Demangle(const char *name, bool always_alloc) {
sanitizer_symbolizer.h 107 // Attempts to demangle the provided C++ mangled name.
108 virtual const char *Demangle(const char *name) {
sanitizer_symbolizer_posix_libcdep.cc 43 // Attempts to demangle the name via __cxa_demangle from __cxxabiv1.
461 const char *Demangle(const char *name) {
495 const char *Demangle(const char *name) { return name; }
624 const char *Demangle(const char *name) {
627 // demangle may call system functions.
631 if (const char *demangled = libbacktrace_symbolizer_->Demangle(name))
635 return internal_symbolizer_->Demangle(name);
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 40 bool Demangle : 1;
44 bool PrintInlining = true, bool Demangle = true,
47 PrintInlining(PrintInlining), Demangle(Demangle),
  /external/chromium_org/base/third_party/symbolize/
demangle.cc 38 #include "demangle.h"
465 // cp-demangle.c has +4300 lines).
    [all...]

Completed in 343 milliseconds