Home | History | Annotate | Download | only in emugen

Lines Matching defs:vartype

41 bool parseTypeField(const std::string & f, std::string *vartype, std::string *varname)
47 *vartype = "";
61 *vartype = "const ";
64 *vartype += str;
73 (*vartype) += "*";
79 (*vartype) += "*";
117 const VarType *theType = TypeFactory::instance()->getVarTypeByName(retTypeName);
132 std::string vartype, varname;
133 if (!parseTypeField(field, &vartype, &varname)) {
138 const VarType *v = TypeFactory::instance()->getVarTypeByName(vartype);
140 fprintf(stderr, "%d: Unknown type: %s\n", lc, vartype.c_str());