/external/skia/src/sksl/ir/ |
D | SkSLTernaryExpression.h | 21 std::unique_ptr<Expression> ifTrue, std::unique_ptr<Expression> ifFalse) in TernaryExpression() 22 : INHERITED(offset, kTernary_Kind, ifTrue->fType) in TernaryExpression() 24 , fIfTrue(std::move(ifTrue)) in TernaryExpression()
|
D | SkSLIfStatement.h | 21 std::unique_ptr<Statement> ifTrue, std::unique_ptr<Statement> ifFalse) in IfStatement() 25 , fIfTrue(std::move(ifTrue)) in IfStatement()
|
/external/skqp/src/sksl/ir/ |
D | SkSLTernaryExpression.h | 21 std::unique_ptr<Expression> ifTrue, std::unique_ptr<Expression> ifFalse) in TernaryExpression() 22 : INHERITED(offset, kTernary_Kind, ifTrue->fType) in TernaryExpression() 24 , fIfTrue(std::move(ifTrue)) in TernaryExpression()
|
D | SkSLIfStatement.h | 21 std::unique_ptr<Statement> ifTrue, std::unique_ptr<Statement> ifFalse) in IfStatement() 25 , fIfTrue(std::move(ifTrue)) in IfStatement()
|
/external/skqp/src/sksl/ast/ |
D | SkSLASTTernaryExpression.h | 20 std::unique_ptr<ASTExpression> ifTrue, in ASTTernaryExpression() 24 , fIfTrue(std::move(ifTrue)) in ASTTernaryExpression()
|
D | SkSLASTIfStatement.h | 20 std::unique_ptr<ASTStatement> ifTrue, std::unique_ptr<ASTStatement> ifFalse) in ASTIfStatement() 24 , fIfTrue(std::move(ifTrue)) in ASTIfStatement()
|
/external/skia/src/sksl/ast/ |
D | SkSLASTTernaryExpression.h | 20 std::unique_ptr<ASTExpression> ifTrue, in ASTTernaryExpression() 24 , fIfTrue(std::move(ifTrue)) in ASTTernaryExpression()
|
D | SkSLASTIfStatement.h | 20 std::unique_ptr<ASTStatement> ifTrue, std::unique_ptr<ASTStatement> ifFalse) in ASTIfStatement() 24 , fIfTrue(std::move(ifTrue)) in ASTIfStatement()
|
/external/skqp/src/sksl/ |
D | SkSLJIT.cpp | 320 TernaryLValue(JIT* jit, LLVMValueRef test, std::unique_ptr<LValue> ifTrue, in getLValue() argument 324 , fIfTrue(std::move(ifTrue)) in getLValue() 341 LLVMValueRef ifTrue = fIfTrue->load(builder); in getLValue() local 347 LLVMTypeRef type = LLVMPointerType(LLVMTypeOf(ifTrue), 0); in getLValue() 349 LLVMValueRef incomingValues[2] = { ifTrue, ifFalse }; in getLValue() 695 LLVMBasicBlockRef ifTrue = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileBinary() local 699 LLVMBuildCondBr(builder, left, ifTrue, merge); in compileBinary() 700 this->setBlock(builder, ifTrue); in compileBinary() 706 LLVMBasicBlockRef incomingBlocks[2] = { ifTrue, ifFalse }; in compileBinary() 712 LLVMBasicBlockRef ifTrue = fCurrentBlock; in compileBinary() local [all …]
|
D | SkSLIRGenerator.cpp | 370 std::unique_ptr<Statement> ifTrue = this->convertStatement(*s.fIfTrue); in convertIf() local 371 if (!ifTrue) { in convertIf() 384 return ifTrue; in convertIf() 395 std::move(ifTrue), std::move(ifFalse))); in convertIf() 1517 std::unique_ptr<Expression> ifTrue = this->convertExpression(*expression.fIfTrue); in convertTernaryExpression() local 1518 if (!ifTrue) { in convertTernaryExpression() 1528 if (!determine_binary_type(fContext, Token::EQEQ, ifTrue->fType, ifFalse->fType, &trueType, in convertTernaryExpression() 1531 ifTrue->fType.fName + "', '" + in convertTernaryExpression() 1535 ifTrue = this->coerce(std::move(ifTrue), *trueType); in convertTernaryExpression() 1536 if (!ifTrue) { in convertTernaryExpression() [all …]
|
D | SkSLSPIRVCodeGenerator.cpp | 1683 SpvId ifTrue = this->getLValue(*t.fIfTrue, out)->getPointer(); in getLValue() local 1684 SkASSERT(ifTrue); in getLValue() 1692 this->writeInstruction(SpvOpPhi, this->getType(*fContext.fBool_Type), result, ifTrue, in getLValue() 2836 SpvId ifTrue = this->nextId(); in writeIfStatement() local 2841 this->writeInstruction(SpvOpBranchConditional, test, ifTrue, ifFalse, out); in writeIfStatement() 2842 this->writeLabel(ifTrue, out); in writeIfStatement() 2855 this->writeInstruction(SpvOpBranchConditional, test, ifTrue, ifFalse, out); in writeIfStatement() 2856 this->writeLabel(ifTrue, out); in writeIfStatement()
|
D | SkSLParser.cpp | 1168 std::unique_ptr<ASTStatement> ifTrue(this->statement()); in ifStatement() local 1169 if (!ifTrue) { in ifStatement() 1182 std::move(ifTrue), in ifStatement()
|
/external/skia/src/sksl/ |
D | SkSLJIT.cpp | 320 TernaryLValue(JIT* jit, LLVMValueRef test, std::unique_ptr<LValue> ifTrue, in getLValue() argument 324 , fIfTrue(std::move(ifTrue)) in getLValue() 341 LLVMValueRef ifTrue = fIfTrue->load(builder); in getLValue() local 347 LLVMTypeRef type = LLVMPointerType(LLVMTypeOf(ifTrue), 0); in getLValue() 349 LLVMValueRef incomingValues[2] = { ifTrue, ifFalse }; in getLValue() 695 LLVMBasicBlockRef ifTrue = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileBinary() local 699 LLVMBuildCondBr(builder, left, ifTrue, merge); in compileBinary() 700 this->setBlock(builder, ifTrue); in compileBinary() 706 LLVMBasicBlockRef incomingBlocks[2] = { ifTrue, ifFalse }; in compileBinary() 712 LLVMBasicBlockRef ifTrue = fCurrentBlock; in compileBinary() local [all …]
|
D | SkSLIRGenerator.cpp | 376 std::unique_ptr<Statement> ifTrue = this->convertStatement(*s.fIfTrue); in convertIf() local 377 if (!ifTrue) { in convertIf() 390 return ifTrue; in convertIf() 401 std::move(ifTrue), std::move(ifFalse))); in convertIf() 1566 std::unique_ptr<Expression> ifTrue = this->convertExpression(*expression.fIfTrue); in convertTernaryExpression() local 1567 if (!ifTrue) { in convertTernaryExpression() 1577 if (!determine_binary_type(fContext, Token::EQEQ, ifTrue->fType, ifFalse->fType, &trueType, in convertTernaryExpression() 1580 ifTrue->fType.description() + "', '" + in convertTernaryExpression() 1584 ifTrue = this->coerce(std::move(ifTrue), *trueType); in convertTernaryExpression() 1585 if (!ifTrue) { in convertTernaryExpression() [all …]
|
D | SkSLSPIRVCodeGenerator.cpp | 1739 SpvId ifTrue = this->getLValue(*t.fIfTrue, out)->getPointer(); in getLValue() local 1740 SkASSERT(ifTrue); in getLValue() 1748 this->writeInstruction(SpvOpPhi, this->getType(*fContext.fBool_Type), result, ifTrue, in getLValue() 2827 SpvId ifTrue = this->nextId(); in writeIfStatement() local 2832 this->writeInstruction(SpvOpBranchConditional, test, ifTrue, ifFalse, out); in writeIfStatement() 2833 this->writeLabel(ifTrue, out); in writeIfStatement() 2846 this->writeInstruction(SpvOpBranchConditional, test, ifTrue, ifFalse, out); in writeIfStatement() 2847 this->writeLabel(ifTrue, out); in writeIfStatement()
|
D | SkSLParser.cpp | 1155 std::unique_ptr<ASTStatement> ifTrue(this->statement()); in ifStatement() local 1156 if (!ifTrue) { in ifStatement() 1169 std::move(ifTrue), in ifStatement()
|
/external/swiftshader/src/Reactor/ |
D | Nucleus.hpp | 70 static void createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse); 147 static Value *createSelect(Value *C, Value *ifTrue, Value *ifFalse);
|
D | Reactor.hpp | 2692 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, RValue<T> ifFalse) in IfThenElse() argument 2694 return RValue<T>(Nucleus::createSelect(condition.value, ifTrue.value, ifFalse.value)); in IfThenElse() 2698 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, RValue<T> ifFalse) in IfThenElse() argument 2700 Value *trueValue = ifTrue.loadValue(); in IfThenElse() 2706 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, const T &ifFalse) in IfThenElse() argument 2710 return RValue<T>(Nucleus::createSelect(condition.value, ifTrue.value, falseValue)); in IfThenElse() 2714 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, const T &ifFalse) in IfThenElse() argument 2716 Value *trueValue = ifTrue.loadValue(); in IfThenElse()
|
D | SubzeroReactor.cpp | 695 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr() argument 697 auto br = Ice::InstBr::create(::function, cond, ifTrue, ifFalse); in createCondBr() 1265 Value *Nucleus::createSelect(Value *C, Value *ifTrue, Value *ifFalse) in createSelect() argument 1267 assert(ifTrue->getType() == ifFalse->getType()); in createSelect() 1269 auto result = ::function->makeVariable(ifTrue->getType()); in createSelect() 1270 auto *select = Ice::InstSelect::create(::function, result, C, ifTrue, ifFalse); in createSelect()
|
D | LLVMReactor.cpp | 1041 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr() argument 1043 ::builder->CreateCondBr(V(cond), B(ifTrue), B(ifFalse)); in createCondBr() 1463 Value *Nucleus::createSelect(Value *c, Value *ifTrue, Value *ifFalse) in createSelect() argument 1465 return V(::builder->CreateSelect(V(c), V(ifTrue), V(ifFalse))); in createSelect()
|
/external/kotlinc/lib/ |
D | kotlin-compiler.jar | META-INF/MANIFEST.MF
org/jetbrains/kotlin/utils/JavaSdkUtil.class
JavaSdkUtil ... |
/external/error_prone/error_prone/ |
D | error_prone_core-2.3.2-with-dependencies.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/services/
META- ... |