HomeSort by: relevance | last modified time | path
    Searched defs:demangle (Results 1 - 21 of 21) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
Demangle.cpp 1 //===-- Demangle.cpp - Common demangling functions ------------------------===//
13 #include "llvm/Demangle/Demangle.h"
22 std::string llvm::demangle(const std::string &MangledName) { function in class:llvm
RustDemangle.cpp 14 #include "llvm/Demangle/RustDemangle.h"
15 #include "llvm/Demangle/Demangle.h"
48 if (!D.demangle(Mangled)) {
101 bool Demangler::demangle(StringView Mangled) { function in class:Demangler
249 // FIXME demangle lifetimes.
459 // FIXME demangle [<lifetime>].
464 // FIXME demangle [<lifetime>].
489 // FIXME demangle binder.
557 // FIXME demangle backreferences
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++23/
stacktrace.cc 69 demangle(const char* name) function in namespace:std::__anon14876
110 if (char* s = demangle(function))
  /src/external/gpl3/gcc/lib/libsupc++/
Makefile 32 COPTS.cp-demangle.c = -Wno-stack-protector -Wno-unused-function
  /src/external/gpl3/gcc.old/lib/libsupc++/
Makefile 32 COPTS.cp-demangle.c = -Wno-stack-protector -Wno-unused-function
  /src/external/gpl3/gdb/lib/libiberty/
Makefile 19 COPTS.cp-demangle.c = -Wno-stack-protector
  /src/external/gpl3/gdb.old/lib/libiberty/
Makefile 19 COPTS.cp-demangle.c = -Wno-stack-protector
  /src/external/gpl3/binutils/lib/libiberty/
Makefile 19 COPTS.cp-demangle.c = -Wno-stack-protector
  /src/external/gpl3/binutils.old/lib/libiberty/
Makefile 19 COPTS.cp-demangle.c = -Wno-stack-protector
  /src/external/gpl3/gdb.old/dist/gdb/
gdb-demangle.c 29 #include "demangle.h"
30 #include "gdb-demangle.h"
37 selection of the style unless you do an explicit "set demangle auto".
45 /* See documentation in gdb-demangle.h. */
46 bool demangle = true; variable
58 /* See documentation in gdb-demangle.h. */
72 "set demangle-style" command, printed as part of the output by the
73 "show demangle-style" command. */
89 /* Set current demangling style. Called by the "set demangle-style"
149 /* See documentation in gdb-demangle.h. *
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
gdb-demangle.c 29 #include "demangle.h"
30 #include "gdb-demangle.h"
37 selection of the style unless you do an explicit "set demangle auto".
45 /* See documentation in gdb-demangle.h. */
46 bool demangle = true; variable
58 /* See documentation in gdb-demangle.h. */
72 "set demangle-style" command, printed as part of the output by the
73 "show demangle-style" command. */
89 /* Set current demangling style. Called by the "set demangle-style"
149 /* See documentation in gdb-demangle.h. *
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageSummaryInfo.h 255 /// Demangle \p Sym if possible. Otherwise, just return \p Sym.
256 StringRef demangle(StringRef Sym) const { function in struct:llvm::DemangleCache
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cxxfilt/
llvm-cxxfilt.cpp 11 #include "llvm/Demangle/Demangle.h"
56 cl::desc("attempt to demangle types as well as function names"),
77 static std::string demangle(const std::string &Mangled) { function
153 Result += ::demangle(std::string(Word.first)) + Word.second.str();
155 Result = ::demangle(std::string(Mangled));
  /src/external/gpl3/binutils/dist/gprof/
gprof.c 45 #include "demangle.h"
65 bool demangle = true; variable
126 {"demangle", optional_argument, 0, OPTION_DEMANGLE},
127 {"no-demangle", no_argument, 0, OPTION_NO_DEMANGLE},
176 [--demangle[=STYLE]] [--no-demangle] [--external-symbol-table=name] [@FILE]\n\
462 demangle = true;
480 demangle = false;
  /src/external/gpl3/binutils.old/dist/gprof/
gprof.c 45 #include "demangle.h"
65 bool demangle = true; variable
126 {"demangle", optional_argument, 0, OPTION_DEMANGLE},
127 {"no-demangle", no_argument, 0, OPTION_NO_DEMANGLE},
176 [--demangle[=STYLE]] [--no-demangle] [--external-symbol-table=name] [@FILE]\n\
462 demangle = true;
480 demangle = false;
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/scripts/
asan_symbolize.py 20 demangle = False variable
84 '--demangle=%s' % demangle,
152 if demangle:
153 cmd += ['--demangle']
493 parser.add_argument('-d','--demangle', action='store_true',
494 help='demangle function names')
507 if args.demangle:
508 demangle = True
  /src/external/apache2/llvm/dist/llvm/tools/opt-viewer/
optrecord.py 69 def demangle(cls, name): member in class:Remark
146 return self.demangle(self.Function)
162 value = html.escape(self.demangle(value))
  /src/external/bsd/libproc/dist/
proc_sym.c 88 demangle(const char *symbol, char *buf, size_t len) function
385 demangle(s, name, namesz);
  /src/external/gpl3/gdb.old/dist/gdb/tui/
tui-status.c 28 #include "gdb-demangle.h"
218 &stream, demangle, "");
217 &stream, demangle, ""); local
  /src/external/gpl3/gdb/dist/gdb/tui/
tui-status.c 28 #include "gdb-demangle.h"
218 &stream, demangle, "");
217 &stream, demangle, ""); local
  /src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
llvm-nm.cpp 20 #include "llvm/Demangle/Demangle.h"
147 cl::opt<bool> Demangle("demangle", cl::ZeroOrMore,
148 cl::desc("Demangle C++ symbol names"), cl::cat(NMCat));
149 cl::alias DemangleC("C", cl::desc("Alias for --demangle"),
150 cl::aliasopt(Demangle), cl::Grouping, cl::NotHidden);
151 cl::opt<bool> NoDemangle("no-demangle", cl::init(false), cl::ZeroOrMore,
152 cl::desc("Don't demangle symbol names"),
717 static Optional<std::string> demangle(StringRef Name, bool StripUnderscore) function
    [all...]

Completed in 58 milliseconds