HomeSort by relevance Sort by last modified time
    Searched refs:Indent (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/llvm/lib/TableGen/
StringMatcher.cpp 47 std::string Indent(IndentCount*2+4, ' ');
54 // If the to-execute code has \n's in it, indent each subsequent line.
58 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n";
63 OS << Indent << Split.first << "\n";
86 OS << Indent << "if (" << StrVariableName << "[" << CharNo << "] != '"
88 OS << Indent << " break;\n";
92 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo
95 OS << Indent << " break;\n";
103 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n";
104 OS << Indent << "default: break;\n"
    [all...]
  /external/llvm/lib/DebugInfo/PDB/
IPDBSourceFile.cpp 20 void IPDBSourceFile::dump(raw_ostream &OS, int Indent) const {
21 OS.indent(Indent);
  /external/llvm/include/llvm/DebugInfo/PDB/
IPDBSourceFile.h 27 void dump(raw_ostream &OS, int Indent) const;
PDBSymbolExe.h 42 int Indent) const;
  /external/clang/lib/Format/
ContinuationIndenter.h 148 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace,
150 : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace),
151 NestedBlockIndent(Indent), FirstLessLess(0),
163 unsigned Indent;
175 /// \brief If a block relative to this parenthesis level gets wrapped, indent
269 if (Indent != Other.Indent)
270 return Indent < Other.Indent;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 88 unsigned indent) {
90 Indent(o, indent) << "<dict>\n";
91 ++indent;
93 Indent(o, indent) << "<key>kind</key><string>control</string>\n";
96 Indent(o, indent) << "<key>edges</key>\n";
97 ++indent;
98 Indent(o, indent) << "<array>\n"
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.cc 72 printer->Indent();
124 printer->Indent();
137 printer->Indent();
138 printer->Indent();
163 printer->Indent();
164 printer->Indent();
202 printer->Indent();
203 printer->Indent();
250 printer->Indent();
251 printer->Indent();
    [all...]
java_message.cc 249 printer->Indent();
322 printer->Indent();
421 printer->Indent();
486 printer->Indent();
553 printer->Indent();
619 printer->Indent();
805 printer->Indent();
    [all...]
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 55 struct indent { struct
57 indent(unsigned d) : distance(d) {} function in struct:indent
60 static raw_ostream &operator <<(raw_ostream &os, const indent &in) {
81 , unsigned Indent = 0
86 outs() << indent(Indent);
96 ++Indent;
99 dumpNode(i, Indent);
102 --Indent;
103 outs() << indent(Indent) << "]"
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLoc.cpp 21 const unsigned Indent = 12;
24 OS.indent(Indent);
27 OS.indent(Indent) << " Ending address offset: "
29 OS.indent(Indent) << " Location description: ";
114 const unsigned Indent = 12;
117 OS.indent(Indent);
    [all...]
  /external/clang/lib/Basic/
Module.cpp 306 void Module::print(raw_ostream &OS, unsigned Indent) const {
307 OS.indent(Indent);
315 OS.indent(Indent + 2);
325 OS.indent(Indent + 2);
338 OS.indent(Indent + 2);
343 OS.indent(Indent + 2)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_message.cc 155 printer->Indent();
248 printer->Indent();
249 printer->Indent();
250 printer->Indent();
251 printer->Indent();
277 printer->Indent();
323 printer->Indent();
344 printer->Indent();
368 printer->Indent();
372 printer->Indent();
    [all...]
  /external/llvm/tools/llvm-pdbdump/
TypeDumper.cpp 35 Printer.Indent();
44 Printer.Indent();
53 Printer.Indent();
LinePrinter.h 26 LinePrinter(int Indent, raw_ostream &Stream);
28 void Indent();
LinePrinter.cpp 20 LinePrinter::LinePrinter(int Indent, llvm::raw_ostream &Stream)
21 : OS(Stream), IndentSpaces(Indent), CurrentIndent(0) {
29 void LinePrinter::Indent() { CurrentIndent += IndentSpaces; }
37 OS.indent(CurrentIndent);
EnumDumper.cpp 36 Printer.Indent();
  /external/clang/lib/AST/
StmtPrinter.cpp 53 // If this is an expr used in a stmt context, indent and newline it.
54 Indent();
60 Indent() << "<<<NULL STATEMENT>>>\n";
82 raw_ostream &Indent(int Delta = 0) {
95 Indent() << "<<unknown stmt type>>\n";
120 Indent() << "}";
133 Indent() << ";\n";
137 Indent();
143 Indent();
149 Indent(-1) << "case "
    [all...]
  /external/llvm/include/llvm/TableGen/
StringMatcher.h 45 void Emit(unsigned Indent = 0) const;
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 71 unsigned Indent;
75 void indent();
79 : out(errs()), Differences(false), Indent(0) {}
  /external/clang/tools/diagtool/
TreeView.cpp 58 void printGroup(const GroupRecord &Group, unsigned Indent = 0) {
59 out.indent(Indent * 2);
65 ++Indent;
69 printGroup(*I, Indent);
78 out.indent(Indent * 2);
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.cc 192 printer->Indent();
249 printer->Indent();
273 printer->Indent();
306 printer->Indent();
310 printer->Indent();
315 printer->Indent();
335 printer->Indent();
384 printer->Indent();
407 printer->Indent();
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 445 printer->Indent();
452 printer->Indent();
542 printer->Indent();
596 printer->Indent();
757 printer->Indent();
877 printer->Indent();
    [all...]
  /external/lldb/source/Breakpoint/
WatchpointOptions.cpp 188 s->Indent();
191 s->Indent();
222 s->Indent("watchpoint commands:\n");
230 s->Indent(data->user_source.GetStringAtIndex(i));
  /external/protobuf/src/google/protobuf/io/
printer.h 92 // Indent text by two spaces. After calling Indent(), two spaces will be
93 // inserted at the beginning of each line of text. Indent() may be called
95 void Indent();
97 // Reduces the current indent level by two spaces, or crashes if the indent
  /external/lldb/source/Symbol/
SymbolContext.cpp 190 s->Indent();
238 s->Indent(" Module: file = \"");
248 s->Indent("CompileUnit: ");
255 s->Indent(" Function: ");
262 s->Indent(" FuncType: ");
285 s->Indent(" Blocks: ");
287 s->Indent(" ");
295 s->Indent(" LineEntry: ");
302 s->Indent(" Symbol: ");
326 s->Indent();
    [all...]

Completed in 6590 milliseconds

1 2 3 4 5 6