Searched refs:GetClangType (Results 1 - 25 of 40) sorted by relevance

12

/external/lldb/source/Expression/
H A DClangExpressionVariable.cpp78 ClangExpressionVariable::GetClangType() function in class:ClangExpressionVariable
80 return m_frozen_sp->GetClangType();
93 TypeFromUser tfu (m_frozen_sp->GetClangType());
H A DClangFunction.cpp96 m_function_return_type = m_function_ptr->GetClangType().GetFunctionReturnType();
143 function_clang_type = m_function_ptr->GetClangType();
170 ClangASTType clang_qual_type = m_arg_values.GetValueAtIndex(i)->GetClangType ();
365 arg_value->GetClangType().IsPointerType())
/external/lldb/include/lldb/Core/
H A DValueObjectConstResultChild.h48 GetClangType () function in class:lldb_private::ValueObjectConstResultChild
50 return ValueObjectChild::GetClangType();
H A DValue.h134 GetClangType();
/external/lldb/source/Core/
H A DValueObjectCast.cpp74 return GetClangType().GetNumChildren (true);
101 ClangASTType clang_type (GetClangType());
H A DValueObjectChild.cpp66 return GetClangType().GetNumChildren (true);
74 m_type_name = GetClangType().GetConstTypeName ();
95 ConstString qualified_name = GetClangType().GetConstTypeName();
122 m_value.SetClangType(GetClangType());
129 if (parent->GetClangType().IsPointerOrReferenceType ())
H A DValueObjectDynamicValue.cpp56 return m_value.GetClangType();
58 return m_parent->GetClangType();
68 return GetClangType().GetConstTypeName();
82 return GetClangType().GetConstQualifiedTypeName ();
94 return GetClangType().GetNumChildren (true);
248 corrected_type = m_parent->GetClangType();
272 if (GetClangType().IsAggregateType ())
H A DValueObjectConstResultImpl.cpp58 m_impl_backend->GetClangType(),
106 ClangASTType clang_type = m_impl_backend->GetClangType();
176 ClangASTType clang_type(m_impl_backend->GetClangType());
H A DValueObjectConstResult.cpp242 return m_value.GetClangType();
255 m_byte_size = GetClangType().GetByteSize();
268 return GetClangType().GetNumChildren (true);
275 m_type_name = GetClangType().GetConstTypeName ();
H A DValueObjectVariable.cpp87 ClangASTType type(GetClangType());
99 ClangASTType type(GetClangType());
224 if (GetClangType().IsAggregateType())
H A DValue.cpp198 const ClangASTType &ast_type = GetClangType();
221 Value::GetClangType () function in class:Value
278 const ClangASTType &ast_type = GetClangType();
330 const ClangASTType &ast_type = GetClangType();
625 const ClangASTType &clang_type = GetClangType();
H A DValueObject.cpp357 ValueObject::GetClangType () function in class:ValueObject
602 return GetClangType().GetIndexOfChildWithName (name.GetCString(), omit_empty_base_classes);
619 const size_t num_child_indexes = GetClangType().GetIndexOfChildMemberWithName (name.GetCString(),
710 child_clang_type = GetClangType().GetChildClangTypeAtIndex (&exe_ctx,
779 ClangASTType clang_type = GetClangType();
956 const uint64_t max_bytes = GetClangType().GetByteSize();
1009 const Encoding encoding = GetClangType().GetEncoding(count);
1122 ClangASTType clang_type = GetClangType();
1281 ClangASTType clang_type = GetClangType();
1307 if (GetClangType()
[all...]
H A DValueObjectSyntheticFilter.cpp89 return m_parent->GetClangType();
H A DValueObjectRegister.cpp328 m_type_name = GetClangType().GetConstTypeName ();
335 return GetClangType().GetNumChildren(true);
/external/lldb/source/DataFormatters/
H A DCocoa.cpp60 ValueObjectSP text(valobj.GetSyntheticChildAtOffset(offset, valobj.GetClangType().GetBasicTypeFromAST(lldb::eBasicTypeObjCID), true));
107 ValueObjectSP text(valobj.GetSyntheticChildAtOffset(offset, valobj.GetClangType(), true));
151 ValueObjectSP text(valobj.GetSyntheticChildAtOffset(offset, valobj.GetClangType(), true));
450 ClangASTType type(valobj.GetClangType());
H A DLibCxx.cpp333 m_count_sp = ValueObject::CreateValueObjectFromData("count", data, valobj_sp->GetExecutionContextRef(), shared_owners_sp->GetClangType());
346 m_weak_count_sp = ValueObject::CreateValueObjectFromData("count", data, valobj_sp->GetExecutionContextRef(), shared_weak_owners_sp->GetClangType());
467 m_element_type = data_type_finder_sp->GetClangType().GetPointeeType();
H A DLibCxxMap.cpp284 m_element_type = deref->GetClangType();
295 ClangASTType node_type(node->GetClangType());
H A DNSArray.cpp101 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext();
210 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext();
H A DCXXFormatterFunctions.cpp521 clang::ASTContext* ast = valobj.GetClangType().GetASTContext();
609 clang::ASTContext* ast = valobj.GetClangType().GetASTContext();
1141 ClangASTType type(valobj.GetClangType());
1171 const uint32_t type_info = valobj.GetClangType().GetTypeInfo();
1204 ClangASTType charstar (valobj.GetClangType().GetBasicTypeFromAST(eBasicTypeChar).GetPointerType());
1303 m_item_sp = ValueObject::CreateValueObjectFromAddress("item", item_ptr->GetValueAsUnsigned(0), m_exe_ctx_ref, item_ptr->GetClangType().GetPointeeType());
/external/lldb/source/Target/
H A DStackFrame.cpp648 const uint32_t pointer_type_flags = valobj_sp->GetClangType().GetTypeInfo (NULL);
762 if (valobj_sp->GetClangType().IsPointerToScalarType() && deref)
780 else if (valobj_sp->GetClangType().IsArrayOfScalarType() && deref)
805 if (valobj_sp->GetClangType().GetMinimumLanguage() != eLanguageTypeObjC)
807 else if (!valobj_sp->GetClangType().IsPointerType())
864 else if (valobj_sp->GetClangType().IsArrayType (NULL, NULL, &is_incomplete_array))
881 else if (valobj_sp->GetClangType().IsScalarType())
964 if (valobj_sp->GetClangType().IsPointerToScalarType() && deref)
982 else if (valobj_sp->GetClangType().IsArrayOfScalarType() && deref)
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp84 ClangASTType clang_type = value.GetClangType();
225 return in_value.GetClangType().IsPossibleDynamicType (NULL,
/external/lldb/include/lldb/Symbol/
H A DFunction.h569 GetClangType ();
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp42 return in_value.GetClangType().IsPossibleDynamicType (NULL, check_cxx, check_objc);
223 if (ClangASTContext::AreTypesSame (in_value.GetClangType(),
/external/lldb/include/lldb/DataFormatters/
H A DFormatNavigator.h291 ClangASTType ast_type(valobj.GetClangType());
587 bool canBeObjCDynamic = valobj.GetClangType().IsPossibleDynamicType (NULL,
676 if (Get(*static_value_sp.get(), static_value_sp->GetClangType(), entry, use_dynamic, reason))
/external/lldb/include/lldb/Expression/
H A DClangExpressionVariable.h220 GetClangType ();

Completed in 204 milliseconds

12