Lines Matching refs:fFoundLoopExit
26 fFoundLoopExit.push(false);
35 if (fFoundFunctionExit.top() || fFoundLoopExit.top()) {
59 fFoundLoopExit.top() = true;
76 fFoundLoopExit.push(false);
78 fFoundLoopExit.pop();
85 fFoundLoopExit.push(false);
87 fFoundLoopExit.pop();
98 fFoundLoopExit.push(false);
101 bool foundLoopExitOnTrue = fFoundLoopExit.top();
103 fFoundLoopExit.pop();
106 fFoundLoopExit.push(false);
109 bool foundLoopExitOnFalse = fFoundLoopExit.top();
111 fFoundLoopExit.pop();
114 fFoundLoopExit.top() |= foundLoopExitOnTrue && foundLoopExitOnFalse;
130 std::stack<bool> fFoundLoopExit;