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

12

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DIndentOutdentCommand.h36 enum EIndentType { Indent, Outdent }; enumerator in enum:blink::FINAL::EIndentType
47 virtual EditAction editingAction() const OVERRIDE { return m_typeOfAction == Indent ? EditActionIndent : EditActionOutdent; }
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DTextUtils.js194 WebInspector.TextUtils.Indent = {
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLoc.cpp21 const unsigned Indent = 12; local
24 OS.indent(Indent);
27 OS.indent(Indent) << " Ending address offset: "
29 OS.indent(Indent) << " Location description: ";
115 const unsigned Indent = 12; local
118 OS.indent(Indent);
120 OS.indent(Indent) << " Length: " << E.Length << '\n';
121 OS.indent(Indent) << " Location description: ";
/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.h71 unsigned Indent; member in class:llvm::DiffConsumer
79 : out(errs()), Differences(false), Indent(0) {}
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
79 unsigned Indent, raw_ostream &O) {
80 std::string IndentStr = std::string(Indent, ' ');
101 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O);
78 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, ";
317 ChildSize = EmitMatcherList(Child, Indent+1, CurrentIdx+VBRSize+IdxSize,
326 OS.PadToColumn(Indent*
598 EmitMatcherList(const Matcher *N, unsigned Indent, unsigned CurrentIdx, formatted_raw_ostream &OS) argument
[all...]
/external/chromium_org/mojo/nacl/generator/
H A Dgenerate_nacl_bindings.py61 def Indent(self): member in class:CodeWriter
62 return Indent(self)
66 class Indent(object): class in inherits:object
114 with code.Indent():
235 with code.Indent():
316 with code.Indent():
319 with code.Indent():
329 with code.Indent():
334 with code.Indent():
355 with code.Indent()
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dprinter.cc145 void Printer::Indent() { function in class:google::protobuf::io::Printer
151 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
/external/clang/include/clang/Basic/
H A DPlistSupport.h40 inline raw_ostream &Indent(raw_ostream &o, const unsigned indent) { function in namespace:clang::markup
101 Indent(o, indent) << "<dict>\n";
102 Indent(o, indent) << " <key>line</key>";
104 Indent(o, indent) << " <key>col</key>";
106 Indent(o, indent) << " <key>file</key>";
108 Indent(o, indent) << "</dict>\n";
114 Indent(o, indent) << "<array>\n";
117 Indent(o, indent) << "</array>\n";
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp142 const std::string Indent(IndentCount, ' ');
146 O << Indent
152 O << Indent
164 O << Indent; local
/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/chromium_org/ppapi/generators/
H A Didl_c_proto.py670 def Indent(self, data, tabs=0): member in class:CGen
743 indented_out = self.Indent(out, tabs)
/external/clang/lib/Format/
H A DContinuationIndenter.h145 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace, argument
147 : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace),
159 unsigned Indent; member in struct:clang::format::ParenState
261 if (Indent != Other.Indent)
262 return Indent < Other.Indent;
/external/clang/lib/AST/
H A DDeclPrinter.cpp34 raw_ostream& Indent() { return Indent(Indentation); } function in class:__anon17729::DeclPrinter
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) { function in class:DeclPrinter
201 this->Indent();
221 void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) { argument
225 if (Indent)
274 this->Indent();
[all...]
H A DASTDiagnostic.cpp1257 void TreeToString(int Indent = 1) {
1260 OS.indent(2 * Indent);
1261 ++Indent;
1335 PrintElideArgs(NumElideArgs, Indent);
1340 TreeToString(Indent);
1345 PrintElideArgs(NumElideArgs, Indent);
1588 void PrintElideArgs(unsigned NumElideArgs, unsigned Indent) { argument
1591 for (unsigned i = 0; i < Indent; ++i)
/external/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp423 void LocationContext::dumpStack(raw_ostream &OS, StringRef Indent) const {
432 OS << Indent << '#' << Frame++ << ' ';
437 OS << Indent << " (scope)\n"; local
440 OS << Indent << " (block context: "
/external/lldb/source/Core/
H A DStream.cpp254 // Indent the current line using the current indentation level and
258 Stream::Indent(const char *s) function in class:Stream
/external/llvm/lib/Support/
H A DYAMLTraits.cpp618 unsigned Indent = StateStack.size() - 1; local
625 --Indent;
629 for (unsigned i = 0; i < Indent; ++i) {
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dtext_format.cc935 // 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() { function in class:google::protobuf::TextFormat::Printer::TextGenerator
947 GOOGLE_LOG(DFATAL) << " Outdent() without matching Indent().";
1231 generator.Indent();
1477 generator.Indent();
1506 generator.Indent();
/external/chromium_org/v8/src/
H A Dscopes.cc788 static void Indent(int n, const char* str) { function in namespace:v8::internal
820 Indent(indent, Variable::Mode2String(var->mode()));
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");
885 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
886 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
887 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
889 Indent(n
[all...]
/external/deqp/framework/opengl/
H A DgluVarType.hpp286 struct Indent struct in namespace:glu::decl
289 Indent (int level_) : level(level_) {} function in struct:glu::decl::Indent
317 std::ostream& operator<< (std::ostream& str, const Indent& indent);
324 inline decl::Indent indent (int indentLevel) { return decl::Indent(indentLevel); }
/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/chromium_org/third_party/re2/lib/codereview/
H A Dcodereview.py228 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): function
922 msg = "gofmt needs to format these files (run hg gofmt):\n" + Indent(data, "\t").rstrip()
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h1759 const char* Indent() { return indent.c_str(); } function in class:TiXmlPrinter

Completed in 790 milliseconds

12