HomeSort by relevance Sort by last modified time
    Searched defs:Indent (Results 1 - 17 of 17) sorted by null

  /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...]
  /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/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/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 127 const std::string Indent(IndentCount, ' ');
131 O << Indent
137 O << Indent
149 O << Indent;
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 73 unsigned Indent;
77 void indent();
81 : out(errs()), LModule(L), RModule(R), Differences(false), Indent(0) {}
  /external/protobuf/src/google/protobuf/io/
printer.cc 66 // Saw newline. If there is more text, we may need to insert an indent
71 // Setting this true will cause the next WriteRaw() to insert an indent
135 void Printer::Indent() {
141 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
162 // Insert an indent.
  /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/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/clang/lib/AST/
StmtDumper.cpp 72 Indent();
80 void Indent() const {
98 Indent();
308 Indent();
509 OS << '\n'; Indent(); OS << "(capture this)";
514 Indent();
585 Indent();
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...]
DumpXML.cpp 178 unsigned Indent;
180 : out(OS), Context(context), Indent(0) {}
182 void indent() { function in struct:__anon4213::XMLDumper
183 for (unsigned I = Indent; I; --I)
195 Indent++;
196 indent();
220 indent();
223 if (Stack.size() > 1) Indent--;
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...]
  /external/protobuf/src/google/protobuf/
text_format.cc 669 // 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() {
676 // Reduces the current indent level by two spaces, or crashes if the indent
681 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
704 // Saw newline. If there is more text, we may need to insert an indent
709 // Setting this true will cause the next Write() to insert an indent
732 // Insert an 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/v8/tools/
grokdump.py 438 self.indent = 0
440 def Indent(self):
441 self.indent += 2
444 self.indent -= 2
450 indent = self._IndentString()
451 print "\n".join("%s%s" % (indent, line) for line in lines)
454 return self.indent * " "
611 p.Indent()
637 p.Indent()
709 p.Indent()
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.h 172 Indent,
  /external/jdiff/
xerces.jar 

Completed in 376 milliseconds