Searched refs:fIfFalse (Results 1 – 8 of 8) sorted by relevance
/external/skia/src/sksl/ir/ |
D | SkSLTernaryExpression.h | 25 , 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
|
D | SkSLIfStatement.h | 25 , 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/ |
D | SkSLASTIfStatement.h | 24 , 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
|
D | SkSLASTTernaryExpression.h | 25 , fIfFalse(std::move(ifFalse)) {} in ASTTernaryExpression() 29 fIfFalse->description() + ")"; in description() 34 const std::unique_ptr<ASTExpression> fIfFalse; member
|
/external/skia/src/sksl/ |
D | SkSLCFGGenerator.cpp | 191 this->addExpression(cfg, &t->fIfFalse, constantPropagate); in addExpression() 240 if (ifs->fIfFalse) { in addStatement() 243 this->addStatement(cfg, ifs->fIfFalse.get()); in addStatement()
|
D | SkSLGLSLCodeGenerator.cpp | 437 this->writeExpression(*t.fIfFalse, kTernary_Precedence); in writeTernaryExpression() 717 if (stmt.fIfFalse) { in writeIfStatement() 719 this->writeStatement(*stmt.fIfFalse); in writeIfStatement()
|
D | SkSLIRGenerator.cpp | 293 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()
|
D | SkSLSPIRVCodeGenerator.cpp | 2242 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()
|