Lines Matching refs:mClassName
127 mClassName = "ScriptC_" + mCleanedRSFileName; in RSReflectionCpp()
143 if (!mOut.startFile(mOutputDirectory, mClassName + ".h", mRSSourceFilePath, in writeHeaderFile()
156 mOut.indent() << "class " << mClassName << " : public android::RSC::ScriptC"; in writeHeaderFile()
172 mOut.indent() << mClassName << "(android::RSC::sp<android::RSC::RS> rs);\n"; in writeHeaderFile()
173 mOut.indent() << "virtual ~" << mClassName << "();\n\n"; in writeHeaderFile()
322 "void " + mClassName + "::forEach_" + ef->getName() + "("; in genExportForEachBodies()
450 if (!mOut.startFile(mOutputDirectory, mClassName + ".cpp", mRSSourceFilePath, in writeImplementationFile()
457 mOut.indent() << "#include \"" << mClassName << ".h\"\n\n"; in writeImplementationFile()
464 mOut.indent() << mClassName << "::" << mClassName in writeImplementationFile()
491 mOut.indent() << mClassName << "::~" << mClassName << "()"; in writeImplementationFile()
706 mOut << mClassName << "::"; in makeFunctionSignature()