Searched defs:demangle (Results 1 - 6 of 6) sorted by relevance

/external/libcxx/test/support/
H A Ddemangle.h30 inline std::string demangle(const char* mangled_name) { function
35 inline std::string demangle(const char* mangled_name) { function
/external/valgrind/coregrind/m_demangle/
H A Ddemangle.c3 /*--- Demangling of C++ mangled names. demangle.c ---*/
40 #include "demangle.h"
53 Therefore, VG_(demangle) first tries to undo (2). If successful,
89 that buffer is owned by VG_(demangle). That means two things:
90 (1) Users of VG_(demangle) must not free that buffer.
94 after the next VG_(demangle) invocation. */
95 void VG_(demangle) ( Bool do_cxx_demangling, Bool do_z_demangling, function
102 to Z-demangle it (with NULL for the soname buffer, since we're not
169 sobuf = VG_(arena_realloc)(VG_AR_DEMANGLE, "Z-demangle", sobuf, len);
170 fnbuf = VG_(arena_realloc)(VG_AR_DEMANGLE, "Z-demangle", fnbu
[all...]
/external/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py20 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/
H A Daddr2line.c74 { "demangle", 'C', "ARG", OPTION_ARG_OPTIONAL,
136 static bool demangle; variable
242 demangle = true;
293 if (demangle && name[0] == '_' && name[1] == 'Z')
H A Dnm.c97 { "demangle", 'C', NULL, 0,
183 /* If true demangle symbols. */
184 static bool demangle; variable
284 demangle = true;
818 if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
956 if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
1084 if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
1353 if (demangle && symstr[0] == '_' && symstr[1] == 'Z')
/external/libcxxabi/src/
H A Dcxa_demangle.cpp4719 demangle(const char* first, const char* last, C& db, int& status) function in namespace:__cxxabiv1::__anon10305
4989 demangle(mangled_name, mangled_name + len, db,
4998 demangle(mangled_name, mangled_name + len, db, internal_status);

Completed in 306 milliseconds