Searched refs:indent (Results 51 - 75 of 626) sorted by relevance

1234567891011>>

/external/bison/src/
H A Dcomplain.c125 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);
124 warn_at_indent(location loc, unsigned *indent, const char *message, ...) argument
156 complain_at_indent(location loc, unsigned *indent, const char *message, ...) argument
H A Dcomplain.h28 /* 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
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DAnnotationDirectoryItem.java74 out.indent();
77 out.indent();
89 out.indent();
92 out.indent();
104 out.indent();
107 out.indent();
H A DClassDataItem.java78 out.indent();
81 out.indent();
90 out.indent();
94 out.indent();
103 out.indent();
107 out.indent();
116 out.indent();
120 out.indent();
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DSerializeOptions.java73 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) argument
303 this.indent = indent;
392 clone.setIndent(indent);
/external/chromium_org/v8/src/
H A Dprettyprinter.cc720 IndentedScope indent(this, s);
727 { IndentedScope indent(this, "FUNC");
740 IndentedScope indent(this, "DECLS");
750 IndentedScope indent(this, "PARAMS");
775 IndentedScope indent(this, block_txt);
799 IndentedScope indent(this, "MODULE");
806 IndentedScope indent(this, "IMPORT");
813 IndentedScope indent(this, "EXPORT ");
819 IndentedScope indent(this, "MODULE LITERAL");
825 IndentedScope indent(thi
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/common/
H A Dsearch_box.css22 text-indent: 24px;
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementMicrotaskResolutionStep.cpp69 void CustomElementMicrotaskResolutionStep::show(unsigned indent) argument
71 fprintf(stderr, "%*sResolution: ", indent, "");
H A DCustomElementMicrotaskQueueBase.h30 void show(unsigned indent);
H A DCustomElementMicrotaskImportStep.cpp98 void CustomElementMicrotaskImportStep::show(unsigned indent) argument
100 fprintf(stderr, "%*sImport(wait=%d sync=%d, url=%s)\n", indent, "", shouldWaitForImport(), m_import && m_import->isSync(), m_import ? m_import->url().string().utf8().data() : "null");
101 m_queue->show(indent + 1);
H A DCustomElementMicrotaskRunQueue.cpp75 void CustomElementMicrotaskRunQueue::show(unsigned indent) argument
78 m_syncQueue->show(indent);
80 m_asyncQueue->show(indent);
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dt_bitst.c63 BIT_STRING_BITNAME *tbl, int indent)
67 BIO_printf(out, "%*s", indent, "");
62 ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, BIT_STRING_BITNAME *tbl, int indent) argument
/external/llvm/lib/Analysis/
H A DRegionPrinter.cpp104 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 = "
126 O.indent(2 * (depth + 1)) << "Node"
130 O.indent(2 * depth) << "}\n";
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DNetObjectList.java137 * @param indent int to set
140 public String debugDump(int indent) { argument
141 return super.debugDump(indent);
/external/openssl/crypto/asn1/
H A Dt_bitst.c65 BIT_STRING_BITNAME *tbl, int indent)
69 BIO_printf(out, "%*s", indent, "");
64 ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, BIT_STRING_BITNAME *tbl, int indent) argument
H A Dasn1_locl.h86 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
91 int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
103 int (*param_print)(BIO *out, const EVP_PKEY *pkey, int indent,
107 int indent, ASN1_PCTX *pctx);
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dxml_writer_base_unittest.py26 child.toprettyxml(indent=' ') for child in parent.childNodes)
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dxml_fix.py28 def _Replacement_writexml(self, writer, indent="", addindent="", newl=""):
29 # indent = current indentation
32 writer.write(indent+"<" + self.tagName)
45 node.writexml(writer, indent + addindent, addindent, newl)
46 writer.write("%s</%s>%s" % (indent, self.tagName, newl))
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dinspector_timeline_data.py18 json.dump(self._event_data, f, indent=4)
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEMerge.cpp74 TextStream& FEMerge::externalRepresentation(TextStream& ts, int indent) const
76 writeIndent(ts, indent);
83 inputEffect(i)->externalRepresentation(ts, indent + 1);
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dhexdump.c68 unsigned indent; member in struct:hexdump_ctx
99 BIO_indent(ctx->bio, ctx->indent, UINT_MAX);
179 int BIO_hexdump(BIO *bio, const uint8_t *data, size_t len, unsigned indent) { argument
183 ctx.indent = indent;
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_cpols.c74 static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, BIO *out, int indent);
76 static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, int indent);
77 static void print_notice(BIO *out, USERNOTICE *notice, int indent);
374 BIO *out, int indent)
381 BIO_printf(out, "%*sPolicy: ", indent, "");
385 print_qualifiers(out, pinfo->qualifiers, indent + 2);
391 int indent)
400 BIO_printf(out, "%*sCPS: %s\n", indent, "",
405 BIO_printf(out, "%*sUser Notice:\n", indent, "");
406 print_notice(out, qualinfo->d.usernotice, indent
[all...]
/external/clang/lib/Basic/
H A DModule.cpp289 OS.indent(Indent);
297 OS.indent(Indent + 2);
304 OS.indent(Indent + 2);
317 OS.indent(Indent + 2);
322 OS.indent(Indent + 2);
329 OS.indent(Indent + 2);
342 OS.indent(Indent + 2);
349 OS.indent(Indent + 2);
356 OS.indent(Indent + 2);
368 OS.indent(Inden
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_cpols.c70 static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, BIO *out, int indent);
72 static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, int indent);
73 static void print_notice(BIO *out, USERNOTICE *notice, int indent);
366 BIO *out, int indent)
373 BIO_printf(out, "%*sPolicy: ", indent, "");
377 print_qualifiers(out, pinfo->qualifiers, indent + 2);
383 int indent)
392 BIO_printf(out, "%*sCPS: %s\n", indent, "",
397 BIO_printf(out, "%*sUser Notice:\n", indent, "");
398 print_notice(out, qualinfo->d.usernotice, indent
[all...]
/external/chromium_org/content/public/browser/
H A Ddevtools_protocol_constants_generator.py117 def FormatContents(tree, indent, format_string):
123 body += "".join(indent + format_string.format(key, value)
125 body += "".join(FormatNamespace(key, value, indent, format_string)
129 def FormatNamespace(title, tree, indent, format_string):
132 body = '\n' + indent + "namespace " + title + " {\n"
133 body += FormatContents(tree, indent + " ", format_string)
134 body += indent + "} // " + title + "\n"

Completed in 2244 milliseconds

1234567891011>>