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

1 2 3

  /external/llvm/utils/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 (" << StrVariableName << ".substr(" << CharNo << ", "
95 OS << Indent << " break;\n";
103 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n";
104 OS << Indent << "default: break;\n"
    [all...]
CallingConvEmitter.h 32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
StringMatcher.h 44 void Emit(unsigned Indent = 0) const;
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...]
  /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();
java_enum_field.cc 301 printer->Indent();
335 printer->Indent();
  /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/llvm/tools/llvm-diff/
DiffConsumer.h 73 unsigned Indent;
77 void indent();
81 : out(errs()), LModule(L), RModule(R), Differences(false), Indent(0) {}
DiffConsumer.cpp 129 void DiffConsumer::indent() { function in class:DiffConsumer
130 unsigned N = Indent;
140 Indent += 2;
146 Indent -= 2;
151 indent();
157 indent();
189 indent();
  /external/clang/lib/AST/
StmtPrinter.cpp 51 // If this is an expr used in a stmt context, indent and newline it.
52 Indent();
58 Indent() << "<<<NULL STATEMENT>>>\n";
79 raw_ostream &Indent(int Delta = 0) {
92 Indent() << "<<unknown stmt type>>\n";
118 Indent() << "}";
135 Indent() << ";\n";
139 Indent();
145 Indent();
151 Indent(-1) << "case "
    [all...]
DeclPrinter.cpp 33 raw_ostream& Indent() { return Indent(Indentation); }
34 raw_ostream& Indent(unsigned Indentation);
47 void VisitDeclContext(DeclContext *DC, bool Indent = true);
172 Printer.VisitDeclContext(const_cast<DeclContext *>(this), /*Indent=*/false);
179 raw_ostream& DeclPrinter::Indent(unsigned Indentation) {
186 this->Indent();
206 void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
207 if (Indent)
265 this->Indent();
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.cc 194 printer->Indent();
243 printer->Indent();
265 printer->Indent();
296 printer->Indent();
300 printer->Indent();
305 printer->Indent();
325 printer->Indent();
378 printer->Indent();
401 printer->Indent();
javamicro_enum_field.cc 234 printer->Indent();
288 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...]
cpp_string_field.cc 99 printer->Indent();
113 printer->Indent();
286 printer->Indent();
312 printer->Indent();
  /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 127 static raw_ostream &Indent(raw_ostream &o, const unsigned indent) {
128 for (unsigned i = 0; i < indent; ++i) o << ' ';
135 unsigned indent, bool extend = false) {
143 Indent(o, indent) << "<dict>\n";
144 Indent(o, indent) << " <key>line</key><integer>"
146 Indent(o, indent) << " <key>col</key><integer>
306 unsigned indent = 4; local
    [all...]
  /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/v8/src/
scopes.cc 556 static void Indent(int n, const char* str) {
567 static void PrintVar(PrettyPrinter* printer, int indent, Variable* var) {
569 Indent(indent, Variable::Mode2String(var->mode()));
583 static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map) {
586 PrintVar(printer, indent, var);
596 Indent(n0, Header(type_));
616 Indent(n1, "// (local) function name: ");
623 Indent(n1, "// scope has trivial outer context\n");
625 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n")
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 127 const std::string Indent(IndentCount, ' ');
131 O << Indent
137 O << Indent
149 O << Indent;

Completed in 1551 milliseconds

1 2 3