Home | History | Annotate | Download | only in slang

Lines Matching refs:mClassName

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