| /third_party/typescript/tests/cases/fourslash/ |
| D | indentationWithBaseIndent.ts | 4 ////{| "indent": 10 , "baseIndentSize": 10 |} 6 ////{| "indent": 14 , "baseIndentSize": 10 |} 8 ////{| "indent": 18 , "baseIndentSize": 10 |} 11 ////{| "indent": 22, "baseIndentSize": 10 |} 15 ////{| "indent": 18, "baseIndentSize": 10 |} 19 ////{| "indent": 22, "baseIndentSize": 10 |} 23 ////{| "indent": 18, "baseIndentSize": 10 |} 32 ////{| "indent": 14 , "baseIndentSize": 10 |} 34 ////{| "indent": 18 , "baseIndentSize": 10 |} 37 ////{| "indent": 18 , "baseIndentSize": 10 |} [all …]
|
| D | indentationNone.ts | 5 ////{| "indent": 0 |} 7 ////{| "indent": 0 |} 10 ////{| "indent": 0 |} 14 ////{| "indent": 0 |} 18 ////{| "indent": 0 |} 22 ////{| "indent": 0 |} 31 ////{| "indent": 0 |} 33 ////{| "indent": 0 |} 36 ////{| "indent": 0 |} 39 ////{| "indent": 0 |} [all …]
|
| D | indentation.ts | 5 ////{| "indent": 4 |} 7 ////{| "indent": 8 |} 10 ////{| "indent": 12 |} 14 ////{| "indent": 8 |} 18 ////{| "indent": 12 |} 22 ////{| "indent": 8 |} 31 ////{| "indent": 4 |} 33 ////{| "indent": 8 |} 36 ////{| "indent": 8 |} 39 ////{| "indent": 8 |} [all …]
|
| D | indentationBlock.ts | 5 ////{| "indent": 0 |} 7 ////{| "indent": 4 |} 10 ////{| "indent": 8 |} 14 ////{| "indent": 8 |} 18 ////{| "indent": 12 |} 22 ////{| "indent": 8 |} 31 ////{| "indent": 0 |} 33 ////{| "indent": 4 |} 36 ////{| "indent": 8 |} 39 ////{| "indent": 8 |} [all …]
|
| /third_party/nghttp2/doc/ |
| D | nghttpd.1 | 7 .nr rst2man-indent-level 0 11 level \\n[rst2man-indent-level] 12 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 21 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 22 . nr rst2man-indent-level +1 27 .\" indent \\n[an-margin] 28 .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] 29 .nr rst2man-indent-level -1 30 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] 43 .UNINDENT [all …]
|
| D | nghttp.1 | 7 .nr rst2man-indent-level 0 11 level \\n[rst2man-indent-level] 12 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 21 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 22 . nr rst2man-indent-level +1 27 .\" indent \\n[an-margin] 28 .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] 29 .nr rst2man-indent-level -1 30 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] 43 .UNINDENT [all …]
|
| D | h2load.1 | 7 .nr rst2man-indent-level 0 11 level \\n[rst2man-indent-level] 12 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 21 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 22 . nr rst2man-indent-level +1 27 .\" indent \\n[an-margin] 28 .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] 29 .nr rst2man-indent-level -1 30 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] 49 .UNINDENT [all …]
|
| D | nghttpx.1 | 7 .nr rst2man-indent-level 0 11 level \\n[rst2man-indent-level] 12 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 21 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 22 . nr rst2man-indent-level +1 27 .\" indent \\n[an-margin] 28 .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] 29 .nr rst2man-indent-level -1 30 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] 44 .UNINDENT [all …]
|
| /third_party/python/Lib/ |
| D | pprint.py | 47 def pprint(object, stream=None, indent=1, width=80, depth=None, *, argument 51 stream=stream, indent=indent, width=width, depth=depth, 55 def pformat(object, indent=1, width=80, depth=None, *, argument 58 return PrettyPrinter(indent=indent, width=width, depth=depth, 104 def __init__(self, indent=1, width=80, depth=None, stream=None, *, argument 109 indent 110 Number of spaces to indent for each level of nesting. 129 indent = int(indent) 131 if indent < 0: 132 raise ValueError('indent must be >= 0') [all …]
|
| /third_party/benchmark/src/ |
| D | json_reporter.cc | 107 std::string indent(4, ' '); in ReportContext() local 110 out << indent << FormatKV("date", walltime_value) << ",\n"; in ReportContext() 112 out << indent << FormatKV("host_name", context.sys_info.name) << ",\n"; in ReportContext() 115 out << indent << FormatKV("executable", Context::executable_name) << ",\n"; in ReportContext() 119 out << indent << FormatKV("num_cpus", static_cast<int64_t>(info.num_cpus)) in ReportContext() 121 out << indent in ReportContext() 126 …out << indent << FormatKV("cpu_scaling_enabled", info.scaling == CPUInfo::Scaling::ENABLED ? true … in ReportContext() 130 out << indent << "\"caches\": [\n"; in ReportContext() 131 indent = std::string(6, ' '); in ReportContext() 135 out << indent << "{\n"; in ReportContext() [all …]
|
| /third_party/json/benchmarks/thirdparty/benchmark/src/ |
| D | json_reporter.cc | 75 std::string indent(4, ' '); in ReportContext() local 78 out << indent << FormatKV("date", walltime_value) << ",\n"; in ReportContext() 81 out << indent << FormatKV("executable", Context::executable_name) << ",\n"; in ReportContext() 85 out << indent << FormatKV("num_cpus", static_cast<int64_t>(info.num_cpus)) in ReportContext() 87 out << indent in ReportContext() 91 out << indent << FormatKV("cpu_scaling_enabled", info.scaling_enabled) in ReportContext() 94 out << indent << "\"caches\": [\n"; in ReportContext() 95 indent = std::string(6, ' '); in ReportContext() 99 out << indent << "{\n"; in ReportContext() 108 out << indent << "}"; in ReportContext() [all …]
|
| /third_party/openssl/util/ |
| D | openssl-format-source | 12 # - format source tree according to OpenSSL coding style using indent 17 # note: the indent options assume GNU indent v2.2.10 which was released 18 # Feb-2009 so if you have an older indent the options may not 22 # the reformatting has been completed as marking a block causes indent to 32 INDENT=indent 33 uname -s | grep BSD > /dev/null && type gindent > /dev/null 2>&1 && INDENT=gindent 48 # our own indent profile, which is at a well known location 49 INDENT_PROFILE="$HERE/indent.pro" 52 echo "$0: unable to locate the openssl indent.pro file" >&2 98 tmp=$(mktemp /tmp/indent.XXXXXX) [all …]
|
| /third_party/flutter/flutter/packages/flutter/test/foundation/ |
| D | licenses_test.dart | 82 expect(paragraphs[index].indent, 0); 85 expect(paragraphs[index].indent, 0); 88 expect(paragraphs[index].indent, 1); 91 expect(paragraphs[index].indent, LicenseParagraph.centeredIndent); 94 expect(paragraphs[index].indent, 0); 97 expect(paragraphs[index].indent, 0); 100 expect(paragraphs[index].indent, 0); 103 expect(paragraphs[index].indent, 0); 106 expect(paragraphs[index].indent, 0); 109 expect(paragraphs[index].indent, 0); [all …]
|
| /third_party/node/deps/npm/node_modules/detect-indent/ |
| D | package.json | 4 "detect-indent@5.0.0", 8 "_from": "detect-indent@5.0.0", 9 "_id": "detect-indent@5.0.0", 12 "_location": "/detect-indent", 17 "raw": "detect-indent@5.0.0", 18 "name": "detect-indent", 19 "escapedName": "detect-indent", 27 "_resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", 36 "url": "https://github.com/sindresorhus/detect-indent/issues" 49 "homepage": "https://github.com/sindresorhus/detect-indent#readme", [all …]
|
| /third_party/gstreamer/gstreamer/common/ |
| D | gst-indent | 6 # Check for existence of indent, and error out if not present. 14 version=`indent --version 2>/dev/null` 17 echo "Did not find GNU indent, please install it before continuing." 20 INDENT=indent 23 INDENT=gindent 26 INDENT=gnuindent 29 case `$INDENT --version` in 34 echo "Did not find GNU indent, please install it before continuing." 35 echo "(Found $INDENT, but it doesn't seem to be GNU indent)" 51 --indent-level2 \ [all …]
|
| /third_party/gstreamer/gstplugins_good/common/ |
| D | gst-indent | 6 # Check for existence of indent, and error out if not present. 14 version=`indent --version 2>/dev/null` 17 echo "Did not find GNU indent, please install it before continuing." 20 INDENT=indent 23 INDENT=gindent 26 INDENT=gnuindent 29 case `$INDENT --version` in 34 echo "Did not find GNU indent, please install it before continuing." 35 echo "(Found $INDENT, but it doesn't seem to be GNU indent)" 51 --indent-level2 \ [all …]
|
| /third_party/gstreamer/gst_libav/common/ |
| D | gst-indent | 6 # Check for existence of indent, and error out if not present. 14 version=`indent --version 2>/dev/null` 17 echo "Did not find GNU indent, please install it before continuing." 20 INDENT=indent 23 INDENT=gindent 26 INDENT=gnuindent 29 case `$INDENT --version` in 34 echo "Did not find GNU indent, please install it before continuing." 35 echo "(Found $INDENT, but it doesn't seem to be GNU indent)" 51 --indent-level2 \ [all …]
|
| /third_party/gstreamer/gstplugins_base/common/ |
| D | gst-indent | 6 # Check for existence of indent, and error out if not present. 14 version=`indent --version 2>/dev/null` 17 echo "Did not find GNU indent, please install it before continuing." 20 INDENT=indent 23 INDENT=gindent 26 INDENT=gnuindent 29 case `$INDENT --version` in 34 echo "Did not find GNU indent, please install it before continuing." 35 echo "(Found $INDENT, but it doesn't seem to be GNU indent)" 51 --indent-level2 \ [all …]
|
| /third_party/gstreamer/gstplugins_bad/common/ |
| D | gst-indent | 6 # Check for existence of indent, and error out if not present. 14 version=`indent --version 2>/dev/null` 17 echo "Did not find GNU indent, please install it before continuing." 20 INDENT=indent 23 INDENT=gindent 26 INDENT=gnuindent 29 case `$INDENT --version` in 34 echo "Did not find GNU indent, please install it before continuing." 35 echo "(Found $INDENT, but it doesn't seem to be GNU indent)" 51 --indent-level2 \ [all …]
|
| /third_party/openssl/crypto/x509v3/ |
| D | v3_prn.c | 20 unsigned long flag, int indent, int supported); 24 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, in X509V3_EXT_val_prn() argument 32 BIO_printf(out, "%*s", indent, ""); in X509V3_EXT_val_prn() 38 BIO_printf(out, "%*s", indent, ""); in X509V3_EXT_val_prn() 70 int indent) in X509V3_EXT_print() argument 86 return unknown_ext_print(out, p, extlen, flag, indent, 0); in X509V3_EXT_print() 93 return unknown_ext_print(out, p, extlen, flag, indent, 1); in X509V3_EXT_print() 101 BIO_printf(out, "%*s%s", indent, "", value); in X509V3_EXT_print() 110 BIO_printf(out, "%*s%s", indent, "", tmp); in X509V3_EXT_print() 120 X509V3_EXT_val_prn(out, nval, indent, in X509V3_EXT_print() [all …]
|
| /third_party/openssl/ssl/ |
| D | t1_trce.c | 24 # define ssl_trace_list(bio, indent, msg, msglen, value, table) \ argument 25 do_ssl_trace_list(bio, indent, msg, msglen, value, \ 40 static int do_ssl_trace_list(BIO *bio, int indent, in do_ssl_trace_list() argument 52 BIO_indent(bio, indent, 80); in do_ssl_trace_list() 600 static void ssl_print_hex(BIO *bio, int indent, const char *name, in ssl_print_hex() argument 605 BIO_indent(bio, indent, 80); in ssl_print_hex() 612 static int ssl_print_hexbuf(BIO *bio, int indent, const char *name, size_t nlen, in ssl_print_hexbuf() argument 626 ssl_print_hex(bio, indent, name, p, blen); in ssl_print_hexbuf() 632 static int ssl_print_version(BIO *bio, int indent, const char *name, in ssl_print_version() argument 643 BIO_indent(bio, indent, 80); in ssl_print_version() [all …]
|
| /third_party/gstreamer/gstreamer/tools/ |
| D | gst-indent | 3 for execname in gnuindent gindent indent; do 6 INDENT=$execname 11 if test -z $INDENT; then 13 echo "Did not find GNU indent, please install it before continuing." 17 case `$INDENT --version` in 21 echo "Did not find GNU indent, please install it before continuing." 22 echo "(Found $INDENT, but it doesn't seem to be GNU indent)" 27 # Run twice. GNU indent isn't idempotent 30 $INDENT \ 42 --indent-level2 \
|
| /third_party/gn/src/gn/ |
| D | output_conversion.cc | 20 void Indent(int indent, std::ostream& out) { in Indent() function 21 for (int i = 0; i < indent; ++i) in Indent() 26 void RenderScopeToJSON(const Value& output, std::ostream& out, int indent); 28 void RenderListToJSON(const Value& output, std::ostream& out, int indent) { in RenderListToJSON() argument 29 assert(indent > 0); in RenderListToJSON() 35 Indent(indent, out); in RenderListToJSON() 37 RenderScopeToJSON(value, out, indent + 1); in RenderListToJSON() 39 RenderListToJSON(value, out, indent + 1); in RenderListToJSON() 45 Indent(indent - 1, out); in RenderListToJSON() 49 void RenderScopeToJSON(const Value& output, std::ostream& out, int indent) { in RenderScopeToJSON() argument [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
| D | NativeTypeUDT.cpp | 37 void NativeTypeUDT::dump(raw_ostream &OS, int Indent, in dump() argument 41 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump() 43 dumpSymbolField(OS, "name", getName(), Indent); in dump() 44 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump() 48 dumpSymbolIdField(OS, "unmodifiedTypeId", getUnmodifiedTypeId(), Indent, in dump() 53 Indent); in dump() 54 dumpSymbolField(OS, "length", getLength(), Indent); in dump() 55 dumpSymbolField(OS, "udtKind", getUdtKind(), Indent); in dump() 56 dumpSymbolField(OS, "constructor", hasConstructor(), Indent); in dump() 57 dumpSymbolField(OS, "constType", isConstType(), Indent); in dump() [all …]
|
| /third_party/openssl/crypto/ct/ |
| D | ct_prn.c | 70 void SCT_print(const SCT *sct, BIO *out, int indent, in SCT_print() argument 80 BIO_printf(out, "%*sSigned Certificate Timestamp:", indent, ""); in SCT_print() 81 BIO_printf(out, "\n%*sVersion : ", indent + 4, ""); in SCT_print() 84 BIO_printf(out, "unknown\n%*s", indent + 16, ""); in SCT_print() 85 BIO_hex_string(out, indent + 16, 16, sct->sct, sct->sct_len); in SCT_print() 92 BIO_printf(out, "\n%*sLog : %s", indent + 4, "", in SCT_print() 96 BIO_printf(out, "\n%*sLog ID : ", indent + 4, ""); in SCT_print() 97 BIO_hex_string(out, indent + 16, 16, sct->log_id, sct->log_id_len); in SCT_print() 99 BIO_printf(out, "\n%*sTimestamp : ", indent + 4, ""); in SCT_print() 102 BIO_printf(out, "\n%*sExtensions: ", indent + 4, ""); in SCT_print() [all …]
|