reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/ExprObjC.h
 1602   Expr *getSubExpr() { return cast<Expr>(Operand); }
 1603   const Expr *getSubExpr() const { return cast<Expr>(Operand); }
 1609   child_range children() { return child_range(&Operand, &Operand+1); }
 1609   child_range children() { return child_range(&Operand, &Operand+1); }
 1612     return const_child_range(&Operand, &Operand + 1);
 1612     return const_child_range(&Operand, &Operand + 1);
 1617     return Operand->getBeginLoc();
 1620     return Operand->getEndLoc();
tools/clang/lib/Serialization/ASTReaderStmt.cpp
  841   E->Operand = Record.readSubExpr();