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