HomeSort by relevance Sort by last modified time
    Searched refs:EndLoc (Results 1 - 25 of 48) sorted by null

1 2

  /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...]
Stmt.cpp 538 SourceLocation EndLoc;
540 EndLoc = getFinallyStmt()->getLocEnd();
542 EndLoc = getCatchStmt(NumCatchStmts - 1)->getLocEnd();
544 EndLoc = getTryBody()->getLocEnd();
546 return SourceRange(AtTryLoc, EndLoc);
DeclObjC.cpp 343 SourceLocation endLoc,
354 return new (C) ObjCMethodDecl(beginLoc, endLoc,
399 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Params, EndLoc);
    [all...]
  /external/clang/include/clang/AST/
SelectorLocationsKind.h 49 SourceLocation EndLoc);
61 SourceLocation EndLoc);
67 SourceLocation EndLoc);
79 SourceLocation EndLoc);
DeclObjC.h 164 SourceLocation EndLoc; // the location of the ';' or '}'.
214 ObjCMethodDecl(SourceLocation beginLoc, SourceLocation endLoc,
235 EndLoc(endLoc), Body(0), SelfDecl(0), CmdDecl(0) {
247 SourceLocation endLoc,
283 SourceLocation getLocEnd() const { return EndLoc; }
284 void setEndLoc(SourceLocation Loc) { EndLoc = Loc; }
286 return SourceRange(getLocation(), EndLoc);
297 EndLoc);
582 SourceLocation EndLoc; // marks the '>', '}', or identifier
    [all...]
Stmt.h 359 SourceLocation StartLoc, EndLoc;
363 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
364 StartLoc(startLoc), EndLoc(endLoc) {}
384 SourceLocation getEndLoc() const { return EndLoc; }
385 void setEndLoc(SourceLocation L) { EndLoc = L; }
388 return SourceRange(StartLoc, EndLoc);
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParser.h 117 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
126 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 45 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
83 SMLoc StartLoc, EndLoc;
115 EndLoc = o.EndLoc;
139 SMLoc getEndLoc() const { return EndLoc; }
226 Op->EndLoc = S;
234 Op->EndLoc = E;
242 Op->EndLoc = E;
250 Op->EndLoc = E;
261 Op->EndLoc = E
    [all...]
  /external/llvm/include/llvm/MC/
MCTargetAsmParser.h 52 SMLoc &EndLoc) = 0;
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 91 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
119 SMLoc StartLoc, EndLoc;
145 : Kind(K), StartLoc(Start), EndLoc(End) {}
150 SMLoc getEndLoc() const { return EndLoc; }
152 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
325 SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size() - 1);
326 X86Operand *Res = new X86Operand(Token, Loc, EndLoc);
332 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc) {
333 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
338 static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){
    [all...]
  /external/clang/include/clang/Lex/
PPCallbacks.h 80 /// \param EndLoc The location of the last token within the inclusion
99 SourceLocation EndLoc,
239 SourceLocation EndLoc,
243 EndLoc, SearchPath, RelativePath);
245 EndLoc, SearchPath, RelativePath);
MacroInfo.h 131 void setDefinitionEndLoc(SourceLocation EndLoc) { EndLocation = EndLoc; }
  /external/clang/lib/Parse/
Parser.cpp 112 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
113 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
122 << FixItHint::CreateInsertion(EndLoc, ")");
159 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
160 if (EndLoc.isValid() &&
163 Diag(EndLoc, DiagID)
165 << FixItHint::CreateInsertion(EndLoc, Spelling);
562 SourceLocation EndLoc;
563 ExprResult Result(ParseSimpleAsm(&EndLoc));
570 SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc);
    [all...]
ParseCXXInlineMethods.cpp 480 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
481 if (!EndLoc.isValid())
482 EndLoc = Tok.getLocation();
484 Diag(EndLoc, diag::err_expected_semi_decl_list);
ParseDecl.cpp 105 SourceLocation *endLoc,
151 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc);
164 if (endLoc)
165 *endLoc = Loc;
174 SourceLocation *EndLoc) {
180 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
186 ParseThreadSafetyAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc);
542 SourceLocation *endLoc) {
655 if (endLoc)
656 *endLoc = T.getCloseLocation()
    [all...]
ParseDeclCXX.cpp     [all...]
ParseStmt.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 155 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
156 virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc);
199 bool ParsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc);
200 bool ParseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
201 bool ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc);
202 bool ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc);
558 bool AsmParser::ParseParenExpr(const MCExpr *&Res, SMLoc &EndLoc) {
562 EndLoc = Lexer.getLoc();
572 bool AsmParser::ParseBracketExpr(const MCExpr *&Res, SMLoc &EndLoc) {
576 EndLoc = Lexer.getLoc()
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/clang/lib/Frontend/
DependencyFile.cpp 62 SourceLocation EndLoc,
145 SourceLocation EndLoc,
  /external/clang/lib/Lex/
TokenLexer.cpp 590 SourceLocation EndLoc = Tokens[CurToken - 1].getLocation();
600 if (EndLoc.isFileID())
601 EndLoc = getExpansionLocForMacroDefLoc(EndLoc);
602 Tok.setLocation(SM.createExpansionLoc(Tok.getLocation(), StartLoc, EndLoc,
PreprocessingRecord.cpp 296 clang::SourceLocation EndLoc,
325 File, SourceRange(HashLoc, EndLoc));
PPMacroExpansion.cpp 479 SourceLocation EndLoc = Tok.getLocation();
482 Tok.setLocation(EndLoc);
759 SourceLocation EndLoc;
779 if (PP.ConcatenateIncludeName(FilenameBuffer, EndLoc))
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 229 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
275 SMLoc StartLoc, EndLoc;
384 EndLoc = o.EndLoc;
459 SMLoc getEndLoc() const { return EndLoc; }
    [all...]
  /external/clang/lib/Rewrite/
HTMLRewrite.cpp 280 SourceLocation EndLoc = StartLoc.getLocWithOffset(FileEnd-FileStart);
351 R.InsertTextAfter(EndLoc, "</body></html>\n");

Completed in 3172 milliseconds

1 2