Home | History | Annotate | Download | only in AST

Lines Matching defs:Target

1241   Stmt *Target;
1244 Expr *target)
1246 Target((Stmt*)target) {}
1257 Expr *getTarget() { return reinterpret_cast<Expr*>(Target); }
1258 const Expr *getTarget() const {return reinterpret_cast<const Expr*>(Target);}
1259 void setTarget(Expr *E) { Target = reinterpret_cast<Stmt*>(E); }
1261 /// getConstantTarget - Returns the fixed target of this indirect
1269 SourceLocation getLocEnd() const LLVM_READONLY { return Target->getLocEnd(); }
1276 child_range children() { return child_range(&Target, &Target+1); }