Home | History | Annotate | Download | only in compiler

Lines Matching defs:binOp

257     TIntermBinary* binOp = cond->getAsBinaryNode();
258 if (binOp == NULL) {
263 TIntermSymbol* symbol = binOp->getLeft()->getAsSymbolNode();
265 error(binOp->getLine(), "Invalid condition", "for");
274 switch (binOp->getOp()) {
283 error(binOp->getLine(),
285 getOperatorString(binOp->getOp()));
289 if (!isConstExpr(binOp->getRight())) {
290 error(binOp->getLine(),
318 TIntermBinary* binOp = unOp ? NULL : expr->getAsBinaryNode();
325 } else if (binOp != NULL) {
326 op = binOp->getOp();
327 symbol = binOp->getLeft()->getAsSymbolNode();
347 ASSERT((unOp != NULL) && (binOp == NULL));
351 ASSERT((unOp == NULL) && (binOp != NULL));
359 if (binOp != NULL) {
360 if (!isConstExpr(binOp->getRight())) {
361 error(binOp->getLine(),