| /llvm-project-15.0.7/lldb/scripts/android/ |
| H A D | host_art_bt.py | 36 'function': symbol.GetName(), 48 art_stack_visitor.GetName() + """.GetMethod()""") 62 if art_method_name != symbol.GetName(): 77 …if frame.GetSymbol() and (frame.GetSymbol().GetName() == 'art_quick_invoke_stub' or frame.GetSymbo… 86 if frame.GetSymbol() and frame.GetSymbol().GetName( 102 art_stack_visitor.GetName() + """.GetMethod()""") 129 if frame.GetSymbol() and (frame.GetSymbol().GetName() == 154 if frame.GetSymbol() and frame.GetSymbol().GetName( 165 art_stack_visitor.GetName() + """.GetMethod()""") 179 art_stack_visitor.GetName() + [all …]
|
| /llvm-project-15.0.7/lldb/test/API/macosx/queues/ |
| H A D | TestQueues.py | 39 (queue.GetName(), queue.GetQueueID())) 46 (queue.GetName(), 52 (queue.GetName(), 76 (queue.GetName(), 94 (queue.GetName(), 103 (queue.GetName(), idx)) 107 (queue.GetName(), 114 (queue.GetName(), 115 queue.GetName(), 199 if th.GetName() == "utility QoS": [all …]
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBTypeCategory.cpp | 71 const char *SBTypeCategory::GetName() { in GetName() function in SBTypeCategory 76 return m_opaque_sp->GetName(); in GetName() 218 ConstString(spec.GetName()), format_sp); in GetFormatForType() 364 ConstString(type_name.GetName())); in DeleteTypeFormat() 367 ConstString(type_name.GetName())); in DeleteTypeFormat() 438 ConstString(type_name.GetName())); in DeleteTypeSummary() 441 ConstString(type_name.GetName())); in DeleteTypeSummary() 478 ConstString(type_name.GetName())); in DeleteTypeFilter() 481 ConstString(type_name.GetName())); in DeleteTypeFilter() 552 ConstString(type_name.GetName())); in DeleteTypeSynthetic() [all …]
|
| H A D | SBTypeNameSpecifier.cpp | 55 const char *SBTypeNameSpecifier::GetName() { in GetName() function in SBTypeNameSpecifier 61 return m_opaque_sp->GetName(); in GetName() 90 description.Printf("SBTypeNameSpecifier(%s,%s)", GetName(), in GetDescription() 121 if (GetName() == nullptr || rhs.GetName() == nullptr) in IsEqualTo() 124 return (strcmp(GetName(), rhs.GetName()) == 0); in IsEqualTo()
|
| H A D | SBFunction.cpp | 54 const char *SBFunction::GetName() const { in GetName() function in SBFunction 59 cstr = m_opaque_ptr->GetName().AsCString(); in GetName() 100 m_opaque_ptr->GetID(), m_opaque_ptr->GetName().AsCString()); in GetDescription() 103 s.Printf(", type = %s", func_type->GetName().AsCString()); in GetDescription() 178 return variable_sp->GetName().GetCString(); in GetArgumentName()
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/template/ |
| H A D | TestTemplateArgs.py | 63 expr_result.GetType().GetName(), "int", 80 expr_result.GetType().GetName(), "int", 91 self.assertEquals(c1.GetType().GetName(), 'C<float, T1>') 93 self.assertEquals(f1.GetType().GetName(), 'float') 102 self.assertEquals(f2.GetType().GetName(), 'double') 105 self.assertEquals(f3.GetType().GetName(), 'double') 108 self.assertEquals(f4.GetType().GetName(), 'int') 124 self.assertEqual(member.GetType().GetName(), 135 expr_result.GetType().GetName(), "int", 144 self.assertEqual(subclass.GetType().GetName(), [all …]
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/class-template-parameter-pack/ |
| H A D | TestTemplatePackArgs.py | 29 self.assertEqual(only_pack.GetType().GetTemplateArgumentType(0).GetName(), 'int') 30 self.assertEqual(only_pack.GetType().GetTemplateArgumentType(1).GetName(), 'char') 31 self.assertEqual(only_pack.GetType().GetTemplateArgumentType(2).GetName(), 'double') 34 self.assertEqual(nested_template.GetName(), 'D<int, int, bool>') 36 self.assertEqual(nested_template.GetTemplateArgumentType(0).GetName(), 'int') 37 self.assertEqual(nested_template.GetTemplateArgumentType(1).GetName(), 'int') 38 self.assertEqual(nested_template.GetTemplateArgumentType(2).GetName(), 'bool')
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/objc-dyn-sbtype/ |
| H A D | TestObjCDynamicSBType.py | 56 object_type.GetName(), "MyDerivedClass *", 59 base_type.GetName(), "MyDerivedClass *", 64 object_pointee_type.GetName(), "MyDerivedClass", 67 base_pointee_type.GetName(), "MyDerivedClass", 71 object_pointee_type.GetDirectBaseClassAtIndex(0).GetName(), "MyBaseClass", 74 base_pointee_type.GetDirectBaseClassAtIndex(0).GetName(), "MyBaseClass", 78 0).GetName() == "NSObject", "The dynamic type for NSObject can go up the hierarchy") 80 0).GetName() == "NSObject", "The dynamic type for Base can go up the hierarchy")
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/ |
| H A D | TestWasm.py | 112 self.assertEquals("code", code_section.GetName()) 116 self.assertEquals(".debug_info", debug_info_section.GetName()) 124 self.assertEquals(".debug_line", debug_line_section.GetName()) 128 self.assertEquals(".debug_str", debug_str_section.GetName()) 164 self.assertEquals("code", code_section.GetName()) 168 self.assertEquals(".debug_info", debug_info_section.GetName()) 176 self.assertEquals(".debug_line", debug_line_section.GetName()) 180 self.assertEquals(".debug_str", debug_str_section.GetName()) 208 self.assertEquals("code", code_section.GetName()) 212 self.assertEquals(".debug_info", debug_info_section.GetName()) [all …]
|
| H A D | TestRecognizeBreakpoint.py | 116 self.assertEqual(thread_0.GetName(), "one", "Thread_0 is called one") 120 self.assertEqual(thread_1.GetName(), "two", "Thread_0 is called two") 133 self.assertEqual(thread_0.GetName(), "one", "Thread_0 is called one") 137 self.assertEqual(thread_1.GetName(), "three", "Thread_0 is called three")
|
| /llvm-project-15.0.7/lldb/source/Expression/ |
| H A D | Materializer.cpp | 87 m_persistent_variable_sp->GetName().GetCString(), in MakeAllocation() 125 m_persistent_variable_sp->GetName().AsCString(), in MakeAllocation() 144 m_persistent_variable_sp->GetName().GetCString(), in DestroyAllocation() 527 GetName().AsCString()); in Materialize() 625 GetName().AsCString()); in Dematerialize() 660 GetName().AsCString()); in Dematerialize() 756 virtual ConstString GetName() const = 0; 811 ConstString GetName() const override { return m_variable_sp->GetName(); } in GetName() function in EntityVariable 1037 ? m_delegate->GetName() in Dematerialize() 1227 m_symbol.GetName().AsCString()); in Materialize() [all …]
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ValueObjectSyntheticFilter.cpp | 55 SetName(parent.GetName()); in ValueObjectSynthetic() 171 GetName().AsCString(), m_parent_type_name.AsCString(), in UpdateValue() 182 GetName().AsCString()); in UpdateValue() 204 GetName().AsCString()); in UpdateValue() 215 GetName().AsCString()); in UpdateValue() 223 GetName().AsCString()); in UpdateValue() 242 GetName().AsCString(), idx); in GetChildAtIndex() 261 GetName().AsCString(), idx); in GetChildAtIndex() 270 GetName().AsCString(), idx, static_cast<void *>(synth_guy.get()), in GetChildAtIndex() 292 GetName().AsCString(), idx, can_create ? "yes" : "no", in GetChildAtIndex() [all …]
|
| /llvm-project-15.0.7/lldb/test/API/python_api/class_members/ |
| H A D | TestSBTypeClassMembers.py | 62 ).GetFunctionReturnType().GetName(), 72 3).GetName(), "Base::sfunc not found") 81 ).GetTypeAtIndex(1).GetName(), 84 Base.GetMemberFunctionAtIndex(1).GetName(), "Base::bar not found") 94 0).GetReturnType().GetName(), "Thingy::init returns an id") 100 0).GetName(), "Thingy::foo takes an int")
|
| /llvm-project-15.0.7/lldb/examples/functions/ |
| H A D | main.cpp | 224 const char *func_demangled_name = function.GetName(); in main() 256 printf("%s %s\n", return_type.GetName(), in main() 268 return_type.GetName(), class_name_start); in main() 275 return_type.GetName(), class_name_len, in main() 295 printf("(%s)", function_arg_type.GetName()); in main() 304 printf("%s ", return_type.GetName()); in main() 322 function_arg_type.GetName()); in main()
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/dereferencing_references/ |
| H A D | TestCPPDereferencingReferences.py | 17 self.assertEqual(lref_val.Dereference().GetType().GetName(), "TTT") 21 self.assertEqual(rref_val.Dereference().GetType().GetName(), "TTT") 25 self.assertEqual(td_val.Dereference().GetType().GetName(), "int")
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDIE.cpp | 230 void DWARFDIE::GetName(Stream &s) const { in GetName() function in DWARFDIE 386 context.push_back({CompilerContextKind::Module, ConstString(GetName())}); in GetDeclContext() 389 context.push_back({CompilerContextKind::Namespace, ConstString(GetName())}); in GetDeclContext() 392 context.push_back({CompilerContextKind::Struct, ConstString(GetName())}); in GetDeclContext() 395 context.push_back({CompilerContextKind::Union, ConstString(GetName())}); in GetDeclContext() 398 context.push_back({CompilerContextKind::Class, ConstString(GetName())}); in GetDeclContext() 401 context.push_back({CompilerContextKind::Enum, ConstString(GetName())}); in GetDeclContext() 412 context.push_back({CompilerContextKind::Typedef, ConstString(GetName())}); in GetDeclContext()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | RegisterContextUnwind.cpp | 47 return sym_ctx.symbol->GetName(); in GetSymbolOrFunctionName() 49 return sym_ctx.function->GetName(); in GetSymbolOrFunctionName() 1296 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB)); in SavedLocationForRegister() 1356 return_address_reg.GetName(), in SavedLocationForRegister() 1381 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB), in SavedLocationForRegister() 1402 return_address_reg.GetName(), in SavedLocationForRegister() 1492 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB)); in SavedLocationForRegister() 1539 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB)); in SavedLocationForRegister() 1558 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB), in SavedLocationForRegister() 1559 regnum.GetName(), regnum.GetAsKind(eRegisterKindLLDB)); in SavedLocationForRegister() [all …]
|
| H A D | SectionLoadList.cpp | 72 section.get(), module_sp->GetFileSpec(), section->GetName(), in SetSectionLoadAddress() 112 section->GetName().GetCString(), in SetSectionLoadAddress() 114 ats_pos->second->GetName().GetCString()); in SetSectionLoadAddress() 130 section->GetName().AsCString(), load_addr); in SetSectionLoadAddress() 152 section_sp->GetName().AsCString()); in SetSectionUnloaded() 189 module_name.c_str(), section_sp->GetName().AsCString(), load_addr); in SetSectionUnloaded()
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/class_static/ |
| H A D | TestStaticVariables.py | 138 name = val.GetName() 158 self.assertEqual(val.GetName(), 'A::g_points') 163 self.assertEqual(val.GetName(), 'argc') 167 self.assertEqual(val.GetName(), 'argv') 171 self.assertEqual(val.GetName(), 'hello_world')
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/template-arguments/ |
| H A D | TestCppTemplateArguments.py | 19 self.assertEqual(template_type.GetTemplateArgumentType(0).GetName(), "int") 23 self.assertEqual(template_type.GetTemplateArgumentType(1).GetName(), "unsigned int") 28 self.assertEqual(template_type.GetTemplateArgumentType(2).GetName(), "")
|
| /llvm-project-15.0.7/lldb/source/DataFormatters/ |
| H A D | TypeCategory.cpp | 325 GetRegexTypeFormatsContainer()->GetExact(ConstString(type_sp->GetName()), in GetFormatForType() 328 GetTypeFormatsContainer()->GetExact(ConstString(type_sp->GetName()), in GetFormatForType() 342 ConstString(type_sp->GetName()), retval); in GetSummaryForType() 344 GetTypeSummariesContainer()->GetExact(ConstString(type_sp->GetName()), in GetSummaryForType() 357 GetRegexTypeFiltersContainer()->GetExact(ConstString(type_sp->GetName()), in GetFilterForType() 360 GetTypeFiltersContainer()->GetExact(ConstString(type_sp->GetName()), in GetFilterForType() 374 ConstString(type_sp->GetName()), retval); in GetSyntheticForType() 376 GetTypeSyntheticsContainer()->GetExact(ConstString(type_sp->GetName()), in GetSyntheticForType() 465 stream.Printf("%s (%s", GetName(), (IsEnabled() ? "enabled" : "disabled")); in GetDescription()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/objc_type/ |
| H A D | TestObjCType.py | 51 aBarType.GetName(), "Bar *", 60 self.assertEquals(aFooType.GetName(), "Foo", "Foo has the right name") 66 aBarField.GetName(), "_iVar",
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | Function.cpp | 46 int result = ConstString::Compare(a.GetName(), b.GetName()); in Compare() 59 ConstString FunctionInfo::GetName() const { return m_name; } in GetName() function in FunctionInfo 91 s->PutCString(m_mangled.GetName().AsCString()); in DumpStopContext() 96 ConstString InlineFunctionInfo::GetName() const { in GetName() function in InlineFunctionInfo 98 return m_mangled.GetName(); in GetName() 353 GetName().GetCString(), m_comp_unit->GetPrimaryFile().GetPath())); in GetBlock() 366 ConstString name = GetName(); in GetDescription() 654 ConstString Function::GetName() const { in GetName() function in Function 655 return m_mangled.GetName(); in GetName() 659 return m_mangled.GetName(Mangled::ePreferDemangledWithoutArguments); in GetNameNoArguments()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBType.i | 29 GetName (); 50 …name = property(GetName, None, doc='''A read only property that returns the name for this member a… 81 GetName (); 671 %feature("autodoc", "GetName() -> string") GetName; 690 ") GetName; 692 GetName(); 906 …name = property(GetName, None, doc='''A read only property that returns the name for this type as …
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value/ |
| H A D | TestCppValueCast.py | 90 print("child name:", child.GetName()) 100 print("child name:", child.GetName()) 119 print("child name:", child.GetName()) 129 print("child name:", child.GetName())
|