/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
D | demangle_test.cc | 142 std::string mangled_name = "_Z1a"; in NestedMangledName() local 144 mangled_name += "IXL"; in NestedMangledName() 145 mangled_name += NestedMangledName(depth - 1); in NestedMangledName() 146 mangled_name += "EEE"; in NestedMangledName() 148 return mangled_name; in NestedMangledName()
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
D | var.rs | 39 mangled_name: Option<String>, field 52 mangled_name: Option<String>, in new() 60 mangled_name, in new() 88 pub fn mangled_name(&self) -> Option<&str> { in mangled_name() method 89 self.mangled_name.as_deref() in mangled_name() 106 if let Some(ref mangled) = self.mangled_name { in dot_attributes()
|
D | function.rs | 84 mangled_name: Option<String>, field 103 mangled_name: Option<String>, in new() 111 mangled_name, in new() 125 pub fn mangled_name(&self) -> Option<&str> { in mangled_name() method 126 self.mangled_name.as_deref() in mangled_name() 159 if let Some(ref mangled) = self.mangled_name { in dot_attributes() 736 let mangled_name = cursor_mangling(context, &cursor); in parse() localVariable 740 Self::new(name.clone(), mangled_name, sig, comment, kind, linkage); in parse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
D | Demangle.h | 31 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n, 43 char *microsoftDemangle(const char *mangled_name, char *buf, size_t *n,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Demangle/ |
D | Demangle.h | 26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
|
/third_party/skia/buildtools/third_party/libc++abi/ |
D | cxa_demangle_stub.cc | 17 _LIBCXXABI_WEAK char* __cxa_demangle(const char* mangled_name, in __cxa_demangle() argument
|
/third_party/libabigail/include/ |
D | abg-ir.h | 1573 const string& mangled_name = "", 1579 const interned_string& mangled_name = interned_string(), 2084 const string& mangled_name = "", 2679 const string& mangled_name = "", 2790 const string& mangled_name = "", 2796 const string& mangled_name = "", 2905 const string& mangled_name, 3017 const string& mangled_name, 3025 const string& mangled_name = "", 3795 const string& mangled_name = "", [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | gen_builtin_symbols.py | 1081 mangled_name = '' 1085 mangled_name += chr(ord('0') + size_key) 1087 mangled_name += chr(ord('A') + size_key - 10) 1088 mangled_name += get_basic_mangled_name(self.data['basic']) 1090 mangled_name += 'x' + str(self.data['arraySize']) 1091 return mangled_name 1477 mangled_name = function_name + '(' 1479 mangled_name += param.get_mangled_name() 1480 return mangled_name
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
D | mod.rs | 748 let link_name = self.mangled_name().unwrap_or_else(|| self.name()); in codegen() 3241 let mangled_name = in codegen() localVariable 3261 ctx.rust_ident_raw(&*mangled_name); in codegen() 3273 &Ident::new(&mangled_name, Span::call_site()), in codegen() 3308 let mangled_name = if is_toplevel { in codegen() localVariable 3324 &mangled_name, in codegen() 4066 let mangled_name = self.mangled_name(); in codegen() localVariable 4069 let seen_symbol_name = mangled_name.unwrap_or(&canonical_name); in codegen() 4150 let link_name = mangled_name.unwrap_or(name); in codegen() 5084 mangled_name: &str, in names_will_be_identical_after_mangling() [all …]
|
/third_party/elfutils/lib/ |
D | system.h | 204 extern char *__cxa_demangle (const char *mangled_name, char *output_buffer,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Demangle/ |
D | ItaniumDemangle.cpp | 4221 char *llvm::itaniumDemangle(const char *mangled_name, char *buf, size_t *n, in itaniumDemangle() argument 4223 if (mangled_name == nullptr || (buf != nullptr && n == nullptr)) { in itaniumDemangle() 4229 size_t len = std::strlen(mangled_name); in itaniumDemangle() 4230 if (len < 2 || strncmp(mangled_name, "_Z", 2)) { in itaniumDemangle() 4231 if (len < 4 || strncmp(mangled_name, "___Z", 4)) { in itaniumDemangle() 4242 demangle(mangled_name, mangled_name + len, db, internal_status); in itaniumDemangle() 4249 demangle(mangled_name, mangled_name + len, db, internal_status); in itaniumDemangle()
|
/third_party/libabigail/src/ |
D | abg-reader.cc | 3346 string mangled_name; in build_function_decl() local 3348 mangled_name = xml::unescape_xml_string(CHAR_STR(s)); in build_function_decl() 3407 mangled_name, vis, bind) in build_function_decl() 3410 mangled_name, vis, in build_function_decl() 3631 string mangled_name; in build_var_decl() local 3633 mangled_name = xml::unescape_xml_string(CHAR_STR(s)); in build_var_decl() 3645 locus, mangled_name, in build_var_decl()
|
D | abg-ir.cc | 13890 demangle_cplus_mangled_name(const string& mangled_name) in demangle_cplus_mangled_name() argument 13892 if (mangled_name.empty()) in demangle_cplus_mangled_name() 13897 char * str = abi::__cxa_demangle(mangled_name.c_str(), in demangle_cplus_mangled_name() 13899 string demangled_name = mangled_name; in demangle_cplus_mangled_name() 18555 const string& mangled_name, in typedef_decl() argument 18563 decl_base(env, name, locus, mangled_name, vis), in typedef_decl() 20088 const string& mangled_name, in function_decl() argument 20093 decl_base(function_type->get_environment(), name, locus, mangled_name, vis), in function_decl()
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes.c | 3381 char *mangled_name; in FindAddress() local 3403 mangled_name = alloca(strlen(name) + 1 + 1 + 1 + 3); /* \0 _ @ %d */ in FindAddress() 3404 if (!mangled_name) in FindAddress() 3407 sprintf(mangled_name, "_%s@%d", name, i*4); in FindAddress() 3409 address = (PPROC)GetProcAddress(handle, mangled_name); in FindAddress()
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 2551 mangled_name = alloca(strlen(name) + 1 + 1 + 1 + 3); /* \0 _ @ %d */ 2552 if (!mangled_name) 2567 sprintf(mangled_name, "_%s@%d", name, i*4); 2574 + sprintf(mangled_name, "%s@%d", name, i*4); 2576 + address = (PPROC)GetProcAddress(handle, mangled_name);
|
/third_party/libabigail/ |
D | ChangeLog | 43929 Support var decl & mangled_name attributes 43935 Initialize mangled_name.
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test22-pr19097-libstdc++.so.6.0.17.so.abi | 6634 …<parameter type-id='type-id-4' name='mangled_name' filepath='/tmp/legendre/spack-stage/spack-stage…
|