HomeSort by relevance Sort by last modified time
    Searched refs:mangled (Results 1 - 25 of 57) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.25/libiberty/
d-demangle.c 31 This file imports strtol and strtod for decoding mangled literals. */
182 /* Demangle the calling convention from MANGLED and append it to DECL.
185 dlang_call_convention (string *decl, const char *mangled)
187 if (mangled == NULL || *mangled == '\0')
188 return mangled;
190 switch (*mangled)
193 mangled++;
196 mangled++;
200 mangled++
    [all...]
cplus-dem.c 533 consume_count_with_underscores (const char **mangled)
537 if (**mangled == '_')
539 (*mangled)++;
540 if (!ISDIGIT ((unsigned char)**mangled))
543 idx = consume_count (mangled);
544 if (**mangled != '_')
548 (*mangled)++;
552 if (**mangled < '0' || **mangled > '9')
555 idx = **mangled - '0'
    [all...]
cp-demint.c 180 /* Translate a mangled name into components. */
183 cplus_demangle_v3_components (const char *mangled, int options, void **mem)
190 len = strlen (mangled);
192 if (mangled[0] == '_' && mangled[1] == 'Z')
201 cplus_demangle_init_info (mangled, options, len, &di);
220 mangled string, then we didn't successfully demangle it. */
cp-demangle.c 39 This code first pulls the mangled name apart into a list of
44 char *cplus_demangle_v3(const char *mangled, int options)
45 char *java_demangle_v3(const char *mangled)
46 int cplus_demangle_v3_callback(const char *mangled, int options,
48 int java_demangle_v3_callback(const char *mangled,
75 char *__cxa_demangle (const char *mangled, char *buf, size_t *len,
95 stdout about the mangled string. This is not generally useful.
254 in which they appeared in the mangled string. */
990 /* Add a new demangle mangled name component. */
6319 dyn_string_t mangled = dyn_string_new (3); local
    [all...]
  /external/valgrind/coregrind/m_demangle/
cplus-dem.c 544 consume_count_with_underscores (const char **mangled)
548 if (**mangled == '_')
550 (*mangled)++;
551 if (!ISDIGIT ((unsigned char)**mangled))
554 idx = consume_count (mangled);
555 if (**mangled != '_')
559 (*mangled)++;
563 if (**mangled < '0' || **mangled > '9')
566 idx = **mangled - '0'
    [all...]
demangle.h 132 ML_(cplus_demangle) (const char *mangled, int options);
158 cplus_demangle_v3_callback (const char *mangled, int options,
162 cplus_demangle_v3 (const char *mangled, int options);
165 java_demangle_v3_callback (const char *mangled,
169 java_demangle_v3 (const char *mangled);
172 ada_demangle (const char *mangled, int options);
185 /* Return non-zero iff NAME is the mangled form of a constructor name
204 /* Return non-zero iff NAME is the mangled form of a destructor name
212 representation of the mangled name, and the second pass turns the
403 to the mangled string, but since negative numbers are mangle
    [all...]
cp-demangle.c 39 This code first pulls the mangled name apart into a list of
44 char *cplus_demangle_v3(const char *mangled, int options)
45 char *java_demangle_v3(const char *mangled)
46 int cplus_demangle_v3_callback(const char *mangled, int options,
48 int java_demangle_v3_callback(const char *mangled,
75 char *__cxa_demangle (const char *mangled, char *buf, size_t *len,
95 stdout about the mangled string. This is not generally useful.
269 in which they appeared in the mangled string. */
1003 /* Add a new demangle mangled name component. */
6362 dyn_string_t mangled = dyn_string_new (3); local
    [all...]
  /external/ltrace/
demangle.h 31 extern char *cplus_demangle(const char *mangled, int options);
  /external/webrtc/webrtc/base/
checks.cc 69 char mangled[201]; local
70 if (sscanf(symbols[i], "%*[^(]%*[(]%200[^)+]", mangled) == 1) { // NOLINT
74 char* demangled = abi::__cxa_demangle(mangled, NULL, &length, &status);
75 PrintError("%s\n", demangled != NULL ? demangled : mangled);
  /toolchain/binutils/binutils-2.25/include/
demangle.h 134 cplus_demangle (const char *mangled, int options);
160 cplus_demangle_v3_callback (const char *mangled, int options,
164 cplus_demangle_v3 (const char *mangled, int options);
167 java_demangle_v3_callback (const char *mangled,
171 java_demangle_v3 (const char *mangled);
174 ada_demangle (const char *mangled, int options);
177 dlang_demangle (const char *mangled, int options);
190 /* Return non-zero iff NAME is the mangled form of a constructor name
209 /* Return non-zero iff NAME is the mangled form of a destructor name
217 representation of the mangled name, and the second pass turns th
    [all...]
  /external/skia/tools/
CrashHandler.cpp 41 char mangled[kMax], demangled[kMax]; local
43 unw_get_proc_name(&cursor, mangled, kMax, &offset);
47 abi::__cxa_demangle(mangled, demangled, &len, &ok);
49 SkDebugf("%s (+0x%zx)\n", ok == 0 ? demangled : mangled, (size_t)offset);
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.sh 8 * By default application code must explicitly refer to mangled symbol names,
  /external/pdfium/tools/drmemory/scripts/
common.py 169 def BoringCallers(mangled, use_re_wildcards):
170 """Return a list of 'boring' function names (optinally mangled)
195 ret.append(pair[1 if mangled else 0])
valgrind_test.py 391 boring_callers = common.BoringCallers(mangled=False, use_re_wildcards=False)
  /external/google-breakpad/src/common/
stabs_to_module.cc 48 static string Demangle(const string &mangled) {
50 char *demangled = abi::__cxa_demangle(mangled.c_str(), NULL, NULL, &status);
56 return string(mangled);
  /frameworks/base/tools/aapt2/link/
ReferenceLinker.cpp 185 Maybe<ResourceName> mangled = mangler->mangleName(reference.name.value()); local
186 return symbols->findByName(mangled ? mangled.value() : reference.name.value());
  /external/valgrind/callgrind/
bbcc.c 352 HChar *mangled = CLG_MALLOC("cl.bbcc.mcxt", need); local
353 p = VG_(sprintf)(mangled, "%s", cxt->fn[0]->name);
355 p += VG_(sprintf)(mangled+p, "'%d", rec_index +1);
357 p += VG_(sprintf)(mangled+p, "'%s", cxt->fn[i]->name);
359 return mangled;
  /external/google-breakpad/src/common/solaris/
dump_symbols.cc 177 std::string Demangle(const char *mangled) {
179 std::string str(mangled);
187 if ((status = cplus_demangle(mangled, demangled, demangleLen)) ==
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
allegrocl.swg 452 (defswig1 swig-defun ((name &optional (mangled-name name)
458 (mangle (excl::if* (cl::string-equal name mangled-name)
465 else (cl::intern mangled-name)))
480 (ff:def-foreign-call (,mangle ,mangled-name) ,ffargs ,@kwargs))
487 (defswig1 swig-defmethod ((name &optional (mangled-name name)
493 (mangle (cl::intern mangled-name))
506 (ff:def-foreign-call (,mangle ,mangled-name) ,ffargs ,@kwargs))
578 (defswig2 swig-defvar (name mangled-name &key type (ftype :unsigned-natural))
581 (ff:def-foreign-variable (,symbol ,mangled-name) :type ,ftype))))
  /external/curl/packages/vms/
build_gnv_curl_pcsi_text.com 76 $! If this is VAX and the file is on NFS, the names may be mangled.
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_posix_libcdep.cc 40 // using sanitizers; if it's not present, we'll just use the mangled name.
43 char *__cxa_demangle(const char *mangled, char *buffer,
  /toolchain/binutils/binutils-2.25/binutils/
ieee.c 2504 const char *name, *mangled, *cxx_class; local
2898 const char *name, *mangled; local
3097 const char *mangled; local
    [all...]
  /external/v8/tools/
tickprocessor.js 768 * Does not handle arguments and template arguments. The mangled names have
774 // Empty or non-mangled name.
  /prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/ST4/4.0.8/
ST4-4.0.8.jar 

Completed in 619 milliseconds

1 2 3