Searched refs:indent (Results 1 - 25 of 626) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderTreeAsText.h42 void write(TextStream&, const RenderSVGShape&, int indent);
43 void write(TextStream&, const RenderSVGRoot&, int indent);
44 void writeSVGGradientStop(TextStream&, const RenderSVGGradientStop&, int indent);
45 void writeSVGResourceContainer(TextStream&, const RenderObject&, int indent);
46 void writeSVGContainer(TextStream&, const RenderObject&, int indent);
47 void writeSVGImage(TextStream&, const RenderSVGImage&, int indent);
48 void writeSVGInlineText(TextStream&, const RenderSVGInlineText&, int indent);
49 void writeSVGText(TextStream&, const RenderSVGText&, int indent);
50 void writeResources(TextStream&, const RenderObject&, int indent);
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dmsvs_common.sh63 indent=""
65 indent="${indent}${indent1}"
68 indent="${indent%${indent1}}"
76 echo "${indent}${opt%%=*}=\"${optval}\""
84 echo "${indent}<${tag}"
87 echo "${indent}>"
89 echo "${indent}<${tag}>"
97 echo "${indent}</
[all...]
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp24 void Matcher::print(raw_ostream &OS, unsigned indent) const {
25 printImpl(OS, indent);
27 return Next->print(OS, indent);
108 void ScopeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
109 OS.indent(indent) << "Scope\n";
112 OS.indent(indent+1) << "NULL POINTER\n";
114 getChild(i)->print(OS, indent+2);
118 void RecordMatcher::printImpl(raw_ostream &OS, unsigned indent) cons
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dvpx-astyle.sh3 astyle --style=java --indent=spaces=2 --indent-switches\
4 --min-conditional-indent=0 \
7 --indent-preprocessor --convert-tabs --indent-labels \
8 --suffix=none --quiet --max-instatement-indent=80 "$@"
/external/libvpx/libvpx/tools/
H A Dvpx-astyle.sh3 astyle --style=java --indent=spaces=2 --indent-switches\
4 --min-conditional-indent=0 \
7 --indent-preprocessor --convert-tabs --indent-labels \
8 --suffix=none --quiet --max-instatement-indent=80 "$@"
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_prn.c69 static int unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported);
73 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) argument
79 BIO_printf(out, "%*s", indent, "");
83 if(ml) BIO_printf(out, "%*s", indent, "");
95 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) argument
105 return unknown_ext_print(out, ext, flag, indent, 0);
110 if(!ext_str) return unknown_ext_print(out, ext, flag, indent, 1);
117 BIO_printf(out, "%*s%s", indent, "", value);
123 X509V3_EXT_val_prn(out, nval, indent,
126 if(!method->i2r(method, ext_str, out, indent)) o
137 X509V3_extensions_print(BIO *bp, const char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent) argument
171 unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported) argument
198 X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent) argument
[all...]
/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, "");
/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/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 Dtasn_prn.c159 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
164 int asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
168 const ASN1_ITEM *it, int indent,
172 static int asn1_print_fsname(BIO *out, int indent,
176 int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, argument
186 return asn1_item_print_ctx(out, &ifld, indent, it,
190 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, argument
205 parg.indent = indent;
215 if (!nohdr && !asn1_print_fsname(out, indent,
339 asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx) argument
400 asn1_print_fsname(BIO *out, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) argument
501 asn1_print_obstring_ctx(BIO *out, ASN1_STRING *str, int indent, const ASN1_PCTX *pctx) argument
519 asn1_primitive_print(BIO *out, ASN1_VALUE **fld, const ASN1_ITEM *it, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) argument
[all...]
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dgeneric_object_view.js43 label, object, indent, depth, maxDepth, suffix) {
46 label, indent, '<recursion limit reached>', suffix);
51 this.appendSimpleText_(label, indent, 'undefined', suffix);
56 this.appendSimpleText_(label, indent, 'null', suffix);
63 this.appendSimpleText_(label, indent, '"' + object + '"', suffix);
65 this.appendSimpleText_(label, indent, object, suffix);
73 this.appendElementWithLabel_(label, indent, link, suffix);
80 this.appendElementWithLabel_(label, indent, link, suffix);
86 label, object, indent, depth, maxDepth, suffix);
91 label, object, indent, dept
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp88 unsigned indent) {
90 Indent(o, indent) << "<dict>\n";
91 ++indent;
93 Indent(o, indent) << "<key>kind</key><string>control</string>\n";
96 Indent(o, indent) << "<key>edges</key>\n";
97 ++indent;
98 Indent(o, indent) << "<array>\n";
99 ++indent;
102 Indent(o, indent) << "<dict>\n";
103 ++indent;
83 ReportControlFlow(raw_ostream &o, const PathDiagnosticControlFlowPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent) argument
136 ReportEvent(raw_ostream &o, const PathDiagnosticPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth, bool isKeyEvent = false) argument
205 ReportCall(raw_ostream &o, const PathDiagnosticCallPiece &P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
240 ReportMacro(raw_ostream &o, const PathDiagnosticMacroPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
259 ReportPiece(raw_ostream &o, const PathDiagnosticPiece &P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth, bool includeControlFlow, bool isKeyEvent) argument
[all...]
/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/openssl/crypto/x509v3/
H A Dv3_prn.c67 static int unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported);
71 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) argument
77 BIO_printf(out, "%*s", indent, "");
81 if(ml) BIO_printf(out, "%*s", indent, "");
108 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) argument
118 return unknown_ext_print(out, ext, flag, indent, 0);
123 if(!ext_str) return unknown_ext_print(out, ext, flag, indent, 1);
131 BIO_printf(out, "%*s%s", indent, "", value);
141 BIO_printf(out, "%*s%s", indent, "", tmp);
151 X509V3_EXT_val_prn(out, nval, indent,
165 X509V3_extensions_print(BIO *bp, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent) argument
198 unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported) argument
225 X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A Doutput_unknown.properties30 indent=no
44 {http\u003a//xml.apache.org/xalan}indent-amount=0
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dninja_syntax.py30 def variable(self, key, value, indent=0):
35 self._line('%s = %s' % (key, value), indent)
39 self.variable('depth', depth, indent=1)
45 self.variable('command', command, indent=1)
47 self.variable('description', description, indent=1)
49 self.variable('depfile', depfile, indent=1)
51 self.variable('generator', '1', indent=1)
53 self.variable('pool', pool, indent=1)
55 self.variable('restat', '1', indent=1)
57 self.variable('rspfile', rspfile, indent
[all...]
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dtracing_timeline_data.py18 json.dump(self._event_data, f, indent=4)
20 json.dump({'traceEvents' : self._event_data}, f, indent=4)
/external/chromium_org/tools/
H A Dinclude_tracer.py140 def Walk(seen, filename, parent, indent):
161 print ' ' * indent + filename
178 print ' ' * (indent + 2) + "-- not found"
184 seen, line.split('"')[1], resolved_filename, indent + 2)
188 seen, include, resolved_filename, indent + 2)
191 seen, line.split('"')[1], resolved_filename, indent + 2)
/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/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/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/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dtasn_prn.c159 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
164 int asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent,
168 const ASN1_ITEM *it, int indent,
172 static int asn1_print_fsname(BIO *out, int indent,
176 int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, argument
186 return asn1_item_print_ctx(out, &ifld, indent, it,
190 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, argument
205 parg.indent = indent;
215 if (!nohdr && !asn1_print_fsname(out, indent,
339 asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx) argument
401 asn1_print_fsname(BIO *out, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) argument
514 asn1_print_obstring_ctx(BIO *out, ASN1_STRING *str, int indent, const ASN1_PCTX *pctx) argument
531 asn1_primitive_print(BIO *out, ASN1_VALUE **fld, const ASN1_ITEM *it, int indent, const char *fname, const char *sname, const ASN1_PCTX *pctx) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/
H A DASN1Dump.java49 String indent,
58 String tab = indent + TAB;
60 buf.append(indent);
98 String tab = indent + TAB;
100 buf.append(indent);
136 String tab = indent + TAB;
138 buf.append(indent);
177 buf.append(indent + "BER Constructed Octet String" + "[" + oct.getOctets().length + "] ");
181 buf.append(indent + "DER Octet String" + "[" + oct.getOctets().length + "] ");
185 buf.append(dumpBinaryDataAsString(indent, oc
48 _dumpAsString( String indent, boolean verbose, ASN1Primitive obj, StringBuffer buf) argument
288 outputApplicationSpecific(String type, String indent, boolean verbose, ASN1Primitive obj, String nl) argument
355 dumpBinaryDataAsString(String indent, byte[] bytes) argument
[all...]
/external/openssl/crypto/bio/
H A Db_dump.c78 void *u, const char *s, int len, int indent)
93 if (indent < 0)
94 indent = 0;
95 if (indent)
97 if (indent > 128) indent=128;
98 memset(str,' ',indent);
100 str[indent]='\0';
102 dump_width=DUMP_WIDTH_LESS_INDENT(indent);
169 int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent) argument
77 BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u), void *u, const char *s, int len, int indent) argument
183 BIO_dump_indent(BIO *bp, const char *s, int len, int indent) argument
[all...]
/external/chromium_org/build/android/pylib/utils/
H A Dapk_helper.py38 indent = ' '
45 while line[(len(indent) * indent_depth):].startswith(indent):
51 m = _MANIFEST_ELEMENT_RE.match(line[len(indent) * indent_depth:])
58 m = _MANIFEST_ATTRIBUTE_RE.match(line[len(indent) * indent_depth:])

Completed in 798 milliseconds

1234567891011>>