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

1 2

  /external/swiftshader/third_party/llvm-subzero/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /external/libcxx/test/support/
demangle.h 30 inline std::string demangle(const char* mangled_name) {
31 return mangled_name;
35 inline std::string demangle(const char* mangled_name) {
37 char* out = __cxxabiv1::__cxa_demangle(mangled_name, nullptr, nullptr, &status);
43 return mangled_name;
  /frameworks/compile/mclinker/include/mcld/Support/
Demangle.h 16 std::string demangleName(const std::string& mangled_name);
  /frameworks/base/tools/aapt2/
NameMangler_test.cpp 29 std::string mangled_name = NameMangler::MangleEntry(package, name); local
30 EXPECT_EQ(mangled_name, "android.appcompat$Platform.AppCompat");
33 std::string unmangled_name = mangled_name;
  /external/libmojo/base/android/
cxa_demangle_stub.cc 12 extern "C" char* __cxa_demangle(const char* mangled_name,
  /external/compiler-rt/lib/tsan/rtl/
tsan_new_delete.cc 27 #define OPERATOR_NEW_BODY(mangled_name) \
32 SCOPED_INTERCEPTOR_RAW(mangled_name, size); \
62 #define OPERATOR_DELETE_BODY(mangled_name) \
67 SCOPED_INTERCEPTOR_RAW(mangled_name, ptr); \
  /external/libcxxabi/fuzz/
cxa_demangle_fuzzer.cpp 6 __cxa_demangle(const char *mangled_name, char *buf, size_t *n, int *status);
  /toolchain/binutils/binutils-2.25/binutils/
cxxfilt.c 49 demangle_it (char *mangled_name)
57 if (mangled_name[0] == '.' || mangled_name[0] == '$')
59 if (strip_underscore && mangled_name[skip_first] == '_')
62 result = cplus_demangle (mangled_name + skip_first, flags);
65 printf ("%s", mangled_name);
68 if (mangled_name[0] == '.')
  /frameworks/compile/mclinker/lib/LD/
ELFBinaryReader.cpp 81 std::string mangled_name = pInput.path().filename().native(); local
82 for (std::string::iterator it = mangled_name.begin(), ie = mangled_name.end();
91 "_binary_" + mangled_name + "_start",
101 "_binary_" + mangled_name + "_end",
111 "_binary_" + mangled_name + "_size",
  /toolchain/binutils/binutils-2.25/gold/
binary.cc 152 std::string mangled_name = this->filename_; local
153 for (std::string::iterator p = mangled_name.begin();
154 p != mangled_name.end();
158 mangled_name = "_binary_" + mangled_name;
159 std::string start_symbol_name = mangled_name + "_start";
160 std::string end_symbol_name = mangled_name + "_end";
161 std::string size_symbol_name = mangled_name + "_size";
  /external/google-breakpad/src/common/dwarf/
functioninfo.cc 157 current_function_info_->mangled_name = data;
209 current_function_info_->mangled_name = iter->second->mangled_name;
functioninfo.h 52 string mangled_name; member in struct:dwarf2reader::FunctionInfo
  /development/vndk/tools/header-checker/header-abi-dumper/src/
abi_wrappers.cpp 141 std::string mangled_name; local
142 llvm::raw_string_ostream ostream(mangled_name);
145 return mangled_name;
522 std::string mangled_name = ABIWrapper::GetTypeLinkageName(basic_type); local
524 std::string linker_key = (mangled_name == "") ? qualified_name : mangled_name;
531 record_declp->set_mangled_record_name(mangled_name);
627 std::string mangled_name = local
632 mangled_name, true)) {
  /art/test/ti-agent/
jni_binder.cc 104 for (const std::string& mangled_name : mangled_names) {
105 if (mangled_name.empty()) {
108 void* sym = dlsym(RTLD_DEFAULT, mangled_name.c_str());
  /external/syslinux/core/fs/
fs.c 344 char mangled_name[FILENAME_MAX]; local
348 mangle_name(mangled_name, name);
349 rv = searchdir(mangled_name, flags);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
cxxabi.h 152 extern char* __cxa_demangle(const char* mangled_name,
  /frameworks/base/tools/aapt2/process/
SymbolTable.cpp 86 const ResourceName* mangled_name = name_with_package; local
90 mangled_name = &mangled_name_impl.value();
93 std::unique_ptr<Symbol> symbol = delegate_->FindByName(*mangled_name, sources_);

Completed in 614 milliseconds

1 2