HomeSort by relevance Sort by last modified time
    Searched defs:RParenLoc (Results 1 - 11 of 11) sorted by null

  /external/clang/include/clang/AST/
StmtCXX.h 136 SourceLocation RParenLoc;
190 SourceLocation getRParenLoc() const { return RParenLoc; }
191 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
StmtObjC.h 28 SourceLocation RParenLoc;
55 SourceLocation getRParenLoc() const { return RParenLoc; }
56 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
77 SourceLocation AtCatchLoc, RParenLoc;
80 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc,
84 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
103 SourceLocation getRParenLoc() const { return RParenLoc; }
104 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
ExprCXX.h 168 SourceLocation RParenLoc; // the location of the right parenthesis
174 SourceLocation RParenLoc)
176 RParenLoc(RParenLoc) {}
191 SourceLocation getRParenLoc() const { return RParenLoc; }
194 return SourceRange(Loc, RParenLoc);
218 SourceLocation l, SourceLocation RParenLoc)
220 writtenTy, l, RParenLoc) {}
230 SourceLocation RParenLoc);
249 SourceLocation l, SourceLocation RParenLoc)
    [all...]
ExprObjC.h 342 SourceLocation AtLoc, RParenLoc;
351 EncodedType(EncodedType), AtLoc(at), RParenLoc(rp) {}
358 SourceLocation getRParenLoc() const { return RParenLoc; }
359 void setRParenLoc(SourceLocation L) { RParenLoc = L; }
369 return SourceRange(AtLoc, RParenLoc);
384 SourceLocation AtLoc, RParenLoc;
390 SelName(selInfo), AtLoc(at), RParenLoc(rp){}
398 SourceLocation getRParenLoc() const { return RParenLoc; }
400 void setRParenLoc(SourceLocation L) { RParenLoc = L; }
403 return SourceRange(AtLoc, RParenLoc);
    [all...]
DeclCXX.h     [all...]
Stmt.h     [all...]
Expr.h     [all...]
  /external/clang/lib/Parse/
ParsePragma.cpp 45 SourceLocation RParenLoc;
54 Info->LParenLoc, Info->RParenLoc);
209 SourceLocation RParenLoc = Tok.getLocation();
224 Info->RParenLoc = RParenLoc;
360 SourceLocation RParenLoc;
385 RParenLoc = Tok.getLocation();
402 assert(RParenLoc.isValid() && "Valid '#pragma unused' must have ')'");
ParseExpr.cpp 680 SourceLocation RParenLoc;
688 isTypeCast == IsTypeCast, CastTy, RParenLoc);
    [all...]
ParseExprCXX.cpp     [all...]
ParseObjc.cpp     [all...]

Completed in 143 milliseconds