Searched defs:ArgLoc (Results 1 - 9 of 9) sorted by relevance
/external/clang/lib/AST/ |
H A D | SelectorLocationsKind.cpp | 23 SourceLocation ArgLoc, 36 if (ArgLoc.isInvalid()) 42 return ArgLoc.getLocWithOffset(-Len); 20 getStandardSelLoc(unsigned Index, Selector Sel, bool WithArgSpace, SourceLocation ArgLoc, SourceLocation EndLoc) argument
|
/external/clang/unittests/Tooling/ |
H A D | RecursiveASTVisitorTestExprVisitor.cpp | 34 bool TraverseTemplateArgumentLoc(const TemplateArgumentLoc &ArgLoc) { argument 37 const TemplateArgument &Arg = ArgLoc.getArgument(); 40 Match(Stream.str(), ArgLoc.getLocation()); 42 TraverseTemplateArgumentLoc(ArgLoc);
|
/external/clang/lib/Sema/ |
H A D | SemaTemplateVariadic.cpp | 159 bool TraverseTemplateArgumentLoc(const TemplateArgumentLoc &ArgLoc) { argument 160 if (ArgLoc.getArgument().isPackExpansion()) 163 return inherited::TraverseTemplateArgumentLoc(ArgLoc);
|
H A D | SemaTemplateDeduction.cpp | 2095 TemplateArgumentLoc ArgLoc = getTrivialTemplateArgumentLoc(S, Arg, NTTPType, local 2099 return S.CheckTemplateArgument(Param, ArgLoc,
|
H A D | SemaDeclAttr.cpp | 4452 SourceLocation ArgLoc; local 4456 else if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &ArgLoc)) 4462 << Attr.getName() << Str << ArgLoc; local 4517 SourceLocation ArgLoc; local 4521 else if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &ArgLoc))
|
H A D | SemaInit.cpp | 6025 SourceLocation ArgLoc = Arg->getLocStart(); local 6030 while (ArgLoc.isMacroID() && 6031 S.getSourceManager().isAtStartOfImmediateMacroExpansion(ArgLoc)) { 6032 ArgLoc = S.getSourceManager().getImmediateExpansionRange(ArgLoc).first; 6038 LParen = ArgLoc.getLocWithOffset(-1);
|
H A D | SemaDeclCXX.cpp | 344 SourceLocation ArgLoc) { 350 UnparsedDefaultArgLocs[Param] = ArgLoc; 342 ActOnParamUnparsedDefaultArgument(Decl *param, SourceLocation EqualLoc, SourceLocation ArgLoc) argument
|
/external/llvm/include/llvm/Analysis/ |
H A D | AliasAnalysis.h | 833 MemoryLocation ArgLoc = MemoryLocation::getForArgument(CS, ArgIdx, TLI); local 834 AliasResult ArgAlias = getBestAAResults().alias(ArgLoc, Loc);
|
/external/clang/include/clang/AST/ |
H A D | RecursiveASTVisitor.h | 227 bool TraverseTemplateArgumentLoc(const TemplateArgumentLoc &ArgLoc); 757 const TemplateArgumentLoc &ArgLoc) { 758 const TemplateArgument &Arg = ArgLoc.getArgument(); 769 if (TypeSourceInfo *TSI = ArgLoc.getTypeSourceInfo()) 777 if (ArgLoc.getTemplateQualifierLoc()) 779 ArgLoc.getTemplateQualifierLoc())); 784 return getDerived().TraverseStmt(ArgLoc.getSourceExpression()); 756 TraverseTemplateArgumentLoc( const TemplateArgumentLoc &ArgLoc) argument
|
Completed in 287 milliseconds