Home | History | Annotate | Download | only in slang

Lines Matching defs:ClassName

72                                      std::string &ClassName) {
73 ClassName.clear();
78 ClassName =
265 const std::string &ClassName,
269 ClassName,
718 std::string ClassName = ET->getElementName();
719 if (C.mTypesToCheck.find(ClassName) == C.mTypesToCheck.end()) {
720 C.indent() << RS_ELEM_PREFIX << ClassName << " = " << ClassName <<
722 C.mTypesToCheck.insert(ClassName);
1195 std::string ClassName = ERT->getElementName();
1199 ClassName,
1204 mGeneratedFileNames->push_back(ClassName);
1957 bool RSReflection::Context::openClassFile(const std::string &ClassName,
1968 std::string ClassFile = Path + OS_PATH_SEPARATOR_STR + ClassName + ".java";
1991 const std::string &ClassName,
1995 std::cout << "Generating " << ClassName << ".java ..." << std::endl;
1998 if (!openClassFile(ClassName, ErrorMsg))
2027 << ClassName;
2033 mClassName = ClassName;
2061 void RSReflection::Context::startTypeClass(const std::string &ClassName) {
2062 indent() << "public static class " << ClassName;