Lines Matching full:relation
488 if(relation) statement
489 if(relation) statement else statement
490 while(relation) statement
491 for(expression1; relation; expression2) statement
497 if(relation) {statements}
498 if(relation) {statements} else {statements}
499 while(relation) {statements}
500 for(expression1; relation; expression2) {statements}
504 A relation in one of the control statements is an expression of the form
512 The relation `=='
522 if and only if the relation is true.
525 executed if the relation is false.
529 repeatedly as long as the relation
530 is true. The relation is tested before each execution
531 of its range and if the relation
536 by executing `expression1'. Then the relation is tested
538 Then `expression2' is executed. The relation is tested, and so on.
1100 \fBif\|(\|\fIrelation\fB\|)\|\fIstatement\fR
1102 The substatement is executed if the relation is true.
1106 \fBif\|(\|\fIrelation\fB\|)\|\fIstatement\fB\|else\|\fIstatement\fR
1108 The first substatement is executed if the relation is true, the second
1109 substatement if the relation is false.
1114 \fBwhile\|(\|\fIrelation\fB\|)\|\fIstatement\fR
1116 The statement is executed while the relation
1122 \fBfor\|(\|\fIexpression\fB; \fIrelation\fB; \fIexpression\fB\|)\|\fIstatement\fR