HomeSort by relevance Sort by last modified time
    Searched defs:Indent (Results 1 - 19 of 19) 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 118 const std::string Indent(IndentCount, ' ');
122 O << Indent
128 O << Indent
140 O << Indent;
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 74 unsigned Indent;
78 void indent();
82 : 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 105 static raw_ostream &Indent(raw_ostream &o, const unsigned indent) {
106 for (unsigned i = 0; i < indent; ++i) o << ' ';
113 unsigned indent, bool extend = false) {
121 Indent(o, indent) << "<dict>\n";
122 Indent(o, indent) << " <key>line</key><integer>"
124 Indent(o, indent) << " <key>col</key><integer>
    [all...]
  /external/clang/lib/AST/
StmtDumper.cpp 72 Indent();
80 void Indent() const {
98 Indent();
312 Indent();
515 OS << '\n'; Indent(); OS << "(capture this)";
520 Indent();
602 Indent();
DeclPrinter.cpp 34 raw_ostream& Indent() { return Indent(Indentation); }
35 raw_ostream& Indent(unsigned Indentation);
48 void VisitDeclContext(DeclContext *DC, bool Indent = true);
173 Printer.VisitDeclContext(const_cast<DeclContext *>(this), /*Indent=*/false);
180 raw_ostream& DeclPrinter::Indent(unsigned Indentation) {
197 this->Indent();
217 void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
218 if (Indent)
276 this->Indent();
    [all...]
DumpXML.cpp 174 unsigned Indent;
176 : out(OS), Context(context), Indent(0) {}
178 void indent() { function in struct:__anon4609::XMLDumper
179 for (unsigned I = Indent; I; --I)
191 Indent++;
192 indent();
216 indent();
219 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 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/v8/tools/
grokdump.py 595 self.indent = 0
597 def Indent(self):
598 self.indent += 2
601 self.indent -= 2
607 indent = self._IndentString()
608 print "\n".join("%s%s" % (indent, line) for line in lines)
611 return self.indent * " "
779 p.Indent()
809 p.Indent()
910 p.Indent()
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.h 172 Indent,
  /external/llvm/lib/Support/
YAMLParser.cpp 405 /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
475 int Indent;
701 , Indent(-1)
955 while (Indent > ToColumn) {
959 Indent = Indents.pop_back_val();
970 if (Indent < ToColumn) {
971 Indents.push_back(Indent);
972 Indent = ToColumn;
1258 unsigned indent = static_cast<unsigned>(Indent + 1); local
    [all...]
  /external/regex-re2/lib/codereview/
codereview.py 244 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):
721 typecheck(indent, str)
724 t += indent + line + '\n'
1040 msg = "gofmt needs to format these files (run hg gofmt):\n" + Indent(data, "\t").rstrip(
    [all...]
  /external/jdiff/
xerces.jar 

Completed in 761 milliseconds