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

  /external/libcxx/test/support/
demangle.h 30 inline std::string demangle(const char* mangled_name) { function
35 inline std::string demangle(const char* mangled_name) { function
  /external/valgrind/coregrind/m_demangle/
demangle.c 3 /*--- Demangling of C++ mangled names. demangle.c ---*/
44 #include "demangle.h"
67 Therefore, VG_(demangle) first tries to undo (2). If successful,
115 that buffer is owned by VG_(demangle). That means two things:
116 (1) Users of VG_(demangle) must not free that buffer.
120 after the next VG_(demangle) invocation. */
121 void VG_(demangle) ( Bool do_cxx_demangling, Bool do_z_demangling, function
128 to Z-demangle it (with NULL for the soname buffer, since we're not
158 Rust-demangle the symbol. That's because Rust demangling
184 /*--- DEMANGLE Z-ENCODED NAMES ---*
    [all...]
  /external/swiftshader/third_party/subzero/bloat/
bloat.py 96 def demangle(ident, cppfilt): function
98 # Demangle names when possible. Mangled names all start with _Z.
119 and demangle if possible."""
128 # Only try to demangle if there were suffixes.
129 ident = demangle(ident, cppfilt)
234 parts[0] = demangle(parts[0], cppfilt)
388 default='c++filt', help="Path to c++filt, used to demangle "
  /system/core/demangle/
Demangler.cpp 745 std::string demangle(const char* name) { function
  /toolchain/binutils/binutils-2.25/gprof/
gprof.c 45 #include "demangle.h"
63 bfd_boolean demangle = TRUE; variable
124 {"demangle", optional_argument, 0, OPTION_DEMANGLE},
125 {"no-demangle", no_argument, 0, OPTION_NO_DEMANGLE},
174 [--demangle[=STYLE]] [--no-demangle] [--external-symbol-table=name] [@FILE]\n\
456 demangle = TRUE;
474 demangle = FALSE;
  /development/vndk/tools/vtable-dumper/
elf_handling.cpp 49 static std::string demangle(const std::string &MangledName) { function
185 demangle(SymName.str()),
282 std::string DemangledName = demangle(SymbolName.str());
313 std::string DemangledName = demangle(SymbolName.str());
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 20 demangle = False variable
79 '--demangle=%s' % demangle,
145 if demangle:
146 cmd += ['--demangle']
466 parser.add_argument('-d','--demangle', action='store_true',
467 help='demangle function names')
478 if args.demangle:
479 demangle = True
  /external/elfutils/src/
addr2line.c 74 { "demangle", 'C', "ARG", OPTION_ARG_OPTIONAL,
136 static bool demangle; variable
242 demangle = true;
293 if (demangle && name[0] == '_' && name[1] == 'Z')
nm.c 97 { "demangle", 'C', NULL, 0,
183 /* If true demangle symbols. */
184 static bool demangle; variable
284 demangle = true;
817 /* Demangle if necessary. Require GNU v3 ABI by the "_Z" prefix. */
818 if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
955 /* Demangle if necessary. Require GNU v3 ABI by the "_Z" prefix. */
956 if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
1083 /* Demangle if necessary. Require GNU v3 ABI by the "_Z" prefix. */
1084 if (demangle && symstr[0] == '_' && symstr[1] == 'Z'
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Demangle/
ItaniumDemangle.cpp 10 #include "llvm/Demangle/Demangle.h"
4154 static void demangle(const char *first, const char *last, C &db, int &status) { function
    [all...]
  /system/extras/simpleperf/
cmd_report.cpp 327 "--no-demangle Don't demangle symbol names.\n"
440 bool demangle = true; local
504 } else if (args[i] == "--no-demangle") {
505 demangle = false;
568 Dso::SetDemangle(demangle);
  /external/libcxxabi/src/
cxa_demangle.cpp 4719 demangle(const char* first, const char* last, C& db, int& status) function in namespace:__cxxabiv1::__anon23138
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_demangle.cpp 4658 demangle(const char* first, const char* last, C& db, int& status) function in namespace:__cxxabiv1::__anon111810
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/src/
cxa_demangle.cpp 4673 demangle(const char* first, const char* last, C& db, int& status) function in namespace:__cxxabiv1::__anon112173
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
symtab.cc 31 #include "demangle.h"
86 // if the --demangle flag was set.
89 demangle(const char* name) function in namespace:gold
108 return demangle(this->name());
396 // new/delete or typeinfo without the need to demangle.
    [all...]

Completed in 705 milliseconds