Home
last modified time | relevance | path

Searched defs:ifFalse (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()
69 std::unique_ptr<Statement>& ifFalse() { in ifFalse() function
73 const std::unique_ptr<Statement>& ifFalse() const { in ifFalse() function
DSkSLTernaryExpression.h35 std::unique_ptr<Expression> ifTrue, std::unique_ptr<Expression> ifFalse) in TernaryExpression()
74 std::unique_ptr<Expression>& ifFalse() { in ifFalse() function
78 const std::unique_ptr<Expression>& ifFalse() const { in ifFalse() function
DSkSLIfStatement.cpp41 std::unique_ptr<Statement> ifFalse) { in Convert()
66 std::unique_ptr<Statement> ifFalse) { in Make()
DSkSLTernaryExpression.cpp26 std::unique_ptr<Expression> ifFalse) { in Convert()
69 std::unique_ptr<Expression> ifFalse) { 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.cpp2732 const Expression& ifFalse) { in pushDynamicallyUniformTernaryExpression()
2779 const Expression& ifFalse) { in pushTernaryExpression()
DSkSLVMCodeGenerator.cpp1718 Value ifTrue, ifFalse; in writeTernaryExpression() local
1943 ScopedCondition ifFalse(this, ~i32(test)); in writeIfStatement() local
DSkSLSPIRVCodeGenerator.cpp3798 SpvId ifFalse = this->nextId(nullptr); in writeIfStatement() local
/external/skia/src/sksl/
DSkSLParser.cpp1197 DSLStatement ifFalse; in ifStatement() local