Lines Matching refs:writeLine
60 void MetalCodeGenerator::writeLine(const char* s) { in writeLine() function in SkSL::MetalCodeGenerator
62 this->writeLine(); in writeLine()
69 void MetalCodeGenerator::writeLine(const String& s) { in writeLine() function in SkSL::MetalCodeGenerator
70 this->writeLine(s.c_str()); in writeLine()
73 void MetalCodeGenerator::writeLine() { in writeLine() function in SkSL::MetalCodeGenerator
80 this->writeLine(); in finishLine()
85 this->writeLine("#extension " + ext.name() + " : enable"); in writeExtension()
120 this->writeLine("struct " + type.name() + " {"); in writeStructDefinition()
124 this->writeLine("};"); in writeStructDefinition()
210 this->writeLine(";"); in getOutParamHelper()
257 this->writeLine(") {"); in getOutParamHelper()
277 this->writeLine(";"); in getOutParamHelper()
299 this->writeLine(");"); in getOutParamHelper()
311 this->writeLine(";"); in getOutParamHelper()
315 this->writeLine("return _skResult;"); in getOutParamHelper()
319 this->writeLine("}"); in getOutParamHelper()
1632 this->writeLine(";"); in writeFunctionPrototype()
1666 this->writeLine(" {"); in writeFunction()
1670 this->writeLine(" Outputs _out;"); in writeFunction()
1671 this->writeLine(" (void)_out;"); in writeFunction()
1693 this->writeLine("}"); in writeFunction()
1715 this->writeLine(intf.typeName() + " {"); in writeInterfaceBlock()
1723 this->writeLine("float u_skRTHeight;"); in writeInterfaceBlock()
1741 this->writeLine(";"); in writeInterfaceBlock()
1766 this->writeLine("];"); in writeFields()
1787 this->writeLine(";"); in writeFields()
1871 this->writeLine("{"); in writeBlock()
1935 this->writeLine(") {"); in writeSwitchStatement()
1942 this->writeLine(":"); in writeSwitchStatement()
1944 this->writeLine("default:"); in writeSwitchStatement()
1977 this->writeLine(";"); in writeReturnStatement()
2109 this->writeLine("struct sksl_synthetic_uniforms {"); in writeInterfaceBlocks()
2110 this->writeLine(" float u_skRTHeight;"); in writeInterfaceBlocks()
2111 this->writeLine("};"); in writeInterfaceBlocks()
2190 fCodeGen->writeLine("};"); in writeGlobalStruct()
2239 fCodeGen->writeLine("};"); in writeGlobalInit()
2240 fCodeGen->writeLine(" (void)_globals;"); in writeGlobalInit()
2284 this->writeLine(";"); in writeProgramElement()