/frameworks/base/core/java/android/net/ |
D | Uri.java | 1828 StringBuilder encoded = null; in encode() local 1853 encoded.append(s, current, oldLength); in encode() 1854 return encoded.toString(); in encode() 1858 if (encoded == null) { in encode() 1859 encoded = new StringBuilder(); in encode() 1864 encoded.append(s, current, nextToEncode); in encode() 1886 encoded.append('%'); in encode() 1887 encoded.append(HEX_DIGITS[(bytes[i] & 0xf0) >> 4]); in encode() 1888 encoded.append(HEX_DIGITS[bytes[i] & 0xf]); in encode() 1898 return encoded == null ? s : encoded.toString(); in encode() [all …]
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | Base64Test.java | 322 byte[] encoded = Base64.encode(plain, flags); in testInputStream() 333 bais = new ByteArrayInputStream(encoded); in testInputStream() 342 bais = new ByteArrayInputStream(encoded); in testInputStream() 351 bais = new ByteArrayInputStream(encoded); in testInputStream() 378 assertEquals(actual, ap, encoded); in testInputStream() 387 assertEquals(actual, ap, encoded); in testInputStream() 406 assertEquals(actual, ap, encoded); in testInputStream() 437 byte[] encoded = Base64.encode(plain, flags); in testOutputStream() 452 assertEquals(encoded, actual); in testOutputStream() 462 assertEquals(encoded, actual); in testOutputStream() [all …]
|
/frameworks/base/core/java/android/content/pm/ |
D | VerifierDeviceIdentity.java | 110 final char encoded[] = new char[LONG_SIZE + (LONG_SIZE / GROUP_SIZE)]; in encodeBase32() local 112 int index = encoded.length; in encodeBase32() 121 encoded[--index] = SEPARATOR; in encodeBase32() 130 encoded[--index] = alphabet[group]; in encodeBase32() 133 return String.valueOf(encoded); in encodeBase32()
|
D | PackageParser.java | 3247 final byte[] encoded = Base64.decode(encodedPublicKey, Base64.DEFAULT); in parsePublicKey() 3248 keySpec = new X509EncodedKeySpec(encoded); in parsePublicKey()
|
/frameworks/native/opengl/libs/ETC1/ |
D | etc1.cpp | 521 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; in etc1_encode_image() local 553 etc1_encode_block(block, mask, encoded); in etc1_encode_image() 554 memcpy(pOut, encoded, sizeof(encoded)); in etc1_encode_image() 555 pOut += sizeof(encoded); in etc1_encode_image()
|
/frameworks/av/media/libstagefright/include/ |
D | ID3.h | 93 static bool ParseSyncsafeInteger(const uint8_t encoded[4], size_t *x);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/updates/ |
D | CertPinInstallReceiverTest.java | 129 byte[] encoded = content.getBytes(); in getCurrentHash() 130 byte[] fingerprint = dgst.digest(encoded); in getCurrentHash()
|
/frameworks/base/keystore/java/android/security/ |
D | AndroidKeyStore.java | 360 final byte[] encoded; in engineSetCertificateEntry() 362 encoded = cert.getEncoded(); in engineSetCertificateEntry() 367 if (!mKeyStore.put(Credentials.CA_CERTIFICATE + alias, encoded, in engineSetCertificateEntry()
|
/frameworks/av/media/libstagefright/id3/ |
D | ID3.cpp | 105 bool ID3::ParseSyncsafeInteger(const uint8_t encoded[4], size_t *x) { in ParseSyncsafeInteger() 108 if (encoded[i] & 0x80) { in ParseSyncsafeInteger() 112 *x = ((*x) << 7) | encoded[i]; in ParseSyncsafeInteger()
|
/frameworks/base/docs/html/tools/help/ |
D | etc1tool.jd | 55 <td>Write the difference between the original and encoded image to
|
/frameworks/base/tests/AccessoryDisplay/ |
D | README | 19 The sink application decodes encoded video from the source and
|
/frameworks/base/core/tests/coretests/src/android/net/ |
D | UriTest.java | 234 String encoded = Uri.encode("Bob:/", "/"); in testEncodeWithAllowedChars() local 235 assertEquals(-1, encoded.indexOf(':')); in testEncodeWithAllowedChars() 236 assertTrue(encoded.indexOf('/') > -1); in testEncodeWithAllowedChars()
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardParserImpl_V21.java | 718 String encoded = VCardUtils.parseQuotedPrintable(quotedPrintableValue, 720 encodedValueList.add(encoded);
|
D | VCardBuilder.java | 2045 final String encoded = (VCardConfig.isVersion40(mVCardType) ? in appendTypeParameters() local 2048 if (TextUtils.isEmpty(encoded)) { in appendTypeParameters() 2057 appendTypeParameter(encoded); in appendTypeParameters()
|
/frameworks/base/docs/html/training/in-app-billing/ |
D | purchase-iab-products.jd | 45 …SKU_GAS}, using an arbitrary value of 10001 for the request code, and an encoded developer payload…
|
/frameworks/base/docs/html/google/play/billing/ |
D | billing_integrate.jd | 378 <p>The Base64-encoded RSA public key generated by Google Play is in binary 379 encoded, X.509 subjectPublicKeyInfo DER SEQUENCE format. It is the same public
|
/frameworks/base/docs/html/training/cloudsync/ |
D | gcm.jd | 152 <p>For instance, short messages or encoded player moves
|
/frameworks/base/docs/html/google/gcm/ |
D | ccs.jd | 66 …ments or failure notifications (in the form of special ACK and NACK JSON-encoded XMPP messages) as…
|
/frameworks/base/docs/html/guide/topics/media/ |
D | mediaplayer.jd | 122 be raw audio. It should be a properly encoded and formatted media file in one
|
/frameworks/base/docs/html/guide/topics/search/ |
D | adding-custom-suggestions.jd | 202 <p>The query text on the end is encoded using URI encoding rules, so you might need to decode
|
/frameworks/base/docs/html/guide/topics/media/jet/ |
D | jetcreator_manual.jd | 1027 the JET_TriggerClip API call. The clip ID is encoded in the low 6 bits of the
|
/frameworks/base/docs/html/guide/topics/connectivity/nfc/ |
D | nfc.jd | 187 <td>URI based on the URN in the type field. The URN is encoded into the NDEF type field in
|
/frameworks/base/docs/html/google/play/billing/v2/ |
D | billing_integrate.jd | 1046 following procedure shows you how to retrieve Base64-encoded public key from the Google Play
|
/frameworks/base/docs/html/google/play/ |
D | expansion-files.jd | 573 <dd>This must return a string that is the Base64-encoded RSA public key for your publisher
|