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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/editing/
IndentOutdentCommand.h 36 enum EIndentType { Indent, Outdent };
47 virtual EditAction editingAction() const OVERRIDE { return m_typeOfAction == Indent ? EditActionIndent : EditActionOutdent; }
  /external/llvm/lib/DebugInfo/
DWARFDebugLoc.cpp 21 const unsigned Indent = 12;
24 OS.indent(Indent);
27 OS.indent(Indent) << " Ending address offset: "
29 OS.indent(Indent) << " Location description: ";
115 const unsigned Indent = 12;
118 OS.indent(Indent);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
TextUtils.js 194 WebInspector.TextUtils.Indent = {
  /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/chromium_org/third_party/protobuf/src/google/protobuf/io/
printer.cc 65 // Saw newline. If there is more text, we may need to insert an indent
70 // Setting this true will cause the next WriteRaw() to insert an indent
145 void Printer::Indent() {
151 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
172 // Insert an indent.
  /external/clang/include/clang/Basic/
PlistSupport.h 40 inline raw_ostream &Indent(raw_ostream &o, const unsigned indent) {
41 for (unsigned i = 0; i < indent; ++i)
93 const FIDMap &FM, unsigned indent,
101 Indent(o, indent) << "<dict>\n";
102 Indent(o, indent) << " <key>line</key>";
104 Indent(o, indent) << " <key>col</key>"
    [all...]
  /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/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/chromium_org/mojo/nacl/generator/
generate_nacl_bindings.py 61 def Indent(self):
62 return Indent(self)
66 class Indent(object):
87 indent = ' '
90 lines.append(indent + item + ',')
92 lines.append(indent + item + post)
114 with code.Indent():
235 with code.Indent():
316 with code.Indent():
319 with code.Indent()
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 142 const std::string Indent(IndentCount, ' ');
146 O << Indent
152 O << Indent
164 O << Indent;
  /external/chromium_org/ppapi/generators/
idl_c_proto.py 670 def Indent(self, data, tabs=0):
704 indent = '%s ' % tab
705 args = (',\n%s' % indent).join([arg.strip() for arg in args])
706 lines.append('%s\n%s%s' % (line[:left], indent, args))
708 indent = ' ' * (left - 1)
709 args = (',\n%s' % indent).join(args)
743 indented_out = self.Indent(out, tabs)
  /external/clang/lib/Format/
ContinuationIndenter.h 145 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace,
147 : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace),
159 unsigned Indent;
261 if (Indent != Other.Indent)
262 return Indent < Other.Indent;
341 /// \brief The indent of the first token.
Format.cpp 572 tryFitMultipleLinesInOne(unsigned Indent,
580 if (Style.ColumnLimit > 0 && Indent > Style.ColumnLimit)
584 Style.ColumnLimit == 0 ? UINT_MAX : Style.ColumnLimit - Indent;
821 // Determine indent and try to merge multiple unwrapped lines.
822 unsigned Indent;
824 Indent = TheLine.Level * Style.IndentWidth;
829 Indent = getIndent(IndentForLevel, TheLine.Level);
831 unsigned LevelIndent = Indent;
832 if (static_cast<int>(Indent) + Offset >= 0)
833 Indent += Offset
    [all...]
  /external/lldb/source/Core/
Stream.cpp 254 // Indent the current line using the current indentation level and
258 Stream::Indent(const char *s)
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 423 void LocationContext::dumpStack(raw_ostream &OS, StringRef Indent) const {
432 OS << Indent << '#' << Frame++ << ' ';
437 OS << Indent << " (scope)\n";
440 OS << Indent << " (block context: "
  /external/llvm/lib/Support/
YAMLTraits.cpp 606 // if seq at top, indent as if map, then add "- "
618 unsigned Indent = StateStack.size() - 1;
625 --Indent;
629 for (unsigned i = 0; i < Indent; ++i) {
  /external/clang/lib/AST/
DeclPrinter.cpp 34 raw_ostream& Indent() { return Indent(Indentation); }
35 raw_ostream& Indent(unsigned Indentation);
46 void VisitDeclContext(DeclContext *DC, bool Indent = true);
178 Printer.VisitDeclContext(const_cast<DeclContext *>(this), /*Indent=*/false);
181 raw_ostream& DeclPrinter::Indent(unsigned Indentation) {
201 this->Indent();
221 void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
225 if (Indent)
274 this->Indent();
    [all...]
StmtPrinter.cpp 53 // If this is an expr used in a stmt context, indent and newline it.
54 Indent();
60 Indent() << "<<<NULL STATEMENT>>>\n";
82 raw_ostream &Indent(int Delta = 0) {
95 Indent() << "<<unknown stmt type>>\n";
120 Indent() << "}";
133 Indent() << ";\n";
137 Indent();
143 Indent();
149 Indent(-1) << "case "
    [all...]
  /external/deqp/framework/opengl/
gluVarType.hpp 286 struct Indent
289 Indent (int level_) : level(level_) {}
317 std::ostream& operator<< (std::ostream& str, const Indent& indent);
324 inline decl::Indent indent (int indentLevel) { return decl::Indent(indentLevel); } function in namespace:glu
  /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/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.cc 935 // Indent text by two spaces. After calling Indent(), two spaces will be
936 // inserted at the beginning of each line of text. Indent() may be called
938 void Indent() {
942 // Reduces the current indent level by two spaces, or crashes if the indent
947 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
970 // Saw newline. If there is more text, we may need to insert an indent
975 // Setting this true will cause the next Write() to insert an indent
    [all...]
  /external/chromium_org/v8/src/
scopes.cc 788 static void Indent(int n, const char* str) {
818 static void PrintVar(int indent, Variable* var) {
820 Indent(indent, Variable::Mode2String(var->mode()));
840 static void PrintMap(int indent, VariableMap* map) {
843 PrintVar(indent, var);
853 Indent(n0, Header(scope_type_));
873 Indent(n1, "// (local) function name: ");
880 Indent(n1, "// scope has trivial outer context\n");
883 Indent(n1, "// strict mode scope\n")
    [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp     [all...]
  /external/chromium_org/third_party/re2/lib/codereview/
codereview.py 228 s += Indent(cl.desc, "\t")
252 s += Indent(cl.desc, "\t")
265 s += Indent(cl.desc, "\t")
672 # Indent text with indent.
673 def Indent(text, indent):
675 typecheck(indent, str)
678 t += indent + line + '\n'
922 msg = "gofmt needs to format these files (run hg gofmt):\n" + Indent(data, "\t").rstrip(
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h 1796 TIXML_STRING indent; member in class:TiXmlPrinter
    [all...]

Completed in 935 milliseconds

1 2