Home | History | Annotate | Download | only in AST

Lines Matching refs:shouldCopy

1446   // unsigned ObjCIndirectCopyRestoreBits.ShouldCopy : 1;
1451 void setShouldCopy(bool shouldCopy) {
1452 ObjCIndirectCopyRestoreExprBits.ShouldCopy = shouldCopy;
1459 ObjCIndirectCopyRestoreExpr(Expr *operand, QualType type, bool shouldCopy)
1465 setShouldCopy(shouldCopy);
1471 /// shouldCopy - True if we should do the 'copy' part of the
1473 bool shouldCopy() const { return ObjCIndirectCopyRestoreExprBits.ShouldCopy; }