Searched refs:OutStr (Results 1 - 8 of 8) sorted by relevance

/external/clang/lib/AST/
H A DStmtViz.cpp46 std::string OutStr = Out.str(); local
47 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
50 for (unsigned i = 0; i != OutStr.length(); ++i)
51 if (OutStr[i] == '\n') { // Left justify
52 OutStr[i] = '\\';
53 OutStr.insert(OutStr.begin()+i+1, 'l');
56 return OutStr;
[all...]
/external/llvm/include/llvm/Analysis/
H A DCFGPrinter.h58 std::string OutStr = OS.str(); local
59 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
64 for (unsigned i = 0; i != OutStr.length(); ++i) {
65 if (OutStr[i] == '\n') { // Left justify
66 OutStr[i] = '\\';
67 OutStr.insert(OutStr.begin()+i+1, 'l');
70 } else if (OutStr[
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp435 SmallVectorImpl<char> &OutStr) {
451 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
458 SmallVectorImpl<char> &OutStr) {
460 OutStr.push_back('s');
468 SmallVectorImpl<char> &OutStr) {
471 llvm::raw_svector_ostream Out(OutStr);
577 SmallVectorImpl<char> &OutStr) {
592 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr);
615 FormatDiagnostic(SmallVectorImpl<char> &OutStr) const {
617 OutStr
433 HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo, const char *Argument, unsigned ArgumentLen, SmallVectorImpl<char> &OutStr) argument
457 HandleIntegerSModifier(unsigned ValNo, SmallVectorImpl<char> &OutStr) argument
467 HandleOrdinalModifier(unsigned ValNo, SmallVectorImpl<char> &OutStr) argument
575 HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo, const char *Argument, unsigned ArgumentLen, SmallVectorImpl<char> &OutStr) argument
[all...]
/external/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp119 SmallString<100> OutStr; local
120 Info.FormatDiagnostic(OutStr);
122 llvm::raw_svector_ostream DiagMessageStream(OutStr);
/external/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp377 std::string OutStr("");
383 OutStr += ", ";
384 OutStr += TargetName;
385 OutStr += "::";
386 OutStr += ColInstrs[j]->getName();
387 } else { OutStr += ", (uint16_t)-1U";}
392 OS << OutStr <<" },\n"; local
/external/llvm/lib/CodeGen/
H A DMachineFunction.cpp388 std::string OutStr; local
390 raw_string_ostream OSS(OutStr);
400 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
403 for (unsigned i = 0; i != OutStr.length(); ++i)
404 if (OutStr[i] == '\n') { // Left justify
405 OutStr[i] = '\\';
406 OutStr.insert(OutStr
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp4474 std::string& OutStr = Out.str(); local
4476 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
4479 for (unsigned i = 0; i != OutStr.length(); ++i)
4480 if (OutStr[i] == '\n') { // Left justify
4481 OutStr[i] = '\\';
4482 OutStr.insert(OutStr.begin()+i+1, 'l');
4485 return OutStr;
[all...]
/external/clang/include/clang/Basic/
H A DDiagnostic.h1229 /// The result is appended onto the \p OutStr array.
1230 void FormatDiagnostic(SmallVectorImpl<char> &OutStr) const;
1235 SmallVectorImpl<char> &OutStr) const;

Completed in 2139 milliseconds