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

1 2 3

  /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/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";
81 raw_ostream &Indent(int Delta = 0) {
94 Indent() << "<<unknown stmt type>>\n";
120 Indent() << "}";
137 Indent() << ";\n";
141 Indent();
147 Indent();
153 Indent(-1) << "case "
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.cc 58 printer->Indent();
103 printer->Indent();
116 printer->Indent();
117 printer->Indent();
142 printer->Indent();
143 printer->Indent();
180 printer->Indent();
181 printer->Indent();
225 printer->Indent();
226 printer->Indent();
    [all...]
java_file.cc 151 printer->Indent();
160 printer->Indent();
210 printer->Indent();
270 printer->Indent();
271 printer->Indent();
304 printer->Indent();
305 printer->Indent();
306 printer->Indent();
java_message.cc 292 printer->Indent();
355 printer->Indent();
410 printer->Indent();
470 printer->Indent();
633 printer->Indent();
735 printer->Indent();
775 printer->Indent();
812 printer->Indent();
823 printer->Indent();
828 printer->Indent();
    [all...]
java_enum.cc 81 printer->Indent();
116 printer->Indent();
117 printer->Indent();
  /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) {
67 , unsigned Indent = 0
72 outs() << indent(Indent);
82 ++Indent;
85 dumpNode(i, Indent);
88 --Indent;
89 outs() << indent(Indent) << "]"
    [all...]
  /external/clang/lib/ARCMigrate/
PlistReporter.cpp 40 static raw_ostream& Indent(raw_ostream& o, const unsigned indent) {
41 for (unsigned i = 0; i < indent; ++i) o << ' ';
48 unsigned indent, bool extend = false) {
56 Indent(o, indent) << "<dict>\n";
57 Indent(o, indent) << " <key>line</key><integer>"
59 Indent(o, indent) << " <key>col</key><integer>
    [all...]
  /external/webkit/Source/WebCore/editing/
IndentOutdentCommand.h 36 enum EIndentType { Indent, Outdent };
47 virtual EditAction editingAction() const { return m_typeOfAction == Indent ? EditActionIndent : EditActionOutdent; }
  /external/clang/lib/Basic/
Module.cpp 245 void Module::print(raw_ostream &OS, unsigned Indent) const {
246 OS.indent(Indent);
254 OS.indent(Indent + 2);
261 OS.indent(Indent + 2);
272 OS.indent(Indent + 2);
277 OS.indent(Indent + 2)
    [all...]
  /external/llvm/include/llvm/TableGen/
StringMatcher.h 44 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/protobuf/src/google/protobuf/compiler/javanano/
javanano_message.cc 152 printer->Indent();
206 printer->Indent();
230 printer->Indent();
255 printer->Indent();
259 printer->Indent();
264 printer->Indent();
284 printer->Indent();
337 printer->Indent();
  /external/clang/tools/diagtool/
TreeView.cpp 61 bool FlagsOnly, unsigned Indent = 0) {
62 out.indent(Indent * 2);
69 ++Indent;
73 printGroup(out, *I, FlagsOnly, Indent);
85 out.indent(Indent * 2);
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.cc 198 printer->Indent();
255 printer->Indent();
279 printer->Indent();
312 printer->Indent();
316 printer->Indent();
321 printer->Indent();
341 printer->Indent();
394 printer->Indent();
417 printer->Indent();
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 277 printer->Indent();
316 printer->Indent();
450 printer->Indent();
772 printer->Indent();
791 printer->Indent();
813 printer->Indent();
952 printer->Indent();
980 printer->Indent();
993 printer->Indent();
    [all...]
  /external/protobuf/src/google/protobuf/io/
printer.h 88 // Indent text by two spaces. After calling Indent(), two spaces will be
89 // inserted at the beginning of each line of text. Indent() may be called
91 void Indent();
93 // Reduces the current indent level by two spaces, or crashes if the indent
printer_unittest.cc 184 printer.Indent();
188 printer.Indent();
191 printer.PrintRaw("RawBit has indent at start\n");
195 printer.Indent();
212 " RawBit has indent at start\n"
232 EXPECT_DEBUG_DEATH(printer.Outdent(), "without matching Indent");
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 102 static raw_ostream &Indent(raw_ostream &o, const unsigned indent) {
103 for (unsigned i = 0; i < indent; ++i) o << ' ';
110 unsigned indent, bool extend = false) {
118 Indent(o, indent) << "<dict>\n";
119 Indent(o, indent) << " <key>line</key><integer>"
121 Indent(o, indent) << " <key>col</key><integer>
    [all...]
  /external/clang/lib/Format/
Format.cpp 196 void indentBlockComment(const FormatToken &Tok, int Indent) {
198 int IndentDelta = Indent - SourceMgr.getSpellingColumnNumber(TokenLoc) + 1;
318 // Initialize state dependent on indent.
368 ParenState(unsigned Indent, unsigned LastSpace, bool AvoidBinPacking,
370 : Indent(Indent), LastSpace(LastSpace), FirstLessLess(0),
378 unsigned Indent;
421 if (Indent != Other.Indent)
422 return Indent < Other.Indent
    [all...]
  /external/v8/src/
scopes.cc 733 static void Indent(int n, const char* str) {
764 static void PrintVar(int indent, Variable* var) {
766 Indent(indent, Variable::Mode2String(var->mode()));
780 static void PrintMap(int indent, VariableMap* map) {
783 PrintVar(indent, var);
793 Indent(n0, Header(type_));
813 Indent(n1, "// (local) function name: ");
820 Indent(n1, "// scope has trivial outer context\n");
826 Indent(n1, "// strict mode scope\n")
    [all...]
  /external/llvm/lib/CodeGen/
LexicalScopes.cpp 317 void LexicalScope::dump(unsigned Indent) const {
320 err.indent(Indent);
323 err.indent(Indent);
326 err << std::string(Indent, ' ') << "Abstract Scope\n";
329 err << std::string(Indent + 2, ' ') << "Children ...\n";
332 Children[i]->dump(Indent + 2);
  /external/llvm/test/Scripts/
coff-dump.py 239 Indent = 0
242 def indent(): function
243 global Indent
244 Indent += 1
247 global Indent
248 Indent -= 1
257 output += Indent * ' '
431 indent()
456 indent()
486 indent()
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 54 unsigned EmitMatcherList(const Matcher *N, unsigned Indent,
61 unsigned EmitMatcher(const Matcher *N, unsigned Indent, unsigned CurrentIdx,
138 EmitMatcher(const Matcher *N, unsigned Indent, unsigned CurrentIdx,
140 OS.PadToColumn(Indent*2);
157 OS.PadToColumn(Indent*2) << "/*Scope*/ ";
159 OS.PadToColumn(Indent*2);
176 ChildSize = EmitMatcherList(SM->getChild(i), Indent+1,
198 OS.PadToColumn(Indent*2) << "0, ";
311 ChildSize = EmitMatcherList(Child, Indent+1, CurrentIdx+VBRSize+IdxSize,
318 OS.PadToColumn(Indent*2)
    [all...]
CallingConvEmitter.cpp 32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
79 unsigned Indent, raw_ostream &O) {
80 std::string IndentStr = std::string(Indent, ' ');
101 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O);

Completed in 296 milliseconds

1 2 3