Lines Matching refs:ifFalse
2769 t.ifFalse()->isCompileTimeConstant()) {
2773 SpvId falseId = this->writeExpression(*t.ifFalse(), out);
2792 this->writeInstruction(SpvOpStore, var, this->writeExpression(*t.ifFalse(), out), out);
3211 SpvId ifFalse = this->nextId(nullptr);
3212 if (stmt.ifFalse()) {
3215 this->writeInstruction(SpvOpBranchConditional, test, ifTrue, ifFalse, out);
3221 this->writeLabel(ifFalse, out);
3222 this->writeStatement(*stmt.ifFalse(), out);
3228 this->writeInstruction(SpvOpSelectionMerge, ifFalse, SpvSelectionControlMaskNone, out);
3229 this->writeInstruction(SpvOpBranchConditional, test, ifTrue, ifFalse, out);
3233 this->writeInstruction(SpvOpBranch, ifFalse, out);
3235 this->writeLabel(ifFalse, out);