Home | History | Annotate | Download | only in AST

Lines Matching refs:LParenLoc

2441   /// LParenLoc - If non-null, this is the location of the left paren in a
2444 SourceLocation LParenLoc;
2452 CompoundLiteralExpr(SourceLocation lparenloc, TypeSourceInfo *tinfo,
2460 LParenLoc(lparenloc), TInfoAndScope(tinfo, fileScope), Init(init) {}
2473 SourceLocation getLParenLoc() const { return LParenLoc; }
2474 void setLParenLoc(SourceLocation L) { LParenLoc = L; }
2487 if (LParenLoc.isInvalid())
2489 return SourceRange(LParenLoc, Init->getLocEnd());
3201 SourceLocation LParenLoc, RParenLoc;
3210 SubStmt(substmt), LParenLoc(lp), RParenLoc(rp) { }
3220 return SourceRange(LParenLoc, RParenLoc);
3223 SourceLocation getLParenLoc() const { return LParenLoc; }
3224 void setLParenLoc(SourceLocation L) { LParenLoc = L; }
4018 SourceLocation LParenLoc, RParenLoc;
4021 ParenListExpr(ASTContext& C, SourceLocation lparenloc, Expr **exprs,
4041 SourceLocation getLParenLoc() const { return LParenLoc; }
4045 return SourceRange(LParenLoc, RParenLoc);