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