HomeSort by relevance Sort by last modified time
    Searched refs:indent (Results 51 - 75 of 1411) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
pprint.py 55 def pprint(object, stream=None, indent=1, width=80, depth=None):
58 stream=stream, indent=indent, width=width, depth=depth)
61 def pformat(object, indent=1, width=80, depth=None):
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
85 def __init__(self, indent=1, width=80, depth=None, stream=None):
89 indent
90 Number of spaces to indent for each level of nesting.
103 indent = int(indent
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pprint.py 55 def pprint(object, stream=None, indent=1, width=80, depth=None):
58 stream=stream, indent=indent, width=width, depth=depth)
61 def pformat(object, indent=1, width=80, depth=None):
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
85 def __init__(self, indent=1, width=80, depth=None, stream=None):
89 indent
90 Number of spaces to indent for each level of nesting.
103 indent = int(indent
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pprint.py 55 def pprint(object, stream=None, indent=1, width=80, depth=None):
58 stream=stream, indent=indent, width=width, depth=depth)
61 def pformat(object, indent=1, width=80, depth=None):
63 return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
85 def __init__(self, indent=1, width=80, depth=None, stream=None):
89 indent
90 Number of spaces to indent for each level of nesting.
103 indent = int(indent
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
rule-tracer.rb 29 indent = @level * @spaces_per_indent
31 @device.print( ' ' * indent, ARROW_IN, name )
44 indent = @level * @spaces_per_indent
46 @device.print( ' ' * indent, ARROW_OUT, name )
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
output_html.properties 27 indent=yes
40 {http\u003a//xml.apache.org/xalan}indent-amount=0
output_xml.properties 29 indent=no
43 {http\u003a//xml.apache.org/xalan}indent-amount=0
  /external/opencv3/modules/viz/src/vtk/
vtkXYZReader.h 59 void PrintSelf(ostream& os, vtkIndent indent);
  /external/selinux/libsemanage/include/
Makefile 11 indent:
  /external/selinux/libsemanage/utils/
Makefile 16 indent:
  /external/selinux/scripts/
Lindent 3 RES=`indent --version`
18 indent $PARAM "$@"
  /external/tcpdump/
print-rpki-rtr.c 127 indent_string (u_int indent)
138 if (sizeof(buf) < ((indent/8) + (indent %8) + 2)) {
148 while (indent >= 8) {
151 indent -= 8;
154 while (indent > 0) {
157 indent--;
172 rpki_rtr_pdu_print (netdissect_options *ndo, const u_char *tptr, u_int indent)
200 indent_string(indent+2),
218 indent_string(indent+2)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/android/
scrape_gtest_log.py 25 print json.dumps(json.loads(json_string), indent=4, sort_keys=True)
  /external/jdiff/src/jdiff/
API.java 73 int indent = 0; local
76 dumpPackage((PackageAPI)(iter.next()), indent);
84 * @param indent The number of spaces to indent the output.
86 public void dumpPackage(PackageAPI pkg, int indent) {
87 for (int i = 0; i < indent; i++) System.out.print(" ");
91 dumpClass((ClassAPI)(iter.next()), indent + indentInc);
104 * @param indent The number of spaces to indent the output.
106 public static void dumpClass(ClassAPI c, int indent) {
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 149 mOut.indent() << "#include \"RenderScript.h\"\n\n";
150 mOut.indent() << "using namespace android::RSC;\n\n";
156 mOut.indent() << "class " << mClassName << " : public android::RSC::ScriptC";
160 mOut.indent() << "private:\n";
168 mOut.indent() << "public:\n";
172 mOut.indent() << mClassName << "(android::RSC::sp<android::RSC::RS> rs);\n";
173 mOut.indent() << "virtual ~" << mClassName << "();\n\n";
215 mOut.indent() << "android::RSC::sp<const android::RSC::Element> "
240 mOut.indent() << GetTypeName(ev->getType()) << " " RS_EXPORT_VAR_PREFIX
254 mOut.indent() << "// No forEach_root(...)\n"
    [all...]
slang_rs_reflect_utils.cpp 122 out.indent() << "// return byte array representation of the " << bitwidth
124 out.indent() << "public static byte[] getBitCode" << bitwidth << "()";
126 out.indent() << "return getBitCode" << bitwidth << "Internal();\n";
135 out.indent() << "private static byte[] getSegment" << bitwidth << "_"
138 out.indent() << "byte[] data = {";
142 int position = kEntriesPerLine; // We start with a new line and indent.
146 out.indent();
156 out.indent() << "};\n";
157 out.indent() << "return data;\n";
198 out.indent() << "private static int bitCode" << bitwidth << "Length =
    [all...]
  /external/bison/build-aux/
update-b4-copyright 92 my $indent = index ($b4_copyright_line, '[');
93 --$indent if ($b4_copyright_line =~ m/^\n/);
96 my $text_margin = $margin - $indent;
100 my $line = "\n" . (' 'x$indent) . $1;
101 ++$indent if (!$year_lines_new);
  /external/vulkan-validation-layers/
vk-layer-generate.py     [all...]
  /external/vboot_reference/cgpt/
cgpt_show.c 52 void PrintSignature(const char *indent, const char *sig, size_t n, int raw) {
54 printf("%sSig: ", indent);
70 const char *indent, int raw) {
71 PrintSignature(indent, header->signature, sizeof(header->signature), raw);
73 printf("%sRev: 0x%08x\n", indent, header->revision);
74 printf("%sSize: %d\n", indent, header->size);
75 printf("%sHeader CRC: 0x%08x %s\n", indent, header->header_crc32,
77 printf("%sMy LBA: %lld\n", indent, (long long)header->my_lba);
78 printf("%sAlternate LBA: %lld\n", indent, (long long)header->alternate_lba);
79 printf("%sFirst LBA: %lld\n", indent, (long long)header->first_usable_lba)
264 char indent[64]; local
320 char indent[64]; local
    [all...]
  /external/bison/src/
complain.c 125 warn_at_indent (location loc, unsigned *indent,
131 indent_ptr = indent;
132 ERROR_MESSAGE (&loc, *indent ? NULL : _("warning"), message);
157 complain_at_indent (location loc, unsigned *indent,
160 indent_ptr = indent;
161 ERROR_MESSAGE (&loc, *indent ? NULL : _("error"), message);
complain.h 28 /* Sub-messages indent. */
47 /* Generate a message aligned by an indent.
48 When *indent == 0, assign message's indent to *indent,
49 When *indent > 0, align the message by *indent value. */
50 void warn_at_indent (location loc, unsigned *indent,
62 /* Generate a message aligned by an indent.
63 When *indent == 0, assign message's indent to *indent
    [all...]
  /external/curl/docs/examples/
htmltidy.c 46 void dumpNode(TidyDoc doc, TidyNode tnod, int indent )
56 printf( "%*.*s%s ", indent, indent, "<", name);
70 printf("%*.*s\n", indent, indent, buf.bp?(char *)buf.bp:"");
73 dumpNode( doc, child, indent + 4 ); /* recursive */
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
AnnotationDirectoryItem.java 74 out.indent();
77 out.indent();
89 out.indent();
92 out.indent();
104 out.indent();
107 out.indent();
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
SerializeOptions.java 73 private String indent = " "; field in class:SerializeOptions
288 * @return Returns the indent.
292 return indent;
297 * @param indent
298 * The indent to set.
301 public SerializeOptions setIndent(String indent)
303 this.indent = indent;
392 clone.setIndent(indent);
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 134 private String indent; field in class:JsonWriter
155 * in the encoded document. If {@code indent.isEmpty()} the encoded document
159 * @param indent a string containing only whitespace.
161 public void setIndent(String indent) {
162 if (indent.isEmpty()) {
163 this.indent = null;
166 this.indent = indent;
406 if (indent == null) {
412 out.write(indent);
    [all...]
  /external/boringssl/src/crypto/asn1/
t_bitst.c 65 BIT_STRING_BITNAME *tbl, int indent)
69 BIO_printf(out, "%*s", indent, "");

Completed in 997 milliseconds

1 23 4 5 6 7 8 91011>>