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 29 SourceLocation RParenLoc;
56 SourceLocation getRParenLoc() const { return RParenLoc; }
57 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
78 SourceLocation AtCatchLoc, RParenLoc;
81 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc,
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
104 SourceLocation getRParenLoc() const { return RParenLoc; }
105 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
ExprCXX.h 162 SourceLocation RParenLoc; // the location of the right parenthesis
168 SourceLocation RParenLoc)
170 RParenLoc(RParenLoc) {}
185 SourceLocation getRParenLoc() const { return RParenLoc; }
188 return SourceRange(Loc, RParenLoc);
212 SourceLocation l, SourceLocation RParenLoc)
214 writtenTy, l, RParenLoc) {}
224 SourceLocation RParenLoc);
243 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 671 SourceLocation RParenLoc;
679 isTypeCast == IsTypeCast, CastTy, RParenLoc);
    [all...]
ParseExprCXX.cpp     [all...]
ParseObjc.cpp     [all...]

Completed in 386 milliseconds