Home | History | Annotate | Download | only in Frontend

Lines Matching refs:ResultStr

335                                ObjCMethodDecl *MDecl, std::string &ResultStr);
336 void RewriteTypeIntoString(QualType T, std::string &ResultStr,
338 void RewriteByRefString(std::string &ResultStr, const std::string &Name,
1243 void RewriteModernObjC::RewriteTypeIntoString(QualType T, std::string &ResultStr,
1246 ResultStr += "id";
1258 ResultStr +=
1260 ResultStr += "(*";
1263 ResultStr += T.getAsString(Context->getPrintingPolicy());
1268 std::string &ResultStr) {
1271 ResultStr += "\nstatic ";
1272 RewriteTypeIntoString(OMD->getReturnType(), ResultStr, FPRetType);
1273 ResultStr += " ";
1302 ResultStr += NameStr;
1305 ResultStr += "(";
1313 ResultStr += "struct ";
1316 ResultStr += IDecl->getNameAsString();
1317 ResultStr += " *";
1320 ResultStr += Context->getObjCClassType().getAsString(
1323 ResultStr += " self, ";
1324 ResultStr += Context->getObjCSelType().getAsString(Context->getPrintingPolicy());
1325 ResultStr += " _cmd";
1329 ResultStr += ", ";
1331 ResultStr += "id ";
1332 ResultStr += PDecl->getNameAsString();
1339 ResultStr += Name;
1343 ResultStr += ", ...";
1344 ResultStr += ") ";
1347 ResultStr += ")"; // close the precedence "scope" for "*".
1351 ResultStr += "(";
1353 if (i) ResultStr += ", ";
1356 ResultStr += ParamStr;
1360 ResultStr += ", ";
1361 ResultStr += "...";
1363 ResultStr += ")";
1365 ResultStr += "()";
1386 std::string ResultStr;
1387 RewriteObjCMethodDecl(OMD->getClassInterface(), OMD, ResultStr);
1393 ReplaceText(LocStart, endBuf-startBuf, ResultStr);
1397 std::string ResultStr;
1398 RewriteObjCMethodDecl(OMD->getClassInterface(), OMD, ResultStr);
1404 ReplaceText(LocStart, endBuf-startBuf, ResultStr);
1422 std::string ResultStr;
1425 RewriteOneForwardClassDecl(ClassDecl, ResultStr);
1426 RewriteIvarOffsetSymbols(ClassDecl, ResultStr);
1428 RewriteObjCInternalStruct(ClassDecl, ResultStr);
4133 void RewriteModernObjC::RewriteByRefString(std::string &ResultStr,
4139 ResultStr += "struct ";
4140 ResultStr += "__Block_byref_" + Name +
6012 std::string ResultStr;
6013 RewriteMetaDataIntoBuffer(ResultStr);
6015 *OutFile << ResultStr;
6019 std::string ResultStr;
6020 WriteImageInfo(ResultStr);
6021 *OutFile << ResultStr;