HomeSort by relevance Sort by last modified time
    Searched defs:fStatements (Results 1 - 8 of 8) sorted by null

  /external/skia/src/sksl/ast/
SkSLASTBlock.h 21 , fStatements(std::move(statements)) {}
25 for (size_t i = 0; i < fStatements.size(); i++) {
27 result += fStatements[i]->description();
33 const std::vector<std::unique_ptr<ASTStatement>> fStatements;
SkSLASTSwitchCase.h 24 , fStatements(std::move(statements)) {}
33 for (const auto& s : fStatements) {
41 const std::vector<std::unique_ptr<ASTStatement>> fStatements;
  /external/skqp/src/sksl/ast/
SkSLASTBlock.h 21 , fStatements(std::move(statements)) {}
25 for (size_t i = 0; i < fStatements.size(); i++) {
27 result += fStatements[i]->description();
33 const std::vector<std::unique_ptr<ASTStatement>> fStatements;
SkSLASTSwitchCase.h 24 , fStatements(std::move(statements)) {}
33 for (const auto& s : fStatements) {
41 const std::vector<std::unique_ptr<ASTStatement>> fStatements;
  /external/skia/src/sksl/ir/
SkSLBlock.h 24 , fStatements(std::move(statements)) {}
27 for (const auto& s : fStatements) {
37 for (const auto& s : fStatements) {
45 for (size_t i = 0; i < fStatements.size(); i++) {
47 result += fStatements[i]->description();
53 // it's important to keep fStatements defined after (and thus destroyed before) fSymbols,
56 std::vector<std::unique_ptr<Statement>> fStatements;
SkSLSwitchCase.h 24 , fStatements(std::move(statements)) {}
28 for (const auto& s : fStatements) {
43 for (const auto& s : fStatements) {
51 std::vector<std::unique_ptr<Statement>> fStatements;
  /external/skqp/src/sksl/ir/
SkSLBlock.h 24 , fStatements(std::move(statements)) {}
27 for (const auto& s : fStatements) {
37 for (const auto& s : fStatements) {
45 for (size_t i = 0; i < fStatements.size(); i++) {
47 result += fStatements[i]->description();
53 // it's important to keep fStatements defined after (and thus destroyed before) fSymbols,
56 std::vector<std::unique_ptr<Statement>> fStatements;
SkSLSwitchCase.h 24 , fStatements(std::move(statements)) {}
28 for (const auto& s : fStatements) {
43 for (const auto& s : fStatements) {
51 std::vector<std::unique_ptr<Statement>> fStatements;

Completed in 101 milliseconds