Home
last modified time | relevance | path

Searched refs:AddSourceLocation (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Serialization/
DASTWriterStmt.cpp63 Record.AddSourceLocation(ArgInfo.TemplateKWLoc); in AddTemplateKWAndArgsInfo()
64 Record.AddSourceLocation(ArgInfo.LAngleLoc); in AddTemplateKWAndArgsInfo()
65 Record.AddSourceLocation(ArgInfo.RAngleLoc); in AddTemplateKWAndArgsInfo()
75 Record.AddSourceLocation(S->getSemiLoc()); in VisitNullStmt()
85 Record.AddSourceLocation(S->getLBracLoc()); in VisitCompoundStmt()
86 Record.AddSourceLocation(S->getRBracLoc()); in VisitCompoundStmt()
93 Record.AddSourceLocation(S->getKeywordLoc()); in VisitSwitchCase()
94 Record.AddSourceLocation(S->getColonLoc()); in VisitSwitchCase()
102 Record.AddSourceLocation(S->getEllipsisLoc()); in VisitCaseStmt()
116 Record.AddSourceLocation(S->getIdentLoc()); in VisitLabelStmt()
[all …]
DASTWriterDecl.cpp157 Record.AddSourceLocation(typeParams->getLAngleLoc()); in AddObjCTypeParamList()
158 Record.AddSourceLocation(typeParams->getRAngleLoc()); in AddObjCTypeParamList()
325 Record.AddSourceLocation(D->getLocStart()); in VisitPragmaCommentDecl()
337 Record.AddSourceLocation(D->getLocStart()); in VisitPragmaDetectMismatchDecl()
357 Record.AddSourceLocation(D->getLocStart()); in VisitTypeDecl()
402 Record.AddSourceLocation(D->getRBraceLoc()); in VisitTagDecl()
430 Record.AddSourceLocation(MemberInfo->getPointOfInstantiation()); in VisitEnumDecl()
501 Record.AddSourceLocation(D->getInnerLocStart()); in VisitDeclaratorDecl()
532 Record.AddSourceLocation(D->getLocEnd()); in VisitFunctionDecl()
545 Record.AddSourceLocation(MemberInfo->getPointOfInstantiation()); in VisitFunctionDecl()
[all …]
DASTWriter.cpp198 Record.AddSourceLocation(T->getLBracketLoc()); in VisitVariableArrayType()
199 Record.AddSourceLocation(T->getRBracketLoc()); in VisitVariableArrayType()
508 Record.AddSourceLocation(TL.getBuiltinLoc()); in VisitBuiltinTypeLoc()
517 Record.AddSourceLocation(TL.getNameLoc()); in VisitComplexTypeLoc()
520 Record.AddSourceLocation(TL.getStarLoc()); in VisitPointerTypeLoc()
529 Record.AddSourceLocation(TL.getCaretLoc()); in VisitBlockPointerTypeLoc()
532 Record.AddSourceLocation(TL.getAmpLoc()); in VisitLValueReferenceTypeLoc()
535 Record.AddSourceLocation(TL.getAmpAmpLoc()); in VisitRValueReferenceTypeLoc()
538 Record.AddSourceLocation(TL.getStarLoc()); in VisitMemberPointerTypeLoc()
542 Record.AddSourceLocation(TL.getLBracketLoc()); in VisitArrayTypeLoc()
[all …]
/external/clang/test/SemaTemplate/
Dderived.cpp26 void AddSourceLocation(A<long> &R); // expected-note{{passing argument to parameter 'R' here}}
28 AddSourceLocation(Record); // expected-error{{non-const lvalue reference to type}} in AddTemplateKWAndArgsInfo()
/external/clang/include/clang/Serialization/
DASTWriter.h533 void AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record);
793 void AddSourceLocation(SourceLocation Loc) { in AddSourceLocation() function
794 return Writer->AddSourceLocation(Loc, *Record); in AddSourceLocation()