Home | History | Annotate | Download | only in Checkers

Lines Matching defs:Effect

368   ///  this is the effect applied to the state of the receiver.
371 /// Ret - The effect on the return value. Used to indicate if the
380 /// getArg - Return the argument effect on the argument specified by
393 /// setDefaultArgEffect - Set the default argument effect.
398 /// getRetEffect - Returns the effect on the return value of the call.
401 /// setRetEffect - Set the effect of the return value of the call.
405 /// Sets the effect on the receiver of the message.
408 /// getReceiverEffect - Returns the effect on the receiver of the call.
414 /// argument effect matches the default effect).
601 /// ObjCAllocRetE - Default return effect for methods returning Objective-C
605 /// ObjCInitRetE - Default return effect for init methods returning
765 /// Determine if there is a special return effect for this function or method.
1028 // Strip away preceding '_'. Doing this here will effect all the checks
1242 ArgEffect Effect;
1244 case cfretain: Effect = IncRef; break;
1245 case cfrelease: Effect = DecRef; break;
1246 case cfautorelease: Effect = Autorelease; break;
1247 case cfmakecollectable: Effect = MakeCollectable; break;
1250 ScratchArgs = AF.add(ScratchArgs, 0, Effect);
1964 // We have an argument. Get the effect!
2025 << "' has no effect on its argument.";
2093 os << "In GC mode an 'autorelease' has no effect.";
2096 os << "In GC mode the 'retain' message has no effect.";
2099 os << "In GC mode the 'release' message has no effect.";
2637 // Handle statements that may have an effect on refcounts.
2850 // Evaluate the effect of the arguments.
2860 // Evaluate the effect on the message receiver.
2899 // Evaluate the effect of the arguments.
2919 // Evaluate the effect on the message receiver.