/external/clang/lib/AST/ |
SelectorLocationsKind.cpp | 24 SourceLocation EndLoc) { 28 if (EndLoc.isInvalid()) 32 return EndLoc.getLocWithOffset(-Len); 73 SourceLocation EndLoc) { 78 Args, EndLoc)) 87 Args, EndLoc)) 100 SourceLocation EndLoc) { 101 return hasStandardSelLocs(Sel, SelLocs, Args, EndLoc); 108 SourceLocation EndLoc) { 110 getArgLoc(Index, Args), EndLoc); [all...] |
/external/clang/include/clang/AST/ |
SelectorLocationsKind.h | 49 SourceLocation EndLoc); 61 SourceLocation EndLoc); 67 SourceLocation EndLoc); 79 SourceLocation EndLoc);
|
StmtOpenMP.h | 35 SourceLocation EndLoc; 39 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc) 40 : StartLoc(StartLoc), EndLoc(EndLoc), Kind(K) {} 47 SourceLocation getLocEnd() const { return EndLoc; } 52 void setLocEnd(SourceLocation Loc) { EndLoc = Loc; } 159 /// \param EndLoc Ending location of the clause. 163 SourceLocation EndLoc) 164 : OMPClause(OMPC_default, StartLoc, EndLoc), LParenLoc(LParenLoc), 207 /// \param EndLoc Ending location of the clause [all...] |
DeclarationName.h | 537 SourceLocation EndLoc = getEndLoc(); 538 return EndLoc.isValid() ? EndLoc : getLocStart();
|
/external/llvm/lib/Target/SystemZ/AsmParser/ |
SystemZAsmParser.cpp | 63 SMLoc StartLoc, EndLoc; 106 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) 107 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) 122 static SystemZOperand *createInvalid(SMLoc StartLoc, SMLoc EndLoc) { 123 return new SystemZOperand(KindInvalid, StartLoc, EndLoc); 132 SMLoc StartLoc, SMLoc EndLoc) { 133 SystemZOperand *Op = new SystemZOperand(KindReg, StartLoc, EndLoc); 139 SMLoc EndLoc) { 140 SystemZOperand *Op = new SystemZOperand(KindAccessReg, StartLoc, EndLoc); [all...] |
/external/clang/lib/Sema/ |
SemaOpenMP.cpp | 206 SourceLocation EndLoc) { 210 Res = ActOnOpenMPParallelDirective(Clauses, AStmt, StartLoc, EndLoc); 225 SourceLocation EndLoc) { 228 return Owned(OMPParallelDirective::Create(Context, StartLoc, EndLoc, 237 SourceLocation EndLoc) { 243 ArgumentLoc, StartLoc, LParenLoc, EndLoc); 258 SourceLocation EndLoc) { 283 EndLoc); 290 SourceLocation EndLoc) { 294 Res = ActOnOpenMPPrivateClause(VarList, StartLoc, LParenLoc, EndLoc); [all...] |
SemaAttr.cpp | 415 void Sema::PopPragmaVisibility(bool IsNamespaceEnd, SourceLocation EndLoc) { 417 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch); 428 Diag(EndLoc, diag::note_surrounding_namespace_ends_here); 437 Diag(EndLoc, diag::err_pragma_pop_visibility_mismatch);
|
SemaLambda.cpp | 126 SourceLocation EndLoc, 141 = CXXMethodDecl::Create(Context, Class, EndLoc, 149 EndLoc); 534 SourceLocation EndLoc; 548 EndLoc = Intro.Range.getEnd(); 563 EndLoc = ParamInfo.getSourceRange().getEnd(); 588 MethodTyInfo, EndLoc, Params); [all...] |
/external/llvm/include/llvm/MC/MCParser/ |
MCAsmParser.h | 166 virtual bool parseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0; 174 virtual bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) = 0; 182 virtual bool parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
/external/clang/lib/Lex/ |
PreprocessingRecord.cpp | 465 SourceLocation EndLoc; 467 EndLoc = FilenameRange.getBegin(); 469 EndLoc = FilenameRange.getEnd(); 471 EndLoc = EndLoc.getLocWithOffset(-1); // the InclusionDirective expects 477 File, SourceRange(HashLoc, EndLoc));
|
TokenLexer.cpp | 652 SourceLocation EndLoc = Tokens[CurToken - 1].getLocation(); 662 if (EndLoc.isFileID()) 663 EndLoc = getExpansionLocForMacroDefLoc(EndLoc); 667 while (SM.getFileID(EndLoc) != MacroFID) 668 EndLoc = SM.getImmediateExpansionRange(EndLoc).second; 670 Tok.setLocation(SM.createExpansionLoc(Tok.getLocation(), StartLoc, EndLoc, [all...] |
/external/clang/lib/Parse/ |
Parser.cpp | 134 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd()); 135 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) { 144 << FixItHint::CreateInsertion(EndLoc, ")"); 182 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation); 183 if (EndLoc.isValid() && 186 Diag(EndLoc, DiagID) 188 << FixItHint::CreateInsertion(EndLoc, Spelling); 221 SourceLocation EndLoc = Tok.getLocation(); 226 EndLoc = Tok.getLocation(); 235 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); [all...] |
ParseOpenMP.cpp | 88 SourceLocation Loc = ConsumeToken(), EndLoc; 131 EndLoc = Tok.getLocation(); 157 Loc, EndLoc);
|
ParseDeclCXX.cpp | 690 SourceLocation EndLoc; 694 EndLoc = Tok.getAnnotationEndLoc(); 698 return EndLoc; 736 EndLoc = ConsumeParen(); 742 EndLoc = ConsumeAnyToken(); 745 EndLoc = Tok.getLocation(); 748 return EndLoc; 768 EndLoc = T.getCloseLocation(); 783 return EndLoc; 788 SourceLocation EndLoc) { [all...] |
ParseCXXInlineMethods.cpp | 540 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation); 541 if (!EndLoc.isValid()) 542 EndLoc = Tok.getLocation(); 544 Diag(EndLoc, diag::err_expected_semi_decl_list);
|
ParseDecl.cpp | 116 SourceLocation *endLoc, 163 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc, 177 if (endLoc) 178 *endLoc = Loc; 194 SourceLocation *EndLoc, 203 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc); 209 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc); 214 ParseTypeTagForDatatypeAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc); 813 SourceLocation *endLoc) { 938 if (endLoc) [all...] |
/external/llvm/include/llvm/MC/ |
MCTargetAsmParser.h | 113 SMLoc &EndLoc) = 0;
|
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParser.cpp | 564 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc); 618 SMLoc StartLoc, EndLoc; 654 : Kind(K), StartLoc(Start), EndLoc(End) {} 662 SMLoc getEndLoc() const { return EndLoc; } 665 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); } 935 SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size()); 936 X86Operand *Res = new X86Operand(Token, Loc, EndLoc); 942 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc, 947 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc); 956 static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){ [all...] |
/external/llvm/lib/MC/MCParser/ |
AsmParser.cpp | 233 virtual bool parseExpression(const MCExpr *&Res, SMLoc &EndLoc); 234 virtual bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc); 235 virtual bool parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc); 330 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc); 331 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc); 332 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc); 333 bool ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc); 724 bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) { 728 EndLoc = Lexer.getTok().getEndLoc(); 738 bool AsmParser::ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) { [all...] |
/external/clang/include/clang/Sema/ |
DeclSpec.h | [all...] |
/external/clang/include/clang/Lex/ |
MacroInfo.h | 133 void setDefinitionEndLoc(SourceLocation EndLoc) { EndLocation = EndLoc; }
|
/external/clang/lib/ARCMigrate/ |
ObjCMT.cpp | 260 SourceLocation EndLoc = Setter->getDeclaratorEndLoc(); 262 EndLoc = EndLoc.getLocWithOffset(1); 263 commit.remove(CharSourceRange::getCharRange(Setter->getLocStart(), EndLoc)); 379 SourceLocation EndLoc = 399 EndLoc = *PL; 402 commit.insertAfterToken(EndLoc, ClassString);
|
/external/llvm/lib/Target/PowerPC/AsmParser/ |
PPCAsmParser.cpp | 190 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc); 250 SMLoc StartLoc, EndLoc; 283 EndLoc = o.EndLoc; 305 SMLoc getEndLoc() const { return EndLoc; } 486 Op->EndLoc = S; 500 Op->EndLoc = S; 509 Op->EndLoc = E; 520 Op->EndLoc = E; 530 Op->EndLoc = E [all...] |
/external/llvm/lib/Target/Mips/AsmParser/ |
MipsAsmParser.cpp | 75 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc); 272 SMLoc StartLoc, EndLoc; 345 Op->EndLoc = S; 353 Op->EndLoc = E; 361 Op->EndLoc = E; 371 Op->EndLoc = E; 427 return EndLoc; [all...] |
/external/llvm/lib/Target/ARM/AsmParser/ |
ARMAsmParser.cpp | 219 SMLoc &EndLoc); 267 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc); 318 SMLoc StartLoc, EndLoc; 454 EndLoc = o.EndLoc; 530 SMLoc getEndLoc() const { return EndLoc; } 533 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); } [all...] |