Home
last modified time | relevance | path

Searched defs:GetStartLoc (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp102 struct GetStartLoc : TypeLocVisitor<GetStartLoc, SourceLocation> { struct
103 SourceLocation VisitParenTypeLoc(ParenTypeLoc T) { in VisitParenTypeLoc()
111 SourceLocation VisitPointerTypeLoc(PointerTypeLoc T) { in VisitPointerTypeLoc()
115 SourceLocation VisitMemberPointerTypeLoc(MemberPointerTypeLoc T) { in VisitMemberPointerTypeLoc()
119 SourceLocation VisitBlockPointerTypeLoc(BlockPointerTypeLoc T) { in VisitBlockPointerTypeLoc()
123 SourceLocation VisitReferenceTypeLoc(ReferenceTypeLoc T) { in VisitReferenceTypeLoc()
127 SourceLocation VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc T) { in VisitObjCObjectPointerTypeLoc()
135 SourceLocation VisitTypeLoc(TypeLoc T) { in VisitTypeLoc()
142 SourceLocation VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc T) { in VisitFunctionProtoTypeLoc()
149 template <class PtrLoc> SourceLocation HandlePointer(PtrLoc T) { in HandlePointer()