HomeSort by: relevance | last modified time | path
    Searched defs:GotoLoc (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 2125 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'.
2131 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD);
2142 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get());
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 237 SourceLocation GotoLoc;
2592 SourceLocation getGotoLoc() const { return GotoStmtBits.GotoLoc; }
2593 void setGotoLoc(SourceLocation L) { GotoStmtBits.GotoLoc = L; }
2620 IndirectGotoStmt(SourceLocation gotoLoc, SourceLocation starLoc, Expr *target)
2623 setGotoLoc(gotoLoc);
2630 void setGotoLoc(SourceLocation L) { GotoStmtBits.GotoLoc = L; }
2631 SourceLocation getGotoLoc() const { return GotoStmtBits.GotoLoc; }

Completed in 36 milliseconds