Home
last modified time | relevance | path

Searched refs:pointee_type (Results 1 – 6 of 6) sorted by relevance

/external/lldb/source/Symbol/
DClangASTType.cpp447 ClangASTType::IsPointerType (ClangASTType *pointee_type) const in IsPointerType()
466 if (pointee_type) in IsPointerType()
467pointee_type->SetClangType (m_ast, cast<ObjCObjectPointerType>(qual_type)->getPointeeType()); in IsPointerType()
470 if (pointee_type) in IsPointerType()
471pointee_type->SetClangType (m_ast, cast<BlockPointerType>(qual_type)->getPointeeType()); in IsPointerType()
474 if (pointee_type) in IsPointerType()
475pointee_type->SetClangType (m_ast, cast<PointerType>(qual_type)->getPointeeType()); in IsPointerType()
478 if (pointee_type) in IsPointerType()
479pointee_type->SetClangType (m_ast, cast<MemberPointerType>(qual_type)->getPointeeType()); in IsPointerType()
482 … (m_ast, cast<TypedefType>(qual_type)->getDecl()->getUnderlyingType()).IsPointerType(pointee_type); in IsPointerType()
[all …]
DVariable.cpp732 ClangASTType pointee_type(clang_type.GetPointeeType()); in PrivateAutoComplete() local
739 pointee_type.GetCanonicalType(), in PrivateAutoComplete()
750 pointee_type.GetCanonicalType(), in PrivateAutoComplete()
/external/chromium_org/tools/clang/blink_gc_plugin/
DConfig.h172 clang::CXXRecordDecl* pointee_type = variable
174 if (!pointee_type)
177 if (!IsVisitor(pointee_type->getName()))
/external/lldb/include/lldb/Symbol/
DClangASTType.h198 IsPointerType (ClangASTType *pointee_type = NULL) const;
201 IsPointerOrReferenceType (ClangASTType *pointee_type = NULL) const;
204 IsReferenceType (ClangASTType *pointee_type = NULL) const;
564 CreateMemberPointerType (const ClangASTType &pointee_type) const;
/external/lldb/source/Expression/
DClangExpressionDeclMap.cpp997 ClangASTType pointee_type = this_type->GetClangForwardType().GetPointeeType(); in FindExternalVisibleDecls() local
999 if (pointee_type.IsValid()) in FindExternalVisibleDecls()
1007 TypeFromUser class_user_type(pointee_type); in FindExternalVisibleDecls()
/external/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp6953 Type *pointee_type = ResolveTypeUID(type_die_offset); in ParseType() local
6956 ClangASTType pointee_clang_type = pointee_type->GetClangForwardType(); in ParseType()