Home | History | Annotate | Download | only in Frontend

Lines Matching refs:ResultStr

320                                ObjCMethodDecl *MDecl, std::string &ResultStr);
321 void RewriteTypeIntoString(QualType T, std::string &ResultStr,
323 void RewriteByRefString(std::string &ResultStr, const std::string &Name,
1229 ResultStr,
1232 ResultStr += "id";
1244 ResultStr += FPRetType->getResultType().getAsString(
1246 ResultStr += "(*";
1249 ResultStr += T.getAsString(Context->getPrintingPolicy());
1254 std::string &ResultStr) {
1257 ResultStr += "\nstatic ";
1258 RewriteTypeIntoString(OMD->getResultType(), ResultStr, FPRetType);
1259 ResultStr += " ";
1288 ResultStr += NameStr;
1291 ResultStr += "(";
1299 ResultStr += "struct ";
1302 ResultStr += IDecl->getNameAsString();
1303 ResultStr += " *";
1306 ResultStr += Context->getObjCClassType().getAsString(
1309 ResultStr += " self, ";
1310 ResultStr += Context->getObjCSelType().getAsString(Context->getPrintingPolicy());
1311 ResultStr += " _cmd";
1317 ResultStr += ", ";
1319 ResultStr += "id ";
1320 ResultStr += PDecl->getNameAsString();
1327 ResultStr += Name;
1331 ResultStr += ", ...";
1332 ResultStr += ") ";
1335 ResultStr += ")"; // close the precedence "scope" for "*".
1339 ResultStr += "(";
1341 if (i) ResultStr += ", ";
1344 ResultStr += ParamStr;
1347 if (FT->getNumArgs()) ResultStr += ", ";
1348 ResultStr += "...";
1350 ResultStr += ")";
1352 ResultStr += "()";
1376 std::string ResultStr;
1378 RewriteObjCMethodDecl(OMD->getClassInterface(), OMD, ResultStr);
1384 ReplaceText(LocStart, endBuf-startBuf, ResultStr);
1391 std::string ResultStr;
1393 RewriteObjCMethodDecl(OMD->getClassInterface(), OMD, ResultStr);
1399 ReplaceText(LocStart, endBuf-startBuf, ResultStr);
1421 std::string ResultStr;
1424 RewriteOneForwardClassDecl(ClassDecl, ResultStr);
1425 RewriteIvarOffsetSymbols(ClassDecl, ResultStr);
1427 RewriteObjCInternalStruct(ClassDecl, ResultStr);
4201 void RewriteModernObjC::RewriteByRefString(std::string &ResultStr,
4207 ResultStr += "struct ";
4208 ResultStr += "__Block_byref_" + Name +
6087 std::string ResultStr;
6088 RewriteMetaDataIntoBuffer(ResultStr);
6090 *OutFile << ResultStr;
6094 std::string ResultStr;
6095 WriteImageInfo(ResultStr);
6096 *OutFile << ResultStr;