• Home
  • Raw
  • Download

Lines Matching refs:ELSE

172     <ENDFLOWop>             ::= "ELSE"
275 ELSE - - - - - - - start if test else block
355 can specify one of several types of instruction blocks: IF/ELSE/ENDIF
370 ELSE;
375 contained inside an IF/ELSE/ENDIF block. In all cases, each instruction
379 an IF and ELSE instruction, the ENDLOOP must also be present between the
380 IF and ELSE. A fragment program will fail to load if any instruction
384 IF/ELSE/ENDIF blocks evaluate a condition to determine which instructions
386 ELSE are executed. If the condition is false, all instructions between
387 the ELSE and ENDIF are executed. The ELSE instruction is optional. If
388 the ELSE is omitted, all instructions between the IF and ENDIF are
392 more IF/ELSE/ENDIF blocks.
437 IF/ELSE/ENDIF, LOOP/ENDLOOP, or REP/ENDREP instruction block. A fragment
501 * IF/ELSE/ENDIF -- conditional execution blocks
650 3.11.X.3, ELSE: Beginning of ELSE Block
652 The ELSE instruction signifies the end of the "execute if true" portion of
653 an IF/ELSE/ENDIF block.
656 reaches the ELSE statement, it has completed the entire "execute if true"
657 portion of the IF/ELSE/ENDIF block. Execution will continue at the
662 IF/ELSE/ENDIF block, including the ELSE instruction.
665 3.11.X.4, ENDIF: End of IF/ELSE Block
667 The ENDIF instruction signifies the end of an IF/ELSE/ENDIF block. It has
703 immediately following the corresponding ELSE instruction (if present) or
704 ENDIF instruction (if no ELSE is present).
721 } else if (IF block contains an ELSE statement) {
722 continue execution at instruction following corresponding ELSE;