/external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
dsa_ameth.c | 508 static int dsa_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, 511 return do_dsa_print(bp, pkey->pkey.dsa, indent, 0); 514 static int dsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, 517 return do_dsa_print(bp, pkey->pkey.dsa, indent, 1); 521 static int dsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, 524 return do_dsa_print(bp, pkey->pkey.dsa, indent, 2); 547 int indent, ASN1_PCTX *pctx) 577 if (!ASN1_bn_print(bp,"r: ",dsa_sig->r,m,indent)) 579 if (!ASN1_bn_print(bp,"s: ",dsa_sig->s,m,indent)) 588 return X509_signature_dump(bp, sig, indent); [all...] |
/external/openssl/crypto/dsa/ |
dsa_ameth.c | 508 static int dsa_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, 511 return do_dsa_print(bp, pkey->pkey.dsa, indent, 0); 514 static int dsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, 517 return do_dsa_print(bp, pkey->pkey.dsa, indent, 1); 521 static int dsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, 524 return do_dsa_print(bp, pkey->pkey.dsa, indent, 2); 547 int indent, ASN1_PCTX *pctx) 577 if (!ASN1_bn_print(bp,"r: ",dsa_sig->r,m,indent)) 579 if (!ASN1_bn_print(bp,"s: ",dsa_sig->s,m,indent)) 588 return X509_signature_dump(bp, sig, indent); [all...] |
/external/deqp/framework/opengl/ |
gluVarType.cpp | 349 std::ostream& operator<< (std::ostream& str, const Indent& indent) 351 for (int i = 0; i < indent.level; i++) 410 str << "\n" << indent(decl.indentLevel) << "{\n"; 414 str << indent(decl.indentLevel+1); 418 str << indent(decl.indentLevel) << "}";
|
/external/jsoncpp/src/test_lib_json/ |
jsontest.cpp | 199 std::string indent( failure.nestingLevel_ * 2, ' ' ); 202 printf( "%s%s(%d): ", indent.c_str(), failure.file_, failure.line_ ); 214 std::string reindented = indentText( failure.message_, indent + " " ); 223 const std::string &indent ) 234 reindented += indent;
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
SIPHeaderList.java | 328 String indent = new Indentation(indentation).getIndentation(); local 331 sprint(indent + className); 332 sprint(indent + "{"); 336 sprint(indent + sipHeader.debugDump()); 338 sprint(indent + "}");
|
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/libxml/src/ |
xmlwriter.c | 88 int indent; /* enable indent */ member in struct:_xmlTextWriter 89 int doindent; /* internal indent flag */ 90 xmlChar *ichar; /* indent character */ 258 ret->indent = 0; 702 if (!writer->indent) { 755 if (writer->indent) { 783 if (writer->indent) { 843 if (writer->indent) { 991 if (writer->indent) [all...] |
/external/libxml2/ |
xmlwriter.c | 92 int indent; /* enable indent */ member in struct:_xmlTextWriter 93 int doindent; /* internal indent flag */ 94 xmlChar *ichar; /* indent character */ 262 ret->indent = 0; 706 if (!writer->indent) { 759 if (writer->indent) { 787 if (writer->indent) { 847 if (writer->indent) { 995 if (writer->indent) [all...] |
/frameworks/av/media/libstagefright/foundation/ |
AMessage.cpp | 407 static void appendIndent(AString *s, int32_t indent) { 412 CHECK_LT((size_t)indent, sizeof(kWhitespace)); 414 s->append(kWhitespace, indent); 424 AString AMessage::debugString(int32_t indent) const { 490 hexdump(buffer->data(), buffer->size(), indent + 4, &tmp); 491 appendIndent(&tmp, indent + 2); 505 indent + strlen(item.mName) + 14).c_str()); 520 appendIndent(&s, indent); 526 appendIndent(&s, indent);
|
/libcore/luni/src/main/java/java/util/prefs/ |
XMLParser.java | 99 * specify the indent level 101 private static int indent = -1; field in class:XMLParser 149 indent = -1; 238 flushIndent(indent--, out); 247 flushIndent(++indent, out); 252 indent--; 257 flushIndent(++indent, out); 263 indent--; 286 flushIndent(++indent, out); 296 flushIndent(++indent, out) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
__init__.py | 41 ... indent=4, separators=(',', ': ')) 116 indent=None, variable 123 allow_nan=True, cls=None, indent=None, separators=None, 150 If ``indent`` is a non-negative integer, then JSON array elements and 151 object members will be pretty-printed with that indent level. An indent 154 output might include trailing whitespace when ``indent`` is specified. 177 cls is None and indent is None and separators is None and 184 check_circular=check_circular, allow_nan=allow_nan, indent=indent, [all...] |
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/json/ |
__init__.py | 41 ... indent=4, separators=(',', ': ')) 116 indent=None, variable 123 allow_nan=True, cls=None, indent=None, separators=None, 150 If ``indent`` is a non-negative integer, then JSON array elements and 151 object members will be pretty-printed with that indent level. An indent 154 output might include trailing whitespace when ``indent`` is specified. 177 cls is None and indent is None and separators is None and 184 check_circular=check_circular, allow_nan=allow_nan, indent=indent, [all...] |
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...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
prog_print.c | 681 GLint indent, 691 indent -= 3; 693 for (i = 0; i < indent; i++) { 806 return indent + 3; 809 return indent + 3; 815 return indent + 3; 832 return indent; 837 return indent + 3; 897 return indent; 903 GLint indent, 929 GLuint i, indent = 0; local [all...] |
/external/mesa3d/src/mesa/program/ |
prog_print.c | 681 GLint indent, 691 indent -= 3; 693 for (i = 0; i < indent; i++) { 806 return indent + 3; 809 return indent + 3; 815 return indent + 3; 832 return indent; 837 return indent + 3; 897 return indent; 903 GLint indent, 929 GLuint i, indent = 0; local [all...] |
/frameworks/base/services/core/java/com/android/server/media/ |
MediaSessionRecord.java | 439 final String indent = prefix + " "; local 440 pw.println(indent + "ownerPid=" + mOwnerPid + ", ownerUid=" + mOwnerUid 442 pw.println(indent + "package=" + mPackageName); 443 pw.println(indent + "launchIntent=" + mLaunchIntent); 444 pw.println(indent + "mediaButtonReceiver=" + mMediaButtonReceiver); 445 pw.println(indent + "active=" + mIsActive); 446 pw.println(indent + "flags=" + mFlags); 447 pw.println(indent + "rating type=" + mRatingType); 448 pw.println(indent + "controllers: " + mControllerCallbacks.size()); 449 pw.println(indent + "state=" + (mPlaybackState == null ? null : mPlaybackState.toString())) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ec/ |
ec_ameth.c | 540 static int eckey_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, 543 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 0); 546 static int eckey_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, 549 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 1); 553 static int eckey_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, 556 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 2);
|
/external/openssl/crypto/ec/ |
ec_ameth.c | 541 static int eckey_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, 544 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 0); 547 static int eckey_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, 550 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 1); 554 static int eckey_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, 557 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 2);
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-artifactcomparator/0.20.0/ |
tycho-artifactcomparator-0.20.0.jar | |
/prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.0/ |
javawriter-2.5.0.jar | |
/external/llvm/utils/TableGen/ |
AsmWriterEmitter.cpp | 675 O.indent(6) << "return true;\n"; 685 O.indent(8); 692 O.indent(6) << "// " << Result << "\n"; 723 O.indent(6) << "AsmString = \"" << OutString.str() << "\";\n"; 725 O.indent(6) << "break;\n"; 726 O.indent(4) << '}'; [all...] |
/external/blktrace/btt/ |
trace_complete.c | 24 __u64 sec, __u32 nsec, int indent) 27 if (indent)
|
/external/chromium_org/content/browser/accessibility/ |
accessibility_tree_formatter_android.cc | 119 const base::string16& indent) { 153 return indent + line + base::ASCIIToUTF16("\n");
|