Home
last modified time | relevance | path

Searched defs:ifTrue (Results 1 – 12 of 12) sorted by relevance

/external/skia/src/sksl/ir/
DSkSLIfStatement.h32 std::unique_ptr<Statement> ifTrue, std::unique_ptr<Statement> ifFalse) in IfStatement()
61 std::unique_ptr<Statement>& ifTrue() { in ifTrue() function
65 const std::unique_ptr<Statement>& ifTrue() const { in ifTrue() function
DSkSLTernaryExpression.h35 std::unique_ptr<Expression> ifTrue, std::unique_ptr<Expression> ifFalse) in TernaryExpression()
66 std::unique_ptr<Expression>& ifTrue() { in ifTrue() function
70 const std::unique_ptr<Expression>& ifTrue() const { in ifTrue() function
DSkSLIfStatement.cpp40 std::unique_ptr<Statement> ifTrue, in Convert()
65 std::unique_ptr<Statement> ifTrue, in Make()
DSkSLTernaryExpression.cpp25 std::unique_ptr<Expression> ifTrue, in Convert()
68 std::unique_ptr<Expression> ifTrue, in Make()
/external/skia/src/sksl/dsl/
DDSLCore.cpp184 static DSLStatement If(DSLExpression test, DSLStatement ifTrue, DSLStatement ifFalse, in If()
267 static DSLExpression Select(DSLExpression test, DSLExpression ifTrue, DSLExpression ifFalse, in Select()
369 DSLStatement If(DSLExpression test, DSLStatement ifTrue, DSLStatement ifFalse, Position pos) { in If()
383 DSLExpression Select(DSLExpression test, DSLExpression ifTrue, DSLExpression ifFalse, in Select()
/external/swiftshader/src/Reactor/
DReactor.hpp2943 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, RValue<T> ifFalse) in IfThenElse()
2950 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, RValue<T> ifFalse) in IfThenElse()
2959 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, const T &ifFalse) in IfThenElse()
2968 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, const T &ifFalse) in IfThenElse()
DLLVMReactor.cpp722 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr()
1644 Value *Nucleus::createSelect(Value *c, Value *ifTrue, Value *ifFalse) in createSelect()
DSubzeroReactor.cpp1178 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr()
1915 Value *Nucleus::createSelect(Value *C, Value *ifTrue, Value *ifFalse) in createSelect()
/external/skia/src/sksl/codegen/
DSkSLRasterPipelineCodeGenerator.cpp2731 const Expression& ifTrue, in pushDynamicallyUniformTernaryExpression()
2778 const Expression& ifTrue, in pushTernaryExpression()
DSkSLVMCodeGenerator.cpp1718 Value ifTrue, ifFalse; in writeTernaryExpression() local
1939 ScopedCondition ifTrue(this, i32(test)); in writeIfStatement() local
DSkSLSPIRVCodeGenerator.cpp3797 SpvId ifTrue = this->nextId(nullptr); in writeIfStatement() local
/external/skia/src/sksl/
DSkSLParser.cpp1193 DSLStatement ifTrue = this->statement(); in ifStatement() local