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.cpp96 struct GetStartLoc : TypeLocVisitor<GetStartLoc, SourceLocation> { struct
97 SourceLocation VisitParenTypeLoc(ParenTypeLoc T) { in VisitParenTypeLoc()
105 SourceLocation VisitPointerTypeLoc(PointerTypeLoc T) { in VisitPointerTypeLoc()
109 SourceLocation VisitMemberPointerTypeLoc(MemberPointerTypeLoc T) { in VisitMemberPointerTypeLoc()
113 SourceLocation VisitBlockPointerTypeLoc(BlockPointerTypeLoc T) { in VisitBlockPointerTypeLoc()
117 SourceLocation VisitReferenceTypeLoc(ReferenceTypeLoc T) { in VisitReferenceTypeLoc()
121 SourceLocation VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc T) { in VisitObjCObjectPointerTypeLoc()
129 SourceLocation VisitTypeLoc(TypeLoc T) { in VisitTypeLoc()
136 SourceLocation VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc T) { in VisitFunctionProtoTypeLoc()
143 template <class PtrLoc> SourceLocation HandlePointer(PtrLoc T) { in HandlePointer()