| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | Value.cpp | 24 return &IndVal1->getPointeeLoc() == &IndVal2->getPointeeLoc(); in areEquivalentIndirectionValues() 48 return OS << "Pointer(" << &cast<PointerValue>(Val).getPointeeLoc() << ")"; in operator <<()
|
| H A D | DataflowEnvironment.cpp | 1046 return &cast<RecordStorageLocation>(Val->getPointeeLoc()); in getImplicitObjectLocation() 1060 return &cast<RecordStorageLocation>(Val->getPointeeLoc()); in getBaseObjectLocation()
|
| H A D | HTMLLogger.cpp | 105 "pointee", [&] { dump(cast<PointerValue>(V).getPointeeLoc()); }); in dump()
|
| H A D | Transfer.cpp | 348 Env.setStorageLocation(*S, SubExprVal->getPointeeLoc()); in VisitUnaryOperator()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Comment.cpp | 139 return PointerTL.getPointeeLoc().getUnqualifiedLoc(); in lookThroughTypedefOrTypeAliasLocs() 142 return ReferenceTL.getPointeeLoc().getUnqualifiedLoc(); in lookThroughTypedefOrTypeAliasLocs() 147 return BlockPointerTL.getPointeeLoc().getUnqualifiedLoc(); in lookThroughTypedefOrTypeAliasLocs() 149 return MemberPointerTL.getPointeeLoc().getUnqualifiedLoc(); in lookThroughTypedefOrTypeAliasLocs()
|
| H A D | TypeLoc.cpp | 685 return Visit(T.getPointeeLoc()); in VisitPointerTypeLoc() 689 return Visit(T.getPointeeLoc()); in VisitBlockPointerTypeLoc() 693 return Visit(T.getPointeeLoc()); in VisitReferenceTypeLoc() 697 return Visit(T.getPointeeLoc()); in VisitMemberPointerTypeLoc()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | TransGCAttrs.cpp | 77 TL = PT.getPointeeLoc(); in lookForAttribute() 79 TL = RT.getPointeeLoc(); in lookForAttribute()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | Value.h | 181 StorageLocation &getPointeeLoc() const { return PointeeLoc; } in getPointeeLoc() function
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | RecursiveASTVisitor.h | 1209 { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) 1212 { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) 1215 { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) 1218 { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); }) 1227 TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); 1440 { TRY_TO(TraverseTypeLoc(TL.getPointeeLoc())); })
|
| H A D | TypeLoc.h | 1246 TypeLoc getPointeeLoc() const { in getPointeeLoc() function
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 150 auto L = Visit(T.getPointeeLoc()); in HandlePointer() 1409 return TraverseTypeLoc(L.getPointeeLoc()); in TraverseMemberPointerTypeLoc()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/ |
| H A D | UncheckedOptionalAccessModel.cpp | 306 return &PointerVal->getPointeeLoc(); in getLocBehindPossiblePointer()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaLambda.cpp | 1664 PtrToFunctionTL.getPointeeLoc().getAs<FunctionProtoTypeLoc>(); in addFunctionPointerConversion() 1666 ConvNamePtrToFunctionTL.getPointeeLoc().getAs<FunctionProtoTypeLoc>(); in addFunctionPointerConversion()
|
| H A D | TreeTransform.h | 5207 = getDerived().TransformType(TLB, TL.getPointeeLoc()); in TransformPointerType() 5225 PointeeType != TL.getPointeeLoc().getType()) { in TransformPointerType() 5245 = getDerived().TransformType(TLB, TL.getPointeeLoc()); in TransformBlockPointerType() 5251 PointeeType != TL.getPointeeLoc().getType()) { in TransformBlockPointerType() 5274 QualType PointeeType = getDerived().TransformType(TLB, TL.getPointeeLoc()); in TransformReferenceType() 5322 QualType PointeeType = getDerived().TransformType(TLB, TL.getPointeeLoc()); in TransformMemberPointerType() 7496 QualType PointeeType = getDerived().TransformType(TLB, TL.getPointeeLoc()); in TransformObjCObjectPointerType() 7502 PointeeType != TL.getPointeeLoc().getType()) { in TransformObjCObjectPointerType()
|
| H A D | SemaType.cpp | 1130 auto ObjCObjectTL = ObjCObjectPointerTL.getPointeeLoc() in actOnObjCProtocolQualifierType() 1206 ResultTL = ObjCObjectPointerTL.getPointeeLoc(); in actOnObjCTypeArgsAndProtocolQualifiers()
|
| H A D | SemaCodeComplete.cpp | 2908 TL = BlockPtr.getPointeeLoc().IgnoreParens(); in findTypeLocationForBlockDecl() 6156 Target = P.getPointeeLoc(); in GetPrototypeLoc()
|
| H A D | SemaDecl.cpp | 6657 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(), in FixInvalidVariablyModifiedTypeLoc() 6658 DstPTL.getPointeeLoc()); in FixInvalidVariablyModifiedTypeLoc()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 6842 return PointeeMatcher.matches(Node.getPointeeLoc(), Finder, Builder); in AST_MATCHER_P() 6870 return ReferentMatcher.matches(Node.getPointeeLoc(), Finder, Builder); in AST_MATCHER_P()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 53 TL = BlockPtr.getPointeeLoc().IgnoreParens(); in findTypeLocForBlockDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | UnsafeBufferUsage.cpp | 1608 PteTyLoc = TyLoc.castAs<PointerTypeLoc>().getPointeeLoc(); in getPointeeTypeText()
|