Home
last modified time | relevance | path

Searched defs:ifTrue (Results 1 – 10 of 10) 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.cpp35 std::unique_ptr<Statement> ifTrue, in Convert()
60 std::unique_ptr<Statement> ifTrue, in Make()
DSkSLTernaryExpression.cpp27 std::unique_ptr<Expression> ifTrue, in Convert()
75 std::unique_ptr<Expression> ifTrue, in Make()
/external/swiftshader/src/Reactor/
DReactor.hpp2946 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, RValue<T> ifFalse) in IfThenElse()
2953 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, RValue<T> ifFalse) in IfThenElse()
2962 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, const T &ifFalse) in IfThenElse()
2971 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, const T &ifFalse) in IfThenElse()
DLLVMReactor.cpp713 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr()
1637 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.cpp3788 const Expression& ifTrue, in pushDynamicallyUniformTernaryExpression()
3835 const Expression& ifTrue, in pushTernaryExpression()
DSkSLSPIRVCodeGenerator.cpp4900 SpvId ifTrue = this->nextId(nullptr); in writeIfStatement() local
/external/skia/src/sksl/
DSkSLParser.cpp1413 std::unique_ptr<Statement> ifTrue = this->statement(); in ifStatement() local