Home
last modified time | relevance | path

Searched refs:fStatements (Results 1 – 25 of 28) sorted by relevance

12

/external/skia/src/sksl/ir/
DSkSLBlock.h24 , 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
DSkSLSwitchCase.h24 , 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/
DSkSLBlock.h24 , 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
DSkSLSwitchCase.h24 , 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/
DSkSLASTBlock.h21 , 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
DSkSLASTSwitchCase.h24 , 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/
DSkSLASTBlock.h21 , 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
DSkSLASTSwitchCase.h24 , 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/
DSkSLInterpreter.cpp86 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()
DSkSLMetalCodeGenerator.cpp802 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()
DSkSLPipelineStageCodeGenerator.cpp189 for (const auto& s : ((Block&) *f.fBody).fStatements) { in writeFunction()
DSkSLIRGenerator.cpp234 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()
DSkSLCFGGenerator.cpp456 for (auto& child : ((Block&) **s).fStatements) { in addStatement()
612 for (auto& caseStatement : c->fStatements) { in addStatement()
DSkSLGLSLCodeGenerator.cpp1052 this->writeStatements(((Block&) *f.fBody).fStatements); in writeFunctionCall()
1317 this->writeStatements(b.fStatements); in writeFunctionCall()
1434 for (const auto& stmt : c->fStatements) { in writeFunctionCall()
DSkSLCompiler.cpp917 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()
DSkSLJIT.cpp70 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()
DSkSLCPPCodeGenerator.cpp440 for (const auto& s : ((Block&) *f.fBody).fStatements) { in writeFunction()
/external/skia/src/sksl/
DSkSLInterpreter.cpp86 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()
DSkSLMetalCodeGenerator.cpp946 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()
DSkSLPipelineStageCodeGenerator.cpp190 for (const auto& s : ((Block&) *f.fBody).fStatements) { in writeFunction()
DSkSLIRGenerator.cpp240 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()
DSkSLCFGGenerator.cpp457 for (auto& child : ((Block&) **s).fStatements) { in addStatement()
613 for (auto& caseStatement : c->fStatements) { in addStatement()
DSkSLGLSLCodeGenerator.cpp1071 this->writeStatements(((Block&) *f.fBody).fStatements); in writeFunctionCall()
1344 this->writeStatements(b.fStatements); in writeFunctionCall()
1461 for (const auto& stmt : c->fStatements) { in writeFunctionCall()
DSkSLJIT.cpp70 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()
DSkSLCompiler.cpp917 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()

12