Home
last modified time | relevance | path

Searched refs:mangled_name (Results 1 – 12 of 12) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
Dtsan_new_delete.cc31 #define OPERATOR_NEW_BODY(mangled_name) \ argument
36 SCOPED_INTERCEPTOR_RAW(mangled_name, size); \
66 #define OPERATOR_DELETE_BODY(mangled_name) \ argument
71 SCOPED_INTERCEPTOR_RAW(mangled_name, ptr); \
/external/llvm/test/Transforms/SampleProfile/
Dsyntax.ll17 ; BAD-SAMPLE-LINE: error: {{.*}}bad_sample_line.prof:3: Expected 'NUM[.NUM]: NUM[ mangled_name:NUM]…
18 ; BAD-LINE-VALUES: error: {{.*}}bad_line_values.prof:2: Expected 'mangled_name:NUM:NUM', found -1: …
19 …rror: {{.*}}bad_discriminator_value.prof:2: Expected 'NUM[.NUM]: NUM[ mangled_name:NUM]*', found 1…
20 ; BAD-SAMPLES: error: {{.*}}bad_samples.prof:2: Expected 'NUM[.NUM]: NUM[ mangled_name:NUM]*', foun…
/external/google-breakpad/src/common/dwarf/
Dfunctioninfo.cc157 current_function_info_->mangled_name = data; in ProcessAttributeString()
209 current_function_info_->mangled_name = iter->second->mangled_name; in ProcessAttributeReference()
Dfunctioninfo.h52 string mangled_name; member
/external/google-breakpad/src/common/
Ddwarf_cu_to_module_unittest.cc205 const char* mangled_name,
213 const string &mangled_name);
434 const char* mangled_name, in DefineFunction() argument
455 if (mangled_name) in DefineFunction()
458 mangled_name); in DefineFunction()
469 const string &mangled_name) { in DeclarationDIE() argument
476 if (!mangled_name.empty()) in DeclarationDIE()
479 mangled_name); in DeclarationDIE()
/external/libcxxabi/include/
Dcxxabi.h152 extern char* __cxa_demangle(const char* mangled_name,
/external/elfutils/lib/
Dsystem.h142 extern char *__cxa_demangle (const char *mangled_name, char *output_buffer,
/external/clang/bindings/python/tests/cindex/
Dtest_cursor.py372 assert foo.mangled_name in ('_Z3fooii', '__Z3fooii', '?foo@@YAHHH')
/external/libcxxabi/src/
Dcxa_demangle.cpp4903 __cxa_demangle(const char* mangled_name, char* buf, size_t* n, int* status) in __cxa_demangle() argument
4905 if (mangled_name == nullptr || (buf != nullptr && n == nullptr)) in __cxa_demangle()
4923 size_t len = std::strlen(mangled_name); in __cxa_demangle()
4924 demangle(mangled_name, mangled_name + len, db, in __cxa_demangle()
4933 demangle(mangled_name, mangled_name + len, db, internal_status); in __cxa_demangle()
/external/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp417 extern "C" char *__cxa_demangle(const char *mangled_name, char *output_buffer,
/external/valgrind/coregrind/m_demangle/
Dcp-demangle.c6007 __cxa_demangle (const char *mangled_name, char *output_buffer, in __cxa_demangle() argument
6013 if (mangled_name == NULL) in __cxa_demangle()
6027 demangled = d_demangle (mangled_name, DMGL_PARAMS | DMGL_TYPES, &alc); in __cxa_demangle()
6092 __gcclibcxx_demangle_callback (const char *mangled_name, in __gcclibcxx_demangle_callback() argument
6098 if (mangled_name == NULL || callback == NULL) in __gcclibcxx_demangle_callback()
6101 status = d_demangle_callback (mangled_name, DMGL_PARAMS | DMGL_TYPES, in __gcclibcxx_demangle_callback()
/external/clang/bindings/python/clang/
Dcindex.py1250 def mangled_name(self): member in Cursor