OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OutStr
(Results
1 - 9
of
9
) 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/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/clang/lib/Basic/
Diagnostic.cpp
599
SmallVectorImpl<char> &
OutStr
) {
615
DInfo.FormatDiagnostic(Argument, EndPtr,
OutStr
);
622
SmallVectorImpl<char> &
OutStr
) {
624
OutStr
.push_back('s');
632
SmallVectorImpl<char> &
OutStr
) {
635
llvm::raw_svector_ostream Out(
OutStr
);
740
SmallVectorImpl<char> &
OutStr
) {
755
DInfo.FormatDiagnostic(Argument, ExprEnd,
OutStr
);
778
FormatDiagnostic(SmallVectorImpl<char> &
OutStr
) const {
780
OutStr
.append(StoredDiagMessage.begin(), StoredDiagMessage.end())
[
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/tools/llvm-elfabi/
llvm-elfabi.cpp
69
raw_string_ostream
OutStr
(TBEStr);
70
Error YAMLErr = writeTBEToOutputStream(
OutStr
, Stub);
73
OutStr
.flush();
/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/include/clang/Basic/
Diagnostic.h
1643
/// The result is appended onto the \p
OutStr
array.
1644
void FormatDiagnostic(SmallVectorImpl<char> &
OutStr
) const;
1649
SmallVectorImpl<char> &
OutStr
) const;
/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 25 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026