Lines Matching refs:ifFalse
23 this->ifFalse() ? this->ifFalse()->clone() : nullptr);
32 if (this->ifFalse()) {
33 result += " else " + this->ifFalse()->description();
41 std::unique_ptr<Statement> ifFalse) {
50 if (ifFalse && Analysis::DetectVarDeclarationWithoutScope(*ifFalse, context.fErrors)) {
54 std::move(ifTrue), std::move(ifFalse));
66 std::unique_ptr<Statement> ifFalse) {
69 SkASSERT(!ifFalse || !Analysis::DetectVarDeclarationWithoutScope(*ifFalse));
78 falseIsEmpty = !ifFalse || ifFalse->isEmpty();
91 return replace_empty_with_nop(std::move(ifFalse), falseIsEmpty);
100 ifFalse = nullptr;
105 std::move(ifTrue), std::move(ifFalse));