OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OutStr
(Results
1 - 6
of
6
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/AST/
StmtViz.cpp
45
std::string
OutStr
= Out.str();
46
if (
OutStr
[0] == '\n')
OutStr
.erase(
OutStr
.begin());
49
for (unsigned i = 0; i !=
OutStr
.length(); ++i)
50
if (
OutStr
[i] == '\n') { // Left justify
51
OutStr
[i] = '\\';
52
OutStr
.insert(
OutStr
.begin()+i+1, 'l');
55
return
OutStr
;
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnosticPrinter.cpp
116
SmallString<100>
OutStr
;
117
Info.FormatDiagnostic(
OutStr
);
119
llvm::raw_svector_ostream DiagMessageStream(
OutStr
);
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CFGPrinter.h
145
static void eraseComment(std::string &
OutStr
, unsigned &I, unsigned Idx) {
146
OutStr
.erase(
OutStr
.begin() + I,
OutStr
.begin() + Idx);
167
std::string
OutStr
= OS.str();
168
if (
OutStr
[0] == '\n')
169
OutStr
.erase(
OutStr
.begin());
174
for (unsigned i = 0; i !=
OutStr
.length(); ++i) {
175
if (
OutStr
[i] == '\n') { // Left justif
[
all
...]
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenMapTable.cpp
377
std::string
OutStr
;
383
OutStr
+= ", ";
384
OutStr
+= Namespace;
385
OutStr
+= "::";
386
OutStr
+= ColInstrs[j]->getName();
387
} else {
OutStr
+= ", (uint16_t)-1U";}
392
OS <<
OutStr
<<" },\n";
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineFunction.cpp
586
std::string
OutStr
;
588
raw_string_ostream OSS(
OutStr
);
598
if (
OutStr
[0] == '\n')
OutStr
.erase(
OutStr
.begin());
601
for (unsigned i = 0; i !=
OutStr
.length(); ++i)
602
if (
OutStr
[i] == '\n') { // Left justify
603
OutStr
[i] = '\\';
604
OutStr
.insert(
OutStr
.begin()+i+1, 'l')
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp
6048
std::string&
OutStr
= Out.str();
6050
if (
OutStr
[0] == '\n')
OutStr
.erase(
OutStr
.begin());
6053
for (unsigned i = 0; i !=
OutStr
.length(); ++i)
6054
if (
OutStr
[i] == '\n') { // Left justify
6055
OutStr
[i] = '\\';
6056
OutStr
.insert(
OutStr
.begin()+i+1, 'l');
6059
return
OutStr
;
[
all
...]
Completed in 19 milliseconds
Indexes created Sun Sep 20 00:26:38 UTC 2026