Searched defs:indent (Results 1 - 25 of 271) sorted by relevance

1234567891011

/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementMicrotaskQueueBase.cpp26 void CustomElementMicrotaskQueueBase::show(unsigned indent) argument
30 m_queue[q]->show(indent);
32 fprintf(stderr, "%*snull\n", 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 DCustomElementMicrotaskResolutionStep.cpp69 void CustomElementMicrotaskResolutionStep::show(unsigned indent) argument
71 fprintf(stderr, "%*sResolution: ", indent, "");
H A DCustomElementMicrotaskRunQueue.cpp75 void CustomElementMicrotaskRunQueue::show(unsigned indent) argument
78 m_syncQueue->show(indent);
80 m_asyncQueue->show(indent);
/external/openssl/crypto/asn1/
H A Dt_x509a.c68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) argument
76 indent, "", indent + 2, "");
85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
89 indent, "", indent + 2, "");
98 } else BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
99 if(aux->alias) BIO_printf(out, "%*sAlias: %s\n", indent, "",
102 BIO_printf(out, "%*sKey Id: ", indent, "");
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
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dt_x509a.c66 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) argument
75 indent, "", indent + 2, "");
84 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
88 indent, "", indent + 2, "");
97 } else BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
98 if(aux->alias) BIO_printf(out, "%*sAlias: %s\n", indent, "",
101 BIO_printf(out, "%*sKey Id: ", indent, "");
/external/chromium_org/ui/accessibility/
H A Dax_tree_update.cc25 // The challenge here is that we want to indent the nodes being updated
32 int indent = id_to_indentation[nodes[i].id]; local
33 result += std::string(2 * indent, ' ');
36 id_to_indentation[nodes[i].child_ids[j]] = indent + 1;
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageObject.java163 public String dbgPrint(int indent) { argument
165 indentation = 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/chromium_org/ui/compositor/
H A Ddebug_utils.cc29 int indent,
32 std::string indent_str(indent, ' ');
66 std::string property_indent_str(indent+3, ' ');
107 layer->children()[i], indent + 3, mouse_location, out);
28 PrintLayerHierarchyImp(const Layer* layer, int indent, gfx::Point mouse_location, std::wostringstream* out) argument
/external/chromium_org/ui/views/
H A Ddebug_utils.cc16 int indent,
18 int ind = indent;
32 PrintViewHierarchyImp(view->child_at(i), indent + 2, out);
36 int indent,
38 int ind = indent;
51 PrintFocusHierarchyImp(view->child_at(0), indent + 2, out);
55 PrintFocusHierarchyImp(next_focusable, indent, out);
15 PrintViewHierarchyImp(const View* view, int indent, std::wostringstream* out) argument
35 PrintFocusHierarchyImp(const View* view, int indent, std::wostringstream* out) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPObject.java386 * @param indent int to set
389 public String debugDump(int indent) { argument
391 indentation = indent;
H A DSIPObjectList.java141 * @param indent int to set
144 public String debugDump(int indent) { argument
145 return super.debugDump(indent);
/external/blktrace/btt/
H A Dtrace_complete.c24 __u64 sec, __u32 nsec, int indent)
27 if (indent)
23 __out(FILE *ofp, __u64 tm, enum iop_type type, __u64 sec, __u32 nsec, int indent) argument
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter_android.cc119 const base::string16& indent) {
153 return indent + line + base::ASCIIToUTF16("\n");
117 ToString( const base::DictionaryValue& dict, const base::string16& indent) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.h62 int indent; member in struct:ppc_function
/external/chromium_org/third_party/skia/debugger/QT/
H A DSkListWidget.cpp60 int indent = index.data(Qt::UserRole + 3).toInt(); local
97 r = option.rect.adjusted(kImageSpace+kCommandNumberSpace+kTimeSpace+indent, 0, -10, -7);
100 r = option.rect.adjusted(kImageSpace+kCommandNumberSpace+indent, 0, -10, -7);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIndentingWriter.java36 /** {@code > 0;} the maximum indent */
42 /** whether indent spaces are currently being collected */
45 /** {@code >= 0;} current indent amount */
46 private int indent; field in class:IndentingWriter
95 indent++;
96 if (indent >= maxIndent) {
97 indent = maxIndent;
120 for (int i = 0; i < indent; i++) {
123 column = indent;
167 indent
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DSyntaxTreeDumper.java41 private int indent; field in class:SyntaxTreeDumper
57 indent++;
62 indent--;
121 for (int i = 0; i < indent; i++) {
/external/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.h62 int indent; member in struct:ppc_function
/external/skia/debugger/QT/
H A DSkListWidget.cpp60 int indent = index.data(Qt::UserRole + 3).toInt(); local
97 r = option.rect.adjusted(kImageSpace+kCommandNumberSpace+kTimeSpace+indent, 0, -10, -7);
100 r = option.rect.adjusted(kImageSpace+kCommandNumberSpace+indent, 0, -10, -7);
/external/smali/util/src/main/java/org/jf/util/
H A DWrappedIndentingWriter.java51 /** &gt; 0; the maximum indent */
57 /** whether indent spaces are currently being collected */
60 /** &gt;= 0; current indent amount */
61 private int indent; field in class:WrappedIndentingWriter
110 indent++;
111 if (indent >= maxIndent) {
112 indent = maxIndent;
135 for (int i = 0; i < indent; i++) {
138 column = indent;
182 indent
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb30 # (This used to be called #tab and aliased as #indent.)
35 def indent( n ) method in class:String
48 indent( -n )
64 self.outdent( self.level_of_indent ).indent( n )
/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

Completed in 4542 milliseconds

1234567891011