/third_party/skia/src/sksl/ir/ |
D | SkSLIfStatement.h | 26 std::unique_ptr<Statement> ifTrue, std::unique_ptr<Statement> ifFalse) in IfStatement() 58 std::unique_ptr<Statement>& ifTrue() { in ifTrue() function 62 const std::unique_ptr<Statement>& ifTrue() const { in ifTrue() function
|
D | SkSLTernaryExpression.h | 23 std::unique_ptr<Expression> ifTrue, std::unique_ptr<Expression> ifFalse) in TernaryExpression() 52 std::unique_ptr<Expression>& ifTrue() { in ifTrue() function 56 const std::unique_ptr<Expression>& ifTrue() const { in ifTrue() function
|
D | SkSLTernaryExpression.cpp | 21 std::unique_ptr<Expression> ifTrue, in Convert() 63 std::unique_ptr<Expression> ifTrue, in Make()
|
D | SkSLIfStatement.cpp | 40 std::unique_ptr<Statement> ifTrue, in Convert() 65 std::unique_ptr<Statement> ifTrue, in Make()
|
/third_party/skia/src/sksl/dsl/ |
D | DSLCore.cpp | 210 static DSLPossibleStatement If(DSLExpression test, DSLStatement ifTrue, DSLStatement ifFalse, in If() 330 static DSLPossibleExpression Select(DSLExpression test, DSLExpression ifTrue, in Select() 443 DSLStatement If(DSLExpression test, DSLStatement ifTrue, DSLStatement ifFalse, PositionInfo pos) { in If() 465 DSLExpression Select(DSLExpression test, DSLExpression ifTrue, DSLExpression ifFalse, in Select() 471 DSLStatement StaticIf(DSLExpression test, DSLStatement ifTrue, DSLStatement ifFalse, in StaticIf()
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLJIT.cpp | 320 TernaryLValue(JIT* jit, LLVMValueRef test, std::unique_ptr<LValue> ifTrue, in getLValue() 341 LLVMValueRef ifTrue = fIfTrue->load(builder); in getLValue() local 695 LLVMBasicBlockRef ifTrue = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileBinary() local 712 LLVMBasicBlockRef ifTrue = fCurrentBlock; in compileBinary() local 1008 LLVMValueRef ifTrue = this->compileExpression(builder, *t.fIfTrue); in compileTernary() local 1088 LLVMBasicBlockRef ifTrue = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, "if true"); in compileIf() local
|
D | SkSLIRGenerator.cpp | 403 std::unique_ptr<Statement> ifTrue = this->convertStatement(*(iter++)); in convertIf() local 1713 std::unique_ptr<Expression> ifTrue = this->convertExpression(*(iter++)); in convertTernaryExpression() local
|
D | SkSLParser.cpp | 1160 ASTNode::ID ifTrue = this->statement(); in ifStatement() local
|
D | SkSLSPIRVCodeGenerator.cpp | 1765 SpvId ifTrue = this->getLValue(*t.fIfTrue, out)->getPointer(); in getLValue() local 2871 SpvId ifTrue = this->nextId(); in writeIfStatement() local
|
/third_party/skia/src/sksl/ |
D | SkSLRehydrator.cpp | 354 std::unique_ptr<Statement> ifTrue = this->statement(); in statement() local 523 std::unique_ptr<Expression> ifTrue = this->expression(); in expression() local
|
D | SkSLDSLParser.cpp | 924 DSLStatement ifTrue = this->statement(); in ifStatement() local
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | Reactor.hpp | 3149 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, RValue<T> ifFalse) in IfThenElse() 3156 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, RValue<T> ifFalse) in IfThenElse() 3165 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, const T &ifFalse) in IfThenElse() 3174 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, const T &ifFalse) in IfThenElse()
|
D | LLVMReactor.cpp | 753 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr() 1679 Value *Nucleus::createSelect(Value *c, Value *ifTrue, Value *ifFalse) in createSelect()
|
D | SubzeroReactor.cpp | 1190 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr() 1931 Value *Nucleus::createSelect(Value *C, Value *ifTrue, Value *ifFalse) in createSelect()
|
/third_party/skia/src/sksl/codegen/ |
D | SkSLVMCodeGenerator.cpp | 1485 Value ifTrue, ifFalse; in writeTernaryExpression() local 1685 ScopedCondition ifTrue(this, i32(test)); in writeIfStatement() local
|
D | SkSLSPIRVCodeGenerator.cpp | 3210 SpvId ifTrue = this->nextId(nullptr); in writeIfStatement() local
|