Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Getr

970     std::string Getr;
974 Getr = "\nextern \"C\" __declspec(dllimport) "
978 PD->getGetterMethodDecl(), Getr);
979 Getr += "{ ";
984 Getr += "typedef ";
986 RewriteTypeIntoString(PD->getGetterMethodDecl()->getReturnType(), Getr,
988 Getr += " _TYPE";
990 Getr += ")"; // close the precedence "scope" for "*".
994 Getr += "(";
996 if (i) Getr += ", ";
999 Getr += ParamStr;
1003 Getr += ", ";
1004 Getr += "...";
1006 Getr += ")";
1008 Getr += "()";
1010 Getr += ";\n";
1011 Getr += "return (_TYPE)";
1012 Getr += "objc_getProperty(self, _cmd, ";
1013 RewriteIvarOffsetComputation(OID, Getr);
1014 Getr += ", 1)";
1017 Getr += "return " + getIvarAccessString(OID);
1018 Getr += "; }";
1019 InsertText(startGetterSetterLoc, Getr);