Lines Matching refs:ifTrue
22 this->ifTrue()->clone(),
31 result += "if (" + this->test()->description() + ") " + this->ifTrue()->description();
40 std::unique_ptr<Statement> ifTrue,
46 SkASSERT(ifTrue);
47 if (Analysis::DetectVarDeclarationWithoutScope(*ifTrue, context.fErrors)) {
54 std::move(ifTrue), std::move(ifFalse));
65 std::unique_ptr<Statement> ifTrue,
68 SkASSERT(!Analysis::DetectVarDeclarationWithoutScope(*ifTrue));
77 trueIsEmpty = ifTrue->isEmpty();
89 return replace_empty_with_nop(std::move(ifTrue), trueIsEmpty);
98 ifTrue = replace_empty_with_nop(std::move(ifTrue), trueIsEmpty);
105 std::move(ifTrue), std::move(ifFalse));