Home
last modified time | relevance | path

Searched refs:fIfFalse (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/sksl/ir/
DSkSLTernaryExpression.h25 , fIfFalse(std::move(ifFalse)) { in TernaryExpression()
26 ASSERT(fIfTrue->fType == fIfFalse->fType); in TernaryExpression()
31 fIfFalse->description() + ")"; in description()
36 std::unique_ptr<Expression> fIfFalse; member
DSkSLIfStatement.h25 , fIfFalse(std::move(ifFalse)) {} in IfStatement()
29 if (fIfFalse) { in description()
30 result += " else " + fIfFalse->description(); in description()
37 const std::unique_ptr<Statement> fIfFalse; member
/external/skia/src/sksl/ast/
DSkSLASTIfStatement.h24 , fIfFalse(std::move(ifFalse)) {} in ASTIfStatement()
31 if (fIfFalse) { in description()
33 result += fIfFalse->description(); in description()
40 const std::unique_ptr<ASTStatement> fIfFalse; member
DSkSLASTTernaryExpression.h25 , fIfFalse(std::move(ifFalse)) {} in ASTTernaryExpression()
29 fIfFalse->description() + ")"; in description()
34 const std::unique_ptr<ASTExpression> fIfFalse; member
/external/skia/src/sksl/
DSkSLCFGGenerator.cpp191 this->addExpression(cfg, &t->fIfFalse, constantPropagate); in addExpression()
240 if (ifs->fIfFalse) { in addStatement()
243 this->addStatement(cfg, ifs->fIfFalse.get()); in addStatement()
DSkSLGLSLCodeGenerator.cpp437 this->writeExpression(*t.fIfFalse, kTernary_Precedence); in writeTernaryExpression()
717 if (stmt.fIfFalse) { in writeIfStatement()
719 this->writeStatement(*stmt.fIfFalse); in writeIfStatement()
DSkSLIRGenerator.cpp293 if (s.fIfFalse) { in convertIf()
294 ifFalse = this->convertStatement(*s.fIfFalse); in convertIf()
303 } else if (s.fIfFalse) { in convertIf()
1078 std::unique_ptr<Expression> ifFalse = this->convertExpression(*expression.fIfFalse); in convertTernaryExpression()
DSkSLSPIRVCodeGenerator.cpp2242 if (t.fIfTrue->isConstant() && t.fIfFalse->isConstant()) { in writeTernaryExpression()
2246 SpvId falseId = this->writeExpression(*t.fIfFalse, out); in writeTernaryExpression()
2265 this->writeInstruction(SpvOpStore, var, this->writeExpression(*t.fIfFalse, out), out); in writeTernaryExpression()
2685 if (stmt.fIfFalse) { in writeIfStatement()
2695 this->writeStatement(*stmt.fIfFalse, out); in writeIfStatement()