HomeSort by relevance Sort by last modified time
    Searched full:indent (Results 901 - 925 of 2419) sorted by null

<<31323334353637383940>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
argparse.py 192 assert self._current_indent >= 0, 'Indent decreased below 0.'
334 def get_lines(parts, indent, prefix=None):
340 line_len = len(indent) - 1
343 lines.append(indent + ' '.join(line))
345 line_len = len(indent) - 1
349 lines.append(indent + ' '.join(line))
351 lines[0] = lines[0][len(indent):]
356 indent = ' ' * (len(prefix) + len(prog) + 1)
358 lines = get_lines([prog] + opt_parts, indent, prefix)
359 lines.extend(get_lines(pos_parts, indent))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
argparse.py 192 assert self._current_indent >= 0, 'Indent decreased below 0.'
334 def get_lines(parts, indent, prefix=None):
340 line_len = len(indent) - 1
343 lines.append(indent + ' '.join(line))
345 line_len = len(indent) - 1
349 lines.append(indent + ' '.join(line))
351 lines[0] = lines[0][len(indent):]
356 indent = ' ' * (len(prefix) + len(prog) + 1)
358 lines = get_lines([prog] + opt_parts, indent, prefix)
359 lines.extend(get_lines(pos_parts, indent))
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 347 generator.indent();
460 generator.indent();
513 private final StringBuilder indent = new StringBuilder(); field in class:TextFormat.TextGenerator
521 * Indent text by two spaces. After calling Indent(), two spaces will be
522 * inserted at the beginning of each line of text. Indent() may be called
525 public void indent() { method in class:TextFormat.TextGenerator
526 indent.append(" ");
530 * Reduces the current indent level by two spaces, or crashes if the indent
    [all...]
  /external/deqp/modules/gles2/scripts/
genutil.py 22 def indentTextBlock(text, indent):
23 indentStr = indent * "\t"
29 def writeCase(f, case, indent, prefix):
32 f.write(indentTextBlock('group %s "%s"\n\n' % (case.name, case.description), indent))
34 writeCase(f, child, indent + 1, prefix + case.name + ".")
35 f.write(indentTextBlock("\nend # %s\n" % case.name, indent))
41 f.write(indentTextBlock(str(case) + "\n", indent))
  /external/opencv3/modules/viz/src/vtk/
vtkVizInteractorStyle.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.1/
javawriter-2.5.1.jar 
  /external/llvm/lib/Support/
YAMLParser.cpp 436 /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
534 int Indent;
775 Indent = -1;
1019 while (Indent > ToColumn) {
1023 Indent = Indents.pop_back_val();
1034 if (Indent < ToColumn) {
1035 Indents.push_back(Indent);
1036 Indent = ToColumn;
1341 unsigned indent = static_cast<unsigned>(Indent + 1); local
    [all...]
  /external/vulkan-validation-layers/
generator.py     [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc     [all...]
  /external/boringssl/src/include/openssl/
asn1t.h 613 int indent, const char *fname,
618 typedef int ASN1_primitive_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx);
679 int indent; member in struct:ASN1_PRINT_ARG_st
842 int fname##_print_ctx(BIO *out, stname *x, int indent, \
845 return ASN1_item_print(out, (ASN1_VALUE *)x, indent, \
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/static/
forms.js 358 * @param {Integer} indent Indentation level for object being displayed.
361 function formatJSON(value, indent) {
363 for (var index = 0; index < indent; ++index) {
374 result += indentation + formatJSON(item, indent + 1) + ',<br>';
381 formatJSON(item, indent + 1) + ',<br>');
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 400 std::string Indent(IndentLevel*2, ' ');
410 if (Dump) outs() << Indent << "<BLOCKINFO_BLOCK/>\n";
424 outs() << Indent << "<";
457 outs() << Indent << "</";
507 outs() << Indent << " <";
  /external/protobuf/src/google/protobuf/compiler/java/
java_file.cc 227 printer->Indent();
236 printer->Indent();
292 printer->Indent();
321 printer->Indent();
396 printer->Indent();
  /external/testng/doc/samplereport/css/
maven-classic.css 509 /* font and text properties, exclusive of link indication, alignment, text-indent */
548 /* box properties (exclusive of borders), positioning, alignments, list types, text-indent */
651 text-indent: 5%;
701 text-indent: 0;
706 text-indent: 0;
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
cmd.py 153 def dump_options(self, header=None, indent=""):
157 self.announce(indent + header, level=log.INFO)
158 indent = indent + " "
164 self.announce(indent + "%s = %s" % (option, value),
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_textwrap.py 506 and then with some (including a hanging indent).'''
515 some (including a hanging indent).'''
526 "with some (including a hanging indent)."]
542 indent).'''
585 # Now indent one of the blank lines.
test_tokenize.py 24 INDENT ' ' (3, 0) (3, 4)
94 ... " # A comment with weird indent\\n"
98 ... " return y*4 # 3-space indent\\n")
545 INDENT '\\t' (2, 0) (2, 1)
549 INDENT ' \\t' (3, 0) (3, 9)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
cmd.py 153 def dump_options(self, header=None, indent=""):
157 self.announce(indent + header, level=log.INFO)
158 indent = indent + " "
164 self.announce(indent + "%s = %s" % (option, value),
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_textwrap.py 506 and then with some (including a hanging indent).'''
515 some (including a hanging indent).'''
526 "with some (including a hanging indent)."]
542 indent).'''
585 # Now indent one of the blank lines.
test_tokenize.py 24 INDENT ' ' (3, 0) (3, 4)
94 ... " # A comment with weird indent\\n"
98 ... " return y*4 # 3-space indent\\n")
545 INDENT '\\t' (2, 0) (2, 1)
549 INDENT ' \\t' (3, 0) (3, 9)
  /prebuilts/go/darwin-x86/src/go/types/
stmt.go 31 defer func(ctxt context, indent int) {
33 check.indent = indent
34 }(check.context, check.indent)
40 check.indent = 0
  /prebuilts/go/linux-x86/src/go/types/
stmt.go 31 defer func(ctxt context, indent int) {
33 check.indent = indent
34 }(check.context, check.indent)
40 check.indent = 0
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cmd.py 153 def dump_options(self, header=None, indent=""):
157 self.announce(indent + header, level=log.INFO)
158 indent = indent + " "
164 self.announce(indent + "%s = %s" % (option, value),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_textwrap.py 506 and then with some (including a hanging indent).'''
515 some (including a hanging indent).'''
526 "with some (including a hanging indent)."]
542 indent).'''
585 # Now indent one of the blank lines.
test_tokenize.py 24 INDENT ' ' (3, 0) (3, 4)
94 ... " # A comment with weird indent\\n"
98 ... " return y*4 # 3-space indent\\n")
545 INDENT '\\t' (2, 0) (2, 1)
549 INDENT ' \\t' (3, 0) (3, 9)

Completed in 1999 milliseconds

<<31323334353637383940>>