Lines Matching refs:fFormatArgs
98 fFormatArgs.push_back(name + ".c_str()"); in writeIndexExpression()
114 fFormatArgs.push_back(" fragBuilder->getProgramBuilder()->samplerVariable(" in writeIndexExpression()
158 fFormatArgs.push_back(cppCode); in writeRuntimeValue()
161 fFormatArgs.push_back(cppCode); in writeRuntimeValue()
164 fFormatArgs.push_back("(" + cppCode + " ? \"true\" : \"false\")"); in writeRuntimeValue()
167 fFormatArgs.push_back(cppCode + ".fX"); in writeRuntimeValue()
168 fFormatArgs.push_back(cppCode + ".fY"); in writeRuntimeValue()
173 fFormatArgs.push_back("SkGetPackedR32(" + cppCode + ") / 255.0"); in writeRuntimeValue()
174 fFormatArgs.push_back("SkGetPackedG32(" + cppCode + ") / 255.0"); in writeRuntimeValue()
175 fFormatArgs.push_back("SkGetPackedB32(" + cppCode + ") / 255.0"); in writeRuntimeValue()
176 fFormatArgs.push_back("SkGetPackedA32(" + cppCode + ") / 255.0"); in writeRuntimeValue()
179 fFormatArgs.push_back(cppCode + ".fR"); in writeRuntimeValue()
180 fFormatArgs.push_back(cppCode + ".fG"); in writeRuntimeValue()
181 fFormatArgs.push_back(cppCode + ".fB"); in writeRuntimeValue()
182 fFormatArgs.push_back(cppCode + ".fA"); in writeRuntimeValue()
186 fFormatArgs.push_back(cppCode + ".left()"); in writeRuntimeValue()
187 fFormatArgs.push_back(cppCode + ".top()"); in writeRuntimeValue()
188 fFormatArgs.push_back(cppCode + ".right()"); in writeRuntimeValue()
189 fFormatArgs.push_back(cppCode + ".bottom()"); in writeRuntimeValue()
196 fFormatArgs.push_back("(int) " + cppCode); in writeRuntimeValue()
201 fFormatArgs.push_back(cppCode + ".left()"); in writeRuntimeValue()
202 fFormatArgs.push_back(cppCode + ".top()"); in writeRuntimeValue()
203 fFormatArgs.push_back(cppCode + ".right()"); in writeRuntimeValue()
204 fFormatArgs.push_back(cppCode + ".bottom()"); in writeRuntimeValue()
261 fFormatArgs.push_back(String("args.fInputColor")); in writeVariableReference()
265 fFormatArgs.push_back(String("args.fOutputColor")); in writeVariableReference()
276 fFormatArgs.push_back("fragBuilder->getProgramBuilder()->samplerVariable(" + in writeVariableReference()
294 fFormatArgs.push_back(code); in writeVariableReference()
419 fFormatArgs.push_back(childName + ".c_str()"); in writeFunctionCall()
428 fFormatArgs.push_back("fragBuilder->getProgramBuilder()->samplerSwizzle(" + sampler + in writeFunctionCall()
727 this->writef(", %s", fFormatArgs[i].c_str()); in writeCodeAppend()
737 fFormatArgs.erase(fFormatArgs.begin(), fFormatArgs.begin() + argStart); in writeCodeAppend()
749 std::vector<String> oldArgs(fFormatArgs); in convertSKSLExpressionToCPP()
750 fFormatArgs.clear(); in convertSKSLExpressionToCPP()
754 std::vector<String> newArgs(fFormatArgs); in convertSKSLExpressionToCPP()
758 fFormatArgs = oldArgs; in convertSKSLExpressionToCPP()