Searched defs:Indent (Results 1 - 22 of 22) sorted by relevance

/external/llvm/lib/TableGen/
H A DStringMatcher.cpp47 std::string Indent(IndentCount*2+4, ' ');
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"; local
92 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo
95 OS << Indent << " break;\n"; local
103 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n";
104 OS << Indent << "default: break;\n"; local
109 OS << Indent << "cas
114 OS << Indent << " break;\\n"; local
117 OS << Indent << "}\\n"; local
[all...]
/external/llvm/tools/llvm-diff/
H A DDiffConsumer.h72 unsigned Indent; member in class:llvm::DiffConsumer
80 : out(errs()), Differences(false), Indent(0) {}
/external/webkit/Source/WebCore/editing/
H A DIndentOutdentCommand.h36 enum EIndentType { Indent, Outdent }; enumerator in enum:WebCore::IndentOutdentCommand::EIndentType
47 virtual EditAction editingAction() const { return m_typeOfAction == Indent ? EditActionIndent : EditActionOutdent; }
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp118 const std::string Indent(IndentCount, ' ');
122 O << Indent
128 O << Indent
140 O << Indent; local
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp31 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
78 unsigned Indent, raw_ostream &O) {
79 std::string IndentStr = std::string(Indent, ' ');
100 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O);
77 EmitAction(Record *Action, unsigned Indent, raw_ostream &O) argument
H A DDAGISelMatcherEmitter.cpp54 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, argument
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*
581 EmitMatcherList(const Matcher *N, unsigned Indent, unsigned CurrentIdx, formatted_raw_ostream &OS) argument
[all...]
/external/clang/lib/ARCMigrate/
H A DPlistReporter.cpp40 static raw_ostream& Indent(raw_ostream& o, const unsigned indent) { function
56 Indent(o, indent) << "<dict>\n";
57 Indent(o, indent) << " <key>line</key><integer>"
59 Indent(o, indent) << " <key>col</key><integer>"
61 Indent(o, indent) << " <key>file</key><integer>"
63 Indent(o, indent) << "</dict>\n";
70 Indent(o, indent) << "<array>\n";
73 Indent(o, indent) << "</array>\n";
/external/llvm/test/Scripts/
H A Dcoff-dump.py239 Indent = 0 variable
243 global Indent
244 Indent += 1
247 global Indent
248 Indent -= 1
257 output += Indent * ' '
/external/protobuf/src/google/protobuf/io/
H A Dprinter.cc135 void Printer::Indent() { function in class:google::protobuf::io::Printer
141 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
/external/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp92 static raw_ostream &Indent(raw_ostream &o, const unsigned indent) { function
108 Indent(o, indent) << "<dict>\n";
109 Indent(o, indent) << " <key>line</key><integer>"
111 Indent(o, indent) << " <key>col</key><integer>"
113 Indent(o, indent) << " <key>file</key><integer>"
115 Indent(o, indent) << "</dict>\n";
129 Indent(o, indent) << "<array>\n";
132 Indent(o, indent) << "</array>\n";
159 Indent(o, indent) << "<dict>\n";
162 Indent(
[all...]
/external/clang/lib/AST/
H A DDeclPrinter.cpp33 raw_ostream& Indent() { return Indent(Indentation); } function in class:__anon3484::DeclPrinter
34 raw_ostream& Indent(unsigned Indentation);
45 void VisitDeclContext(DeclContext *DC, bool Indent = true);
172 Printer.VisitDeclContext(const_cast<DeclContext *>(this), /*Indent=*/false);
185 raw_ostream& DeclPrinter::Indent(unsigned Indentation) { function in class:DeclPrinter
202 this->Indent();
222 void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) { argument
226 if (Indent)
284 this->Indent();
[all...]
H A DStmtDumper.cpp73 Indent();
81 void Indent() const { function in class:__anon3522::StmtDumper
99 Indent();
314 Indent();
508 OS << '\n'; Indent(); OS << "(capture this)";
513 Indent();
595 Indent();
H A DDumpXML.cpp174 unsigned Indent; member in struct:__anon3485::XMLDumper
176 : out(OS), Context(context), Indent(0) {}
179 for (unsigned I = Indent; I; --I)
191 Indent++;
219 if (Stack.size() > 1) Indent--;
H A DASTDiagnostic.cpp989 void TreeToString(int Indent = 1) {
992 for (int i = 0; i < Indent; ++i)
994 ++Indent;
1040 PrintElideArgs(NumElideArgs, Indent);
1045 TreeToString(Indent);
1050 PrintElideArgs(NumElideArgs, Indent);
1181 void PrintElideArgs(unsigned NumElideArgs, unsigned Indent) { argument
1184 for (unsigned i = 0; i < Indent; ++i)
H A DStmtPrinter.cpp51 Indent();
57 Indent() << "<<<NULL STATEMENT>>>\n";
78 raw_ostream &Indent(int Delta = 0) { function in class:__anon3523::StmtPrinter
91 Indent() << "<<unknown stmt type>>\n";
117 Indent() << "}";
134 Indent() << ";\n";
138 Indent();
144 Indent();
150 Indent(-1) << "case ";
162 Indent(
[all...]
/external/protobuf/src/google/protobuf/
H A Dtext_format.cc669 // Indent text by two spaces. After calling Indent(), two spaces will be
670 // inserted at the beginning of each line of text. Indent() may be called
672 void Indent() { function in class:google::protobuf::TextFormat::Printer::TextGenerator
681 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
952 generator.Indent();
1197 generator.Indent();
1226 generator.Indent();
/external/v8/src/
H A Dscopes.cc733 static void Indent(int n, const char* str) { function in namespace:v8::internal
766 Indent(indent, Variable::Mode2String(var->mode()));
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");
829 Indent(n1, "// extended mode scope\n");
832 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
833 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
834 if (scope_calls_eval_) Indent(n
[all...]
/external/v8/tools/
H A Dgrokdump.py597 def Indent(self): member in class:Printer
779 p.Indent()
809 p.Indent()
910 p.Indent()
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.h172 Indent, enumerator in enum:QWebPage::WebAction
/external/llvm/lib/Support/
H A DYAMLParser.cpp475 int Indent; member in class:llvm::yaml::Scanner
698 , Indent(-1)
955 while (Indent > ToColumn) {
959 Indent = Indents.pop_back_val();
970 if (Indent < ToColumn) {
971 Indents.push_back(Indent);
972 Indent = ToColumn;
1259 assert(Indent >= -1 && "Indent must be >= -1 !");
1260 unsigned indent = static_cast<unsigned>(Indent
[all...]
/external/regex-re2/lib/codereview/
H A Dcodereview.py244 s += Indent(cl.desc, "\t")
268 s += Indent(cl.desc, "\t")
281 s += Indent(cl.desc, "\t")
718 # Indent text with indent.
719 def Indent(text, indent): function
1040 msg = "gofmt needs to format these files (run hg gofmt):\n" + Indent(data, "\t").rstrip()
1756 print Indent(opts['message'], "\t")
1758 print Indent('\n'.join(cl.files), "\t")
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 545 milliseconds