Home
last modified time | relevance | path

Searched refs:fArgument (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/sksl/ir/
DSkSLSection.h22 , fArgument(std::move(arg)) in Section()
27 if (fArgument.size()) { in description()
28 result += "(" + fArgument + ")"; in description()
35 const String fArgument; member
/external/skia/src/sksl/ast/
DSkSLASTSection.h22 , fArgument(std::move(arg)) in ASTSection()
27 if (fArgument.size()) { in description()
28 result += "(" + fArgument + ")"; in description()
35 const String fArgument; member
/external/skia/src/sksl/
DSkSLHCodeGenerator.cpp185 if (s->fArgument == name) { in writeConstructor()
195 String field = FieldName(s->fArgument.c_str()); in writeConstructor()
208 String field = FieldName(s->fArgument.c_str()); in writeConstructor()
224 FieldName(s->fArgument.c_str()).c_str()); in writeFields()
DSkSLSectionAndParameterHelper.h57 if (!s->fArgument.size()) { in SectionAndParameterHelper()
62 } else if (s->fArgument.size()) { in SectionAndParameterHelper()
DSkSLCPPCodeGenerator.cpp430 const char* pdman = section ? section->fArgument.c_str() : "pdman"; in writeSetData()
506 test->fArgument.c_str()); in writeTest()
DSkSLIRGenerator.cpp897 return std::unique_ptr<Section>(new Section(s.fPosition, s.fName, s.fArgument, s.fText)); in convertSection()