Home
last modified time | relevance | path

Searched refs:FindFirstType (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/lang/cpp/complete-type-check/
H A DTestCppIsTypeComplete.py13 found_type = self.target().FindFirstType(typename)
19 found_type = self.target().FindFirstType(typename)
24 found_type = self.target().FindFirstType(typename)
31 found_type = self.target().FindFirstType(typename)
67 void_type = self.target().FindFirstType("void")
72 int_type = self.target().FindFirstType("int")
/llvm-project-15.0.7/lldb/test/API/python_api/type/
H A DTestTypeList.py90 fuzz_type = target.FindFirstType(None)
93 task_type = target.FindFirstType('Task')
147 myint_type = target.FindFirstType('myint')
153 enum_type = target.FindFirstType('EnumType')
159 scoped_enum_type = target.FindFirstType('ScopedEnumType')
169 enum_uchar = target.FindFirstType('EnumUChar')
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_target.py25 obj.FindFirstType("dont_care")
27 obj.FindFirstType(None)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/dynamic-value/
H A DTestCppValueCast.py68 typeA = target.FindFirstType('DerivedA')
69 typeB = target.FindFirstType('DerivedB')
/llvm-project-15.0.7/lldb/examples/summaries/cocoa/
H A DNSURL.py38 ).FindFirstType('NSString').GetPointerType()
41 ).FindFirstType('NSURL').GetPointerType()
H A DNSBundle.py39 ).FindFirstType('NSString').GetPointerType()
/llvm-project-15.0.7/lldb/test/API/lang/c/unicode/
H A DTestUnicodeSymbols.py17 mytype = module.FindFirstType("foobár")
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBModule.h203 lldb::SBType FindFirstType(const char *name);
H A DSBTarget.h785 lldb::SBType FindFirstType(const char *type);
/llvm-project-15.0.7/lldb/test/API/python_api/module_section/
H A DTestModuleAndSection.py95 exe_module.FindFirstType(None)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/llgdb-tests/
H A Dllgdb.py128 print target.FindFirstType(cmd[1])
/llvm-project-15.0.7/lldb/test/API/functionalities/limit-debug-info/
H A DTestLimitDebugInfo.py16 type_ = exe.FindFirstType(name)
/llvm-project-15.0.7/lldb/source/API/
H A DSBModule.cpp436 lldb::SBType SBModule::FindFirstType(const char *name_cstr) { in FindFirstType() function in SBModule
446 sb_type = SBType(module_sp->FindFirstType(sc, name, exact_match)); in FindFirstType()
H A DSBTarget.cpp1748 lldb::SBType SBTarget::FindFirstType(const char *typename_cstr) { in FindFirstType() function in SBTarget
1763 module_sp->FindFirstType(sc, const_typename, exact_match)); in FindFirstType()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBModule.i270 FindFirstType (const char* name);
H A DSBTarget.i455 FindFirstType (const char* type);
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DModule.h446 lldb::TypeSP FindFirstType(const SymbolContext &sc, ConstString type_name,
/llvm-project-15.0.7/lldb/source/Core/
H A DModule.cpp967 lldb::TypeSP Module::FindFirstType(const SymbolContext &sc, ConstString name, in FindFirstType() function in Module