Searched refs:fArgument (Results 1 – 7 of 7) sorted by relevance
/third_party/flutter/skia/src/sksl/ir/ |
D | SkSLSection.h | 22 , fArgument(std::move(arg)) in Section() 26 return std::unique_ptr<ProgramElement>(new Section(fOffset, fName, fArgument, fText)); in clone() 31 if (fArgument.size()) { in description() 32 result += "(" + fArgument + ")"; in description() 39 const String fArgument; member
|
/third_party/skia/src/sksl/ir/ |
D | SkSLConstructor.h | 76 std::unique_ptr<Expression> fArgument; 89 , fArgument(std::move(argument)) {} in SingleArgumentConstructor() 92 return fArgument; in argument() 96 return fArgument; in argument() 100 return {&fArgument, 1}; in argumentSpan() 104 return {&fArgument, 1}; in argumentSpan() 108 std::unique_ptr<Expression> fArgument;
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLHCodeGenerator.cpp | 242 String field = CoordTransformName(s.fArgument.c_str(), i); in writeConstructor() 243 if (s.fArgument.size()) { in writeConstructor() 245 FieldName(s.fArgument.c_str()).c_str()); in writeConstructor() 259 if (s->fArgument == name) { in writeConstructor() 296 String field = CoordTransformName(s.fArgument.c_str(), i); in writeConstructor() 308 CoordTransformName(s.fArgument.c_str(), i).c_str()); in writeFields()
|
D | SkSLSectionAndParameterHelper.h | 57 if (SectionRequiresArgument(s.fName.c_str()) && !s.fArgument.size()) { in SectionAndParameterHelper() 62 if (!SectionAcceptsArgument(s.fName.c_str()) && s.fArgument.size()) { in SectionAndParameterHelper()
|
D | SkSLCPPCodeGenerator.cpp | 889 const char* pdman = section ? section->fArgument.c_str() : "pdman"; in writeSetData() 1037 String fieldName = HCodeGenerator::CoordTransformName(s.fArgument, i); in writeClone() 1074 String fieldName = HCodeGenerator::CoordTransformName(s.fArgument, i); in writeClone() 1095 test->fArgument.c_str()); in writeTest()
|
D | SkSLASTNode.h | 259 , fArgument(argument) in SectionData() 263 StringFragment fArgument; member
|
D | SkSLIRGenerator.cpp | 1239 return std::unique_ptr<Section>(new Section(s.fOffset, section.fName, section.fArgument, in convertSection()
|