Home
last modified time | relevance | path

Searched refs:IsPossibleDynamicType (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompilerType.h124 return IsPossibleDynamicType(target_type, true, false);
127 bool IsPossibleDynamicType(CompilerType *target_type, // Can pass nullptr
H A DTypeSystem.h181 virtual bool IsPossibleDynamicType(lldb::opaque_compiler_type_t type,
H A DClangASTContext.h611 bool IsPossibleDynamicType(lldb::opaque_compiler_type_t type,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp228 bool CompilerType::IsPossibleDynamicType(CompilerType *dynamic_pointee_type, in IsPossibleDynamicType() function in CompilerType
232 return m_type_system->IsPossibleDynamicType(m_type, dynamic_pointee_type, in IsPossibleDynamicType()
H A DClangASTContext.cpp3738 bool ClangASTContext::IsPossibleDynamicType(lldb::opaque_compiler_type_t type, in IsPossibleDynamicType() function in ClangASTContext
3792 return IsPossibleDynamicType(llvm::cast<clang::TypedefType>(qual_type) in IsPossibleDynamicType()
3800 return IsPossibleDynamicType(llvm::cast<clang::AutoType>(qual_type) in IsPossibleDynamicType()
3807 return IsPossibleDynamicType(llvm::cast<clang::ElaboratedType>(qual_type) in IsPossibleDynamicType()
3814 return IsPossibleDynamicType( in IsPossibleDynamicType()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp50 return in_value.GetCompilerType().IsPossibleDynamicType(NULL, check_cxx, in CouldHaveDynamicValue()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp242 return in_value.GetCompilerType().IsPossibleDynamicType( in CouldHaveDynamicValue()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DValueObject.cpp463 if (IsPossibleDynamicType()) in GetChildAtIndex()
561 if (IsPossibleDynamicType()) in GetChildMemberWithName()
1696 bool ValueObject::IsPossibleDynamicType() { in IsPossibleDynamicType() function in ValueObject
1702 return GetCompilerType().IsPossibleDynamicType(NULL, true, true); in IsPossibleDynamicType()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValueObject.h412 virtual bool IsPossibleDynamicType();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp894 compiler_type.IsPossibleDynamicType(nullptr, check_cpp, check_objc); in GetPossibleFormattersMatches()