/external/skia/src/sksl/ir/ |
D | SkSLBlock.h | 24 , fStatements(std::move(statements)) {} in INHERITED() 27 for (const auto& s : fStatements) { in isEmpty() 37 for (const auto& s : fStatements) { in clone() 45 for (size_t i = 0; i < fStatements.size(); i++) { in description() 47 result += fStatements[i]->description(); in description() 56 std::vector<std::unique_ptr<Statement>> fStatements; member
|
D | SkSLSwitchCase.h | 24 , fStatements(std::move(statements)) {} in SwitchCase() 28 for (const auto& s : fStatements) { in clone() 43 for (const auto& s : fStatements) { in description() 51 std::vector<std::unique_ptr<Statement>> fStatements; member
|
/external/skqp/src/sksl/ir/ |
D | SkSLBlock.h | 24 , fStatements(std::move(statements)) {} in INHERITED() 27 for (const auto& s : fStatements) { in isEmpty() 37 for (const auto& s : fStatements) { in clone() 45 for (size_t i = 0; i < fStatements.size(); i++) { in description() 47 result += fStatements[i]->description(); in description() 56 std::vector<std::unique_ptr<Statement>> fStatements; member
|
D | SkSLSwitchCase.h | 24 , fStatements(std::move(statements)) {} in SwitchCase() 28 for (const auto& s : fStatements) { in clone() 43 for (const auto& s : fStatements) { in description() 51 std::vector<std::unique_ptr<Statement>> fStatements; member
|
/external/skqp/src/sksl/ast/ |
D | SkSLASTBlock.h | 21 , fStatements(std::move(statements)) {} in ASTBlock() 25 for (size_t i = 0; i < fStatements.size(); i++) { in description() 27 result += fStatements[i]->description(); in description() 33 const std::vector<std::unique_ptr<ASTStatement>> fStatements; member
|
D | SkSLASTSwitchCase.h | 24 , fStatements(std::move(statements)) {} in ASTSwitchCase() 33 for (const auto& s : fStatements) { in description() 41 const std::vector<std::unique_ptr<ASTStatement>> fStatements; member
|
/external/skia/src/sksl/ast/ |
D | SkSLASTBlock.h | 21 , fStatements(std::move(statements)) {} in ASTBlock() 25 for (size_t i = 0; i < fStatements.size(); i++) { in description() 27 result += fStatements[i]->description(); in description() 33 const std::vector<std::unique_ptr<ASTStatement>> fStatements; member
|
D | SkSLASTSwitchCase.h | 24 , fStatements(std::move(statements)) {} in ASTSwitchCase() 33 for (const auto& s : fStatements) { in description() 41 const std::vector<std::unique_ptr<ASTStatement>> fStatements; member
|
/external/skqp/src/sksl/ |
D | SkSLInterpreter.cpp | 86 if (!b.fStatements.size()) { in runStatement() 89 SkASSERT(index < b.fStatements.size()); in runStatement() 90 if (index < b.fStatements.size() - 1) { in runStatement() 93 fCurrentIndex.push_back({ b.fStatements[index].get(), 0 }); in runStatement()
|
D | SkSLMetalCodeGenerator.cpp | 802 this->writeStatements(((Block&) *f.fBody).fStatements); in writeFunction() 1052 this->writeStatements(b.fStatements); in writeBlock() 1115 for (const auto& stmt : c->fStatements) { in writeSwitchStatement() 1436 for (const auto& child : ((const Block&) s).fStatements) { in requirements() 1493 for (const auto& st : c->fStatements) { in requirements()
|
D | SkSLPipelineStageCodeGenerator.cpp | 189 for (const auto& s : ((Block&) *f.fBody).fStatements) { in writeFunction()
|
D | SkSLIRGenerator.cpp | 234 for (size_t i = 0; i < block.fStatements.size(); i++) { in convertBlock() 235 std::unique_ptr<Statement> statement = this->convertStatement(*block.fStatements[i]); in convertBlock() 500 for (const auto& s : c->fStatements) { in convertSwitch() 796 body->fStatements.insert(body->fStatements.begin(), std::move(v)); in convertFunction() 809 body->fStatements.insert(body->fStatements.end(), this->getNormalizeSkPositionCode()); in convertFunction()
|
D | SkSLCFGGenerator.cpp | 456 for (auto& child : ((Block&) **s).fStatements) { in addStatement() 612 for (auto& caseStatement : c->fStatements) { in addStatement()
|
D | SkSLGLSLCodeGenerator.cpp | 1052 this->writeStatements(((Block&) *f.fBody).fStatements); in writeFunctionCall() 1317 this->writeStatements(b.fStatements); in writeFunctionCall() 1434 for (const auto& stmt : c->fStatements) { in writeFunctionCall()
|
D | SkSLCompiler.cpp | 917 for (const auto& sub : ((Block&) s).fStatements) { in contains_conditional_break() 940 for (const auto& sub : ((Block&) s).fStatements) { in contains_unconditional_break() 966 for (auto& stmt : current->fStatements) { in block_for_case()
|
D | SkSLJIT.cpp | 70 if (b.fStatements.size()) { in ends_with_branch() 71 return ends_with_branch(*b.fStatements.back()); in ends_with_branch() 1066 for (const auto& stmt : block.fStatements) { in compileBlock() 1639 for (const auto& s : ((const Block&) stmt).fStatements) { in compileVectorStatement()
|
D | SkSLCPPCodeGenerator.cpp | 440 for (const auto& s : ((Block&) *f.fBody).fStatements) { in writeFunction()
|
/external/skia/src/sksl/ |
D | SkSLInterpreter.cpp | 86 if (!b.fStatements.size()) { in runStatement() 89 SkASSERT(index < b.fStatements.size()); in runStatement() 90 if (index < b.fStatements.size() - 1) { in runStatement() 93 fCurrentIndex.push_back({ b.fStatements[index].get(), 0 }); in runStatement()
|
D | SkSLMetalCodeGenerator.cpp | 946 this->writeStatements(((Block&) *f.fBody).fStatements); in writeFunction() 1196 this->writeStatements(b.fStatements); in writeBlock() 1259 for (const auto& stmt : c->fStatements) { in writeSwitchStatement() 1578 for (const auto& child : ((const Block&) s).fStatements) { in requirements() 1635 for (const auto& st : c->fStatements) { in requirements()
|
D | SkSLPipelineStageCodeGenerator.cpp | 190 for (const auto& s : ((Block&) *f.fBody).fStatements) { in writeFunction()
|
D | SkSLIRGenerator.cpp | 240 for (size_t i = 0; i < block.fStatements.size(); i++) { in convertBlock() 241 std::unique_ptr<Statement> statement = this->convertStatement(*block.fStatements[i]); in convertBlock() 506 for (const auto& s : c->fStatements) { in convertSwitch() 818 body->fStatements.insert(body->fStatements.begin(), std::move(v)); in convertFunction() 831 body->fStatements.insert(body->fStatements.end(), this->getNormalizeSkPositionCode()); in convertFunction()
|
D | SkSLCFGGenerator.cpp | 457 for (auto& child : ((Block&) **s).fStatements) { in addStatement() 613 for (auto& caseStatement : c->fStatements) { in addStatement()
|
D | SkSLGLSLCodeGenerator.cpp | 1071 this->writeStatements(((Block&) *f.fBody).fStatements); in writeFunctionCall() 1344 this->writeStatements(b.fStatements); in writeFunctionCall() 1461 for (const auto& stmt : c->fStatements) { in writeFunctionCall()
|
D | SkSLJIT.cpp | 70 if (b.fStatements.size()) { in ends_with_branch() 71 return ends_with_branch(*b.fStatements.back()); in ends_with_branch() 1066 for (const auto& stmt : block.fStatements) { in compileBlock() 1639 for (const auto& s : ((const Block&) stmt).fStatements) { in compileVectorStatement()
|
D | SkSLCompiler.cpp | 917 for (const auto& sub : ((Block&) s).fStatements) { in contains_conditional_break() 940 for (const auto& sub : ((Block&) s).fStatements) { in contains_unconditional_break() 966 for (auto& stmt : current->fStatements) { in block_for_case()
|