Searched defs:TCond (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Analysis/
H A DThreadSafety.cpp1604 bool getStaticBooleanValue(Expr* E, bool& TCond) { argument
1606 TCond = false;
1609 TCond = BLE->getValue();
1612 TCond = ILE->getValue().getBoolValue();
1615 return getStaticBooleanValue(CE->getSubExpr(), TCond);
1658 bool TCond = false; local
1659 if (getStaticBooleanValue(BOP->getRHS(), TCond)) {
1660 if (!TCond) Negate = !Negate;
1663 else if (getStaticBooleanValue(BOP->getLHS(), TCond)) {
1664 if (!TCond) Negat
[all...]

Completed in 948 milliseconds