HomeSort by relevance Sort by last modified time
    Searched refs:indent (Results 26 - 50 of 506) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/openssl/crypto/x509v3/
v3_pku.c 65 static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent);
85 PKEY_USAGE_PERIOD *usage, BIO *out, int indent)
87 BIO_printf(out, "%*s", indent, "");
v3_crld.c 69 int indent);
247 ASN1_BIT_STRING *rflags, int indent)
251 BIO_printf(out, "%*s%s:\n%*s", indent, "", rname, indent + 2, "");
430 int indent);
507 static int print_gens(BIO *out, STACK_OF(GENERAL_NAME) *gens, int indent)
512 BIO_printf(out, "%*s", indent + 2, "");
519 static int print_distpoint(BIO *out, DIST_POINT_NAME *dpn, int indent)
523 BIO_printf(out, "%*sFull Name:\n", indent, "");
524 print_gens(out, dpn->name.fullname, indent);
    [all...]
  /external/dropbear/libtommath/
dep.pl 94 $indent = 0;
110 if ($indent == 0) { }
111 elsif ($indent >= 1) { print OUT "| " x ($indent - 1) . "+--->"; }
116 ++$indent;
118 --$indent;
  /external/libvpx/libvpx/build/make/
gen_msvs_sln.sh 48 indent=""
50 indent="${indent}${indent1}"
53 indent="${indent%${indent1}}"
94 echo "${indent}ProjectSection(ProjectDependencies) = postProject"
100 echo "${indent}$dep_guid = $dep_guid"
104 echo "${indent}EndProjectSection"
119 echo "${indent}GlobalSection(SolutionConfigurationPlatforms) = preSolution"
124 echo "${indent}$config = $config
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 409 * @param indent the current indent level
413 private boolean serializeCompactRDFAttrProps(XMPNode parentNode, int indent) throws IOException
424 writeIndent(indent);
442 * field of a struct, or an item of an array. The indent is that for the
484 * @param indent the current indent level
488 private void serializeCompactRDFElementProps(XMPNode parentNode, int indent)
511 writeIndent(indent);
540 serializeCompactRDFGeneralQualifier(indent, node)
844 declareNamespace(field.getName(), null, usedPrefixes, indent); local
857 declareNamespace(qualifier.getName(), null, usedPrefixes, indent); local
    [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/smali/dexlib/src/main/java/org/jf/dexlib/Util/
AnnotatedOutput.java 89 public void indent(); method in interface:AnnotatedOutput
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCPluginLayerImpl.h 47 virtual void dumpLayerProperties(TextStream&, int indent) const;
  /system/media/camera/docs/
metadata-parser-sanity-check 33 tidy -indent -xml -quiet $thisdir/metadata_properties.xml > $tmp_tidy1
34 tidy -indent -xml -quiet $tmp_out > $tmp_tidy2
  /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...]
  /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);
  /frameworks/compile/slang/
slang_rs_reflection.cpp 321 C.indent() << "private static final String " RS_RESOURCE_NAME " = \""
327 C.indent() << "// Constructor" << std::endl;
336 C.indent() << "this(rs," << std::endl;
337 C.indent() << " rs.getApplicationContext().getResources()," << std::endl;
338 C.indent() << " rs.getApplicationContext().getResources()."
340 C.indent() << " " RS_RESOURCE_NAME ", \"raw\"," << std::endl;
341 C.indent() << " rs.getApplicationContext().getPackageName()));"
355 C.indent() << "super(rs, resources, id);" << std::endl;
368 C.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new "
410 C.indent() << "private Element " RS_ELEM_PREFIX << *I << ";" << std::endl
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 397 static void writeIndent(TextStream& ts, int indent)
399 for (int i = 0; i != indent; ++i)
403 void GraphicsLayer::dumpLayer(TextStream& ts, int indent, LayerTreeAsTextBehavior behavior) const
405 writeIndent(ts, indent);
414 dumpProperties(ts, indent, behavior);
415 writeIndent(ts, indent);
419 void GraphicsLayer::dumpProperties(TextStream& ts, int indent, LayerTreeAsTextBehavior behavior) const
422 writeIndent(ts, indent + 1);
427 writeIndent(ts, indent + 1);
432 writeIndent(ts, indent + 1)
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
XMLFormatter.java 33 private static final String indent = " "; field in class:XMLFormatter
108 sb.append(indent).append("<message/>");
116 sb.append(indent).append("<exception>").append(nl);
121 sb.append(indent).append(indent).append("<frame>").append(nl);
125 sb.append(indent).append(indent).append("</frame>").append(nl);
127 sb.append(indent).append("</exception>").append(nl);
133 sb.append(indent);
  /external/qemu/
qjson.c 75 int indent; member in struct:ToJsonIterState
81 static void to_json(const QObject *obj, QString *str, int pretty, int indent);
94 for (j = 0 ; j < s->indent ; j++)
99 to_json(QOBJECT(qkey), s->str, s->pretty, s->indent);
103 to_json(obj, s->str, s->pretty, s->indent);
117 for (j = 0 ; j < s->indent ; j++)
121 to_json(obj, s->str, s->pretty, s->indent);
125 static void to_json(const QObject *obj, QString *str, int pretty, int indent)
210 s.indent = indent + 1
    [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/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);
  /external/harfbuzz/src/
harfbuzz-dump.c 35 #define DUMP(format) dump (stream, indent, format)
36 #define DUMP1(format, arg1) dump (stream, indent, format, arg1)
37 #define DUMP2(format, arg1, arg2) dump (stream, indent, format, arg1, arg2)
38 #define DUMP3(format, arg1, arg2, arg3) dump (stream, indent, format, arg1, arg2, arg3)
40 #define DUMP_FINT(strct,fld) dump (stream, indent, "<" #fld ">%d</" #fld ">\n", (strct)->fld)
41 #define DUMP_FUINT(strct,fld) dump (stream, indent, "<" #fld ">%u</" #fld ">\n", (strct)->fld)
42 #define DUMP_FGLYPH(strct,fld) dump (stream, indent, "<" #fld ">%#06x</" #fld ">\n", (strct)->fld)
43 #define DUMP_FGLYPH(strct,fld) dump (stream, indent, "<" #fld ">%#06x</" #fld ">\n", (strct)->fld)
44 #define DUMP_USHORT_ARRAY(strct,fld,cnt) Dump_UShort_Array ((strct)->fld, cnt, #fld, stream, indent);
46 #define DEF_DUMP(type) static void Dump_ ## type (HB_ ## type *type, FILE *stream, int indent, HB_Type hb_type
746 int indent = 1; local
759 int indent = 1; local
    [all...]
  /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/llvm/lib/Analysis/
RegionPrinter.cpp 104 O.indent(2 * depth) << "subgraph cluster_" << static_cast<const void*>(R)
106 O.indent(2 * (depth + 1)) << "label = \"\";\n";
109 O.indent(2 * (depth + 1)) << "style = filled;\n";
110 O.indent(2 * (depth + 1)) << "color = "
114 O.indent(2 * (depth + 1)) << "style = solid;\n";
115 O.indent(2 * (depth + 1)) << "color = "
127 O.indent(2 * (depth + 1)) << "Node"
131 O.indent(2 * depth) << "}\n";
  /external/llvm/utils/TableGen/
X86DisassemblerTables.cpp 176 o.indent(i * 2) << format("0x%hx", id);
178 o.indent(i * 2) << 0;
199 o.indent(i * 2) << "0x0, /* EmptyTable */\n";
308 o2.indent(i2) << "{ /* ModRMDecision */" << "\n";
311 o2.indent(i2) << stringForDecisionType(dt) << "," << "\n";
312 o2.indent(i2) << 0 << " /* EmptyTable */\n";
315 o2.indent(i2) << "}";
352 o2.indent(i2) << "{ /* struct ModRMDecision */" << "\n";
355 o2.indent(i2) << stringForDecisionType(dt) << "," << "\n";
356 o2.indent(i2) << sEntryNumber << " /* Table" << sTableNumber << " */\n"
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObjectList.java 137 * @param indent int to set
140 public String debugDump(int indent) {
141 return super.debugDump(indent);

Completed in 1479 milliseconds

12 3 4 5 6 7 8 91011>>