Lines Matching refs:OS
234 bool ShowColors, raw_ostream &OS);
251 llvm::raw_svector_ostream OS(Output);
265 TDT.ShowColors, OS)) {
288 OS << ConvertTypeToDiagnosticString(Context, Ty, PrevArgs, NumPrevArgs,
295 OS << '+';
298 OS << '-';
304 N.printName(OS);
317 ND->getNameForDiagnostic(OS, Context.getPrintingPolicy(), Qualified);
322 NNS->print(OS, Context.getPrintingPolicy());
333 OS << "the global namespace";
335 OS << "the global scope";
337 OS << ConvertTypeToDiagnosticString(Context,
345 OS << "namespace ";
347 OS << "method ";
349 OS << "function ";
351 OS << '\'';
352 ND->getNameForDiagnostic(OS, Context.getPrintingPolicy(), true);
353 OS << '\'';
360 OS.flush();
398 /// OS - The stream used to construct the output strings.
399 raw_ostream &OS;
1190 OS << '\n';
1191 OS.indent(2 * Indent);
1247 OS << FromTD->getNameAsString() << "<>";
1255 OS << FromTD->getNameAsString() << '<';
1267 OS << ", ";
1272 OS << ", ";
1278 OS << ">";
1293 OS << ToggleHighlight;
1301 OS << ToggleHighlight;
1315 OS << FromType.getAsString();
1326 FromType.getLocalUnqualifiedType().print(OS, Policy);
1345 if (PrintTree) OS << '[';
1346 OS << (FromDefault ? "(default) " : "");
1348 OS << FromTypeStr;
1351 OS << " != " << (ToDefault ? "(default) " : "");
1353 OS << ToTypeStr;
1355 OS << "]";
1369 OS << (FromDefault ? "(default) " : "");
1374 OS << (FromDefault ? "[(default) " : "[");
1378 OS << " != " << (ToDefault ? "(default) " : "");
1382 OS << ']';
1389 OS << "(no argument)";
1391 E->printPretty(OS, 0, Policy); return;
1408 OS << "template " << FromTD->getNameAsString();
1410 OS << (FromDefault ? "(default) template " : "template ");
1412 OS << FromName;
1415 OS << (FromDefault ? "[(default) template " : "[template ");
1417 OS << FromName;
1419 OS << " != " << (ToDefault ? "(default) template " : "template ");
1421 OS << ToName;
1423 OS << ']';
1436 OS << FromInt.toString(10);
1438 OS << (FromDefault ? "(default) " : "");
1441 OS << (FromDefault ? "[(default) " : "[");
1443 OS << " != " << (ToDefault ? "(default) " : "");
1445 OS << ']';
1457 OS << " aka ";
1460 OS << Val.toString(10);
1462 OS << "(no argument)";
1489 OS << FromValueDecl->getName();
1491 OS << (FromDefault ? "(default) " : "");
1493 OS << (FromValueDecl ? FromValueDecl->getName() : "(no argument)");
1496 OS << (FromDefault ? "[(default) " : "[");
1498 OS << (FromValueDecl ? FromValueDecl->getName() : "(no argument)");
1500 OS << " != " << (ToDefault ? "(default) " : "");
1502 OS << (ToValueDecl ? ToValueDecl->getName() : "(no argument)");
1504 OS << ']';
1512 OS << '\n';
1514 OS << " ";
1518 OS << "[...]";
1520 OS << "[" << NumElideArgs << " * ...]";
1550 OS << "[";
1553 OS << "(no qualifiers) ";
1559 OS << "!= ";
1562 OS << "(no qualifiers)";
1570 OS << "] ";
1581 Q.print(OS, Policy, AppendSpaceIfNonEmpty);
1587 TemplateDiff(raw_ostream &OS, ASTContext &Context, QualType FromType,
1598 OS(OS),
1655 bool ShowColors, raw_ostream &OS) {
1658 TemplateDiff TD(OS, Context, FromType, ToType, PrintTree, PrintFromType,