/external/boringssl/src/crypto/evp/ |
p_dsa_asn1.c | 435 static int dsa_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, 437 return do_dsa_print(bp, pkey->pkey.dsa, indent, 0); 440 static int dsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, 442 return do_dsa_print(bp, pkey->pkey.dsa, indent, 1); 445 static int dsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, 447 return do_dsa_print(bp, pkey->pkey.dsa, indent, 2); 467 const ASN1_STRING *sig, int indent, ASN1_PCTX *pctx) { 478 return X509_signature_dump(bp, sig, indent); 494 !ASN1_bn_print(bp, "r: ", dsa_sig->r, m, indent) || 495 !ASN1_bn_print(bp, "s: ", dsa_sig->s, m, indent)) { [all...] |
/external/bzip2/ |
bz-fo.xsl | 8 <!-- set indent = yes while debugging, then change to NO --> 9 <xsl:output method="xml" indent="yes"/> 39 <fo:block start-indent="0.25in" wrap-option="no-wrap" 49 <fo:block start-indent="0.25in" wrap-option="no-wrap" 68 <fo:list-item-label end-indent="label-end()"> 77 <fo:list-item-body start-indent="body-start()"> 101 <fo:list-item-label end-indent="label-end()"> 106 <fo:list-item-body start-indent="body-start()"> 135 <fo:block start-indent="0.5in" end-indent="0in" [all...] |
/external/emma/core/java12/com/vladium/emma/report/xml/ |
ReportGenerator.java | 268 indent (); method 274 indent (); method 280 indent (); method 285 IndentingWriter (final Writer out, final int buffer, final int indent) 288 m_indent = indent; 307 if (delta > m_indent) throw new IllegalArgumentException ("delta = " + delta + ", current indent = " + m_indent); 340 private void indent () method in class:ReportGenerator.IndentingWriter 345 final String indent = getIndent (); local 346 super.write (indent, 0, indent.length ()) [all...] |
/frameworks/base/core/java/android/util/ |
JsonWriter.java | 134 private String indent; field in class:JsonWriter 157 * in the encoded document. If {@code indent.isEmpty()} the encoded document 161 * @param indent a string containing only whitespace. 163 public void setIndent(String indent) { 164 if (indent.isEmpty()) { 165 this.indent = null; 168 this.indent = indent; 462 if (indent == null) { 468 out.write(indent); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
NotificationData.java | 419 public void dump(PrintWriter pw, String indent) { 421 pw.print(indent); 426 dumpEntry(pw, indent, active, e); 430 pw.print(indent); 436 dumpEntry(pw, indent, inactiveCount, entry); 443 private void dumpEntry(PrintWriter pw, String indent, int i, Entry e) { 445 pw.print(indent); 448 pw.print(indent); 451 pw.print(indent); 453 pw.print(indent); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/json/ |
encoder.py | 103 indent=None, separators=None, encoding='utf-8', default=None): 131 If indent is a non-negative integer, then JSON array 133 indent level. An indent level of 0 will only insert newlines. 136 whitespace when indent is specified. You can use 158 self.indent = indent 260 and self.indent is None and not self.sort_keys): 262 markers, self.default, _encoder, self.indent, 267 markers, self.default, _encoder, self.indent, floatstr [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
tabnanny.py | 62 Raised by tokeneater() if detecting an ambiguous indent. 274 INDENT = tokenize.INDENT 285 # (NL | COMMENT)* (INDENT | DEDENT+)? 286 # If an INDENT appears, setting check_equal is wrong, and will 287 # be undone when we see the INDENT. 290 elif type == INDENT: 295 msg = "indent not greater e.g. " + format_witnesses(witness) 308 # assert check_equal # else no earlier NEWLINE, or an earlier INDENT 324 msg = "indent not equal e.g. " + format_witnesses(witness [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/json/ |
encoder.py | 103 indent=None, separators=None, encoding='utf-8', default=None): 131 If indent is a non-negative integer, then JSON array 133 indent level. An indent level of 0 will only insert newlines. 136 whitespace when indent is specified. You can use 158 self.indent = indent 260 and self.indent is None and not self.sort_keys): 262 markers, self.default, _encoder, self.indent, 267 markers, self.default, _encoder, self.indent, floatstr [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
tabnanny.py | 62 Raised by tokeneater() if detecting an ambiguous indent. 274 INDENT = tokenize.INDENT 285 # (NL | COMMENT)* (INDENT | DEDENT+)? 286 # If an INDENT appears, setting check_equal is wrong, and will 287 # be undone when we see the INDENT. 290 elif type == INDENT: 295 msg = "indent not greater e.g. " + format_witnesses(witness) 308 # assert check_equal # else no earlier NEWLINE, or an earlier INDENT 324 msg = "indent not equal e.g. " + format_witnesses(witness [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
encoder.py | 103 indent=None, separators=None, encoding='utf-8', default=None): 131 If indent is a non-negative integer, then JSON array 133 indent level. An indent level of 0 will only insert newlines. 136 whitespace when indent is specified. You can use 158 self.indent = indent 260 and self.indent is None and not self.sort_keys): 262 markers, self.default, _encoder, self.indent, 267 markers, self.default, _encoder, self.indent, floatstr [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tabnanny.py | 62 Raised by tokeneater() if detecting an ambiguous indent. 274 INDENT = tokenize.INDENT 285 # (NL | COMMENT)* (INDENT | DEDENT+)? 286 # If an INDENT appears, setting check_equal is wrong, and will 287 # be undone when we see the INDENT. 290 elif type == INDENT: 295 msg = "indent not greater e.g. " + format_witnesses(witness) 308 # assert check_equal # else no earlier NEWLINE, or an earlier INDENT 324 msg = "indent not equal e.g. " + format_witnesses(witness [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
encoder.py | 103 indent=None, separators=None, encoding='utf-8', default=None): 131 If indent is a non-negative integer, then JSON array 133 indent level. An indent level of 0 will only insert newlines. 136 whitespace when indent is specified. You can use 158 self.indent = indent 260 and self.indent is None and not self.sort_keys): 262 markers, self.default, _encoder, self.indent, 267 markers, self.default, _encoder, self.indent, floatstr [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tabnanny.py | 62 Raised by tokeneater() if detecting an ambiguous indent. 274 INDENT = tokenize.INDENT 285 # (NL | COMMENT)* (INDENT | DEDENT+)? 286 # If an INDENT appears, setting check_equal is wrong, and will 287 # be undone when we see the INDENT. 290 elif type == INDENT: 295 msg = "indent not greater e.g. " + format_witnesses(witness) 308 # assert check_equal # else no earlier NEWLINE, or an earlier INDENT 324 msg = "indent not equal e.g. " + format_witnesses(witness [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
BaseDumper.java | 60 private int indent; field in class:BaseDumper 88 this.indent = 0; 115 indent += indentDelta; 118 for (int i = 0; i < indent; i++) { 251 return width - w1 - (indent * 2);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
core-extensions.rb | 29 # Indent left or right by n spaces. 30 # (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/boringssl/src/crypto/bio/ |
hexdump.c | 69 unsigned indent; member in struct:hexdump_ctx 101 BIO_indent(ctx->bio, ctx->indent, UINT_MAX); 181 int BIO_hexdump(BIO *bio, const uint8_t *data, size_t len, unsigned indent) { 185 ctx.indent = indent;
|
/external/boringssl/src/crypto/x509v3/ |
v3_pci.c | 48 BIO *out, int indent); 63 BIO *out, int indent) 65 BIO_printf(out, "%*sPath Length Constraint: ", indent, ""); 71 BIO_printf(out, "%*sPolicy Language: ", indent, ""); 75 BIO_printf(out, "%*sPolicy Text: %s\n", indent, "",
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
ProgramCache.cpp | 36 static Formatter& indent(Formatter& f); 43 friend Formatter& indent(Formatter& f); 67 Formatter& indent(Formatter& f) { function in namespace:android 145 << "void main(void) {" << indent local 178 fs << "void main(void) {" << indent; local
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 8 For one-liner classes ('class X: pass') there is no indent/dedent so 124 """ If an INDENT is followed by a thing with a prefix then nuke the prefix 128 # find the first indent 131 if node.type == token.INDENT: 223 (suite.children[-2].type == token.INDENT and
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 8 For one-liner classes ('class X: pass') there is no indent/dedent so 124 """ If an INDENT is followed by a thing with a prefix then nuke the prefix 128 # find the first indent 131 if node.type == token.INDENT: 223 (suite.children[-2].type == token.INDENT and
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 8 For one-liner classes ('class X: pass') there is no indent/dedent so 124 """ If an INDENT is followed by a thing with a prefix then nuke the prefix 128 # find the first indent 131 if node.type == token.INDENT: 223 (suite.children[-2].type == token.INDENT and
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 8 For one-liner classes ('class X: pass') there is no indent/dedent so 124 """ If an INDENT is followed by a thing with a prefix then nuke the prefix 128 # find the first indent 131 if node.type == token.INDENT: 223 (suite.children[-2].type == token.INDENT and
|
/external/mesa3d/src/mapi/mapi/ |
mapi_abi.py | 297 self.indent = ' ' * 3 353 pre = self.indent + '(mapi_proc) ' 369 return self.indent + self.indent.join(specv1) 439 stmt1 = self.indent 442 stmt2 = self.indent 445 stmt3 = self.indent 464 name = '%s(mapi_func) %s' % (self.indent, 484 pool_str = self.indent + '"' + \ 485 ('\\0"\n' + self.indent + '"').join(pool) + '"; [all...] |
/external/mesa3d/src/gallium/auxiliary/rtasm/ |
rtasm_ppc.c | 61 p->indent = 0; 124 p->indent += spaces; 129 indent(const struct ppc_function *p) function 132 for (i = 0; i < p->indent; i++) { 142 p->indent += rel_indent; 143 indent(p); 144 p->indent -= rel_indent; 311 indent(p); 345 indent(p); 376 indent(p) [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/debug/ |
fsdiff.py | 73 t = ' %s' % _space_prefix(last, path, indent=4, 292 def _space_prefix(pref, full, sep=None, indent=None, include_sep=True): 308 if indent is None: 311 padding.append(' ' * indent) 334 t = _space_prefix(last, path, indent=4, include_sep=False) 340 desc = indent(cur_indent+2, desc) 394 def indent(indent, text): function 396 [' '*indent + l for l in text.splitlines()])
|