Home
last modified time | relevance | path

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

/external/skqp/src/sksl/ir/
DSkSLSection.h22 , 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
/external/skia/src/sksl/ir/
DSkSLSection.h22 , fArgument(std::move(arg)) in Section()
26 return std::unique_ptr<ProgramElement>(new Section(fOffset, fName, fArgument, fText)); in clone()
32 if (fArgument.size()) { in description()
33 result += "(" + fArgument + ")"; in description()
41 const String fArgument; member
/external/skqp/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.cpp243 String field = CoordTransformName(s.fArgument.c_str(), i); in writeConstructor()
244 if (s.fArgument.size()) { in writeConstructor()
246 FieldName(s.fArgument.c_str()).c_str(), in writeConstructor()
247 FieldName(s.fArgument.c_str()).c_str()); in writeConstructor()
261 if (s->fArgument == name) { in writeConstructor()
302 String field = CoordTransformName(s.fArgument.c_str(), i); in writeConstructor()
314 CoordTransformName(s.fArgument.c_str(), i).c_str()); in writeFields()
DSkSLSectionAndParameterHelper.cpp46 if (SectionRequiresArgument(s.fName.c_str()) && !s.fArgument.size()) { in SectionAndParameterHelper()
51 if (!SectionAcceptsArgument(s.fName.c_str()) && s.fArgument.size()) { in SectionAndParameterHelper()
DSkSLASTNode.h259 , fArgument(argument) in SectionData()
263 StringFragment fArgument; member
DSkSLCPPCodeGenerator.cpp943 const char* pdman = section ? section->fArgument.c_str() : "pdman"; in writeSetData()
1091 String fieldName = HCodeGenerator::CoordTransformName(s.fArgument, i); in writeClone()
1133 String fieldName = HCodeGenerator::CoordTransformName(s.fArgument, i); in writeClone()
1154 test->fArgument.c_str()); in writeTest()
DSkSLIRGenerator.cpp1245 return std::unique_ptr<Section>(new Section(s.fOffset, section.fName, section.fArgument, in convertSection()
/external/skqp/src/sksl/
DSkSLHCodeGenerator.cpp243 if (s->fArgument == name) { in writeConstructor()
257 String field = CoordTransformName(s.fArgument.c_str(), i); in writeConstructor()
258 if (s.fArgument.size()) { in writeConstructor()
260 FieldName(s.fArgument.c_str()).c_str()); in writeConstructor()
282 String field = CoordTransformName(s.fArgument.c_str(), i); in writeConstructor()
302 CoordTransformName(s.fArgument.c_str(), i).c_str()); in writeFields()
DSkSLSectionAndParameterHelper.h57 if (SectionRequiresArgument(s.fName.c_str()) && !s.fArgument.size()) { in SectionAndParameterHelper()
62 if (!SectionAcceptsArgument(s.fName.c_str()) && s.fArgument.size()) { in SectionAndParameterHelper()
DSkSLCPPCodeGenerator.cpp848 const char* pdman = section ? section->fArgument.c_str() : "pdman"; in writeSetData()
1005 String fieldName = HCodeGenerator::CoordTransformName(s.fArgument, i); in writeClone()
1024 String fieldName = HCodeGenerator::CoordTransformName(s.fArgument, i); in writeClone()
1045 test->fArgument.c_str()); in writeTest()
DSkSLIRGenerator.cpp1080 return std::unique_ptr<Section>(new Section(s.fOffset, s.fName, s.fArgument, s.fText)); in convertSection()