Home
last modified time | relevance | path

Searched refs:getPointeeLoc (Results 1 – 20 of 20) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DValue.cpp24 return &IndVal1->getPointeeLoc() == &IndVal2->getPointeeLoc(); in areEquivalentIndirectionValues()
48 return OS << "Pointer(" << &cast<PointerValue>(Val).getPointeeLoc() << ")"; in operator <<()
H A DDataflowEnvironment.cpp1046 return &cast<RecordStorageLocation>(Val->getPointeeLoc()); in getImplicitObjectLocation()
1060 return &cast<RecordStorageLocation>(Val->getPointeeLoc()); in getBaseObjectLocation()
H A DHTMLLogger.cpp105 "pointee", [&] { dump(cast<PointerValue>(V).getPointeeLoc()); }); in dump()
H A DTransfer.cpp348 Env.setStorageLocation(*S, SubExprVal->getPointeeLoc()); in VisitUnaryOperator()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DComment.cpp139 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 DTypeLoc.cpp685 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 DTransGCAttrs.cpp77 TL = PT.getPointeeLoc(); in lookForAttribute()
79 TL = RT.getPointeeLoc(); in lookForAttribute()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DValue.h181 StorageLocation &getPointeeLoc() const { return PointeeLoc; } in getPointeeLoc() function
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DRecursiveASTVisitor.h1209 { 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 DTypeLoc.h1246 TypeLoc getPointeeLoc() const { in getPointeeLoc() function
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp150 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 DUncheckedOptionalAccessModel.cpp306 return &PointerVal->getPointeeLoc(); in getLocBehindPossiblePointer()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp1664 PtrToFunctionTL.getPointeeLoc().getAs<FunctionProtoTypeLoc>(); in addFunctionPointerConversion()
1666 ConvNamePtrToFunctionTL.getPointeeLoc().getAs<FunctionProtoTypeLoc>(); in addFunctionPointerConversion()
H A DTreeTransform.h5207 = 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 DSemaType.cpp1130 auto ObjCObjectTL = ObjCObjectPointerTL.getPointeeLoc() in actOnObjCProtocolQualifierType()
1206 ResultTL = ObjCObjectPointerTL.getPointeeLoc(); in actOnObjCTypeArgsAndProtocolQualifiers()
H A DSemaCodeComplete.cpp2908 TL = BlockPtr.getPointeeLoc().IgnoreParens(); in findTypeLocationForBlockDecl()
6156 Target = P.getPointeeLoc(); in GetPrototypeLoc()
H A DSemaDecl.cpp6657 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(), in FixInvalidVariablyModifiedTypeLoc()
6658 DstPTL.getPointeeLoc()); in FixInvalidVariablyModifiedTypeLoc()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6842 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 DDeclarationFragments.cpp53 TL = BlockPtr.getPointeeLoc().IgnoreParens(); in findTypeLocForBlockDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp1608 PteTyLoc = TyLoc.castAs<PointerTypeLoc>().getPointeeLoc(); in getPointeeTypeText()