OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OutStr
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/AST/
StmtViz.cpp
46
std::string
OutStr
= Out.str();
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/clang/lib/Frontend/
TextDiagnosticPrinter.cpp
119
SmallString<100>
OutStr
;
120
Info.FormatDiagnostic(
OutStr
);
122
llvm::raw_svector_ostream DiagMessageStream(
OutStr
);
/external/llvm/include/llvm/Analysis/
CFGPrinter.h
58
std::string
OutStr
= OS.str();
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
[i] == ';') { // Delete comments
[
all
...]
/external/llvm/utils/TableGen/
CodeGenMapTable.cpp
377
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";
/external/llvm/lib/CodeGen/
MachineFunction.cpp
388
std::string
OutStr
;
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
.begin()+i+1, 'l')
[
all
...]
/external/clang/lib/Analysis/
CFG.cpp
[
all
...]
Completed in 310 milliseconds