Lines Matching defs:TCond
1406 static bool getStaticBooleanValue(Expr *E, bool &TCond) {
1408 TCond = false;
1411 TCond = BLE->getValue();
1414 TCond = ILE->getValue().getBoolValue();
1417 return getStaticBooleanValue(CE->getSubExpr(), TCond);
1457 bool TCond = false;
1458 if (getStaticBooleanValue(BOP->getRHS(), TCond)) {
1459 if (!TCond) Negate = !Negate;
1462 TCond = false;
1463 if (getStaticBooleanValue(BOP->getLHS(), TCond)) {
1464 if (!TCond) Negate = !Negate;
1477 bool TCond, FCond;
1478 if (getStaticBooleanValue(COP->getTrueExpr(), TCond) &&
1480 if (TCond && !FCond)
1482 if (!TCond && FCond) {