Searched refs:RetEffect (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp86 /// RetEffect is used to summarize a function/method call's behavior with
88 class RetEffect { class in namespace:__anon3456
100 RetEffect(Kind k, ObjKind o = AnyObj) : K(k), O(o) {} function in class:__anon3456::RetEffect
112 bool operator==(const RetEffect &Other) const {
116 static RetEffect MakeOwnedWhenTrackedReceiver() {
117 return RetEffect(OwnedWhenTrackedReceiver, ObjC);
120 static RetEffect MakeOwned(ObjKind o, bool isAllocated = false) {
121 return RetEffect(isAllocated ? OwnedAllocatedSymbol : OwnedSymbol, o);
123 static RetEffect MakeNotOwned(ObjKind o) {
124 return RetEffect(NotOwnedSymbo
[all...]

Completed in 35 milliseconds