/external/chromium_org/content/common/ |
page_state_serialization.h | 74 CONTENT_EXPORT bool DecodePageState(const std::string& encoded, 77 std::string* encoded); 81 const std::string& encoded,
|
page_state_serialization_unittest.cc | 227 std::string encoded; local 228 EXPECT_TRUE(base::Base64Decode(trimmed_contents, &encoded)); 237 encoded, 241 EXPECT_TRUE(DecodePageState(encoded, &output)); 254 std::string encoded; local 255 EXPECT_TRUE(EncodePageState(input, &encoded)); 258 EXPECT_TRUE(DecodePageState(encoded, &output)); 267 std::string encoded; local 268 EXPECT_TRUE(EncodePageState(input, &encoded)); 271 EXPECT_TRUE(DecodePageState(encoded, &output)) 281 std::string encoded; local 301 std::string encoded; local 326 std::string encoded; local 386 std::string encoded; local [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1ValueCollection.java | 50 * Provides an object's values to be encoded 55 * @param - an object to be encoded 56 * @return - a collection of object's values to be encoded
|
ASN1TypeCollection.java | 75 * Provides an object's values to be encoded 82 * @param object an object to be encoded 83 * @param values an array to store an object's values to be encoded 86 throw new RuntimeException("ASN.1 type is not designed to be encoded: " + getClass().getName());
|
DerInputStream.java | 29 * Decodes ASN.1 types encoded with DER (X.690) 39 public DerInputStream(byte[] encoded) throws IOException { 40 super(encoded, 0, encoded.length); 43 public DerInputStream(byte[] encoded, int offset, int encodingLen) throws IOException { 44 super(encoded, offset, encodingLen); 83 // check encoded content 128 // It is a string type and it can be encoded as primitive or constructed. 144 // It is a string type and it can be encoded as primitive or constructed.
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
ExtensionValue.java | 27 /** Encoded form of the extension. */ 33 /** Creates the object on the base of its encoded form. */ 38 /** Returns encoded form of the object. */
|
/packages/apps/Nfc/etc/ |
sample_nfcee_access.xml | 14 SIGNATURE is a hex encoded X.509 certificate 15 See Debug section to generate hex encoded certificates. 42 hex encoded signature of applications that are denied NFCEE
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/ |
EncodedKeySpecTest.java | 54 /* Get encoded key */ 82 /* Get encoded key */ 99 /* Get encoded key */ 103 /* Get encoded key again */
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
DERT61String.java | 72 * basic constructor - string encoded as a sequence of bytes. 90 * Decode the encoded string and return it, 8 bit encoding assumed. 121 * Return the encoded string as a byte array. 122 * @return the actual bytes making up the encoded body of the T61 string.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
X509NameEntryConverter.java | 13 * encoded into their ASN.1 counterparts is rapidly approaching the 52 * Convert an inline encoded hex string rendition of an ASN.1 55 * @param str the hex encoded object 106 * encoded object.
|
/external/chromium/base/i18n/ |
icu_string_conversions.h | 49 std::string* encoded); 50 bool CodepageToUTF16(const std::string& encoded, 61 std::string* encoded); 62 bool CodepageToWide(const std::string& encoded,
|
/external/chromium/crypto/ |
signature_verifier.h | 39 // The signature algorithm is specified as a DER encoded ASN.1 45 // The signature is encoded according to the signature algorithm, but it 46 // must not be further encoded in an ASN.1 BIT STRING. 50 // The public key is specified as a DER encoded ASN.1 SubjectPublicKeyInfo
|
/external/chromium/third_party/libjingle/source/talk/base/ |
urlencode.h | 33 // Decode all encoded characters. Also decode + as space. 36 // Decode all encoded characters. 51 std::string UrlDecodeString(const std::string & encoded); 53 const std::string & encoded);
|
/external/chromium_org/chrome/common/importer/ |
imported_favicon_usage.h | 21 // The raw png-encoded data.
|
/external/chromium_org/third_party/icu/source/tools/genrb/ |
rle.h | 32 * Since an encoded run occupies 3 bytes, we only encode runs of 4 or 49 * Since an encoded run occupies 3 characters, we only encode runs of 4 or 60 * Construct an array of bytes from a run-length encoded string. 65 * Construct an array of shorts from a run-length encoded string.
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
urlencode.h | 33 // Decode all encoded characters. Also decode + as space. 36 // Decode all encoded characters. 51 std::string UrlDecodeString(const std::string & encoded); 53 const std::string & encoded);
|
/external/chromium_org/third_party/skia/include/lazy/ |
SkBitmapFactory.h | 19 * Factory for creating a bitmap from encoded data. 40 * Signature for a function to decode an image from encoded data. 59 * Sets up an SkBitmap from encoded data. On success, the SkBitmap will have its Config, 63 * @param SkData Encoded data.
|
/external/chromium_org/third_party/tlslite/tlslite/ |
X509.py | 12 @ivar bytes: The DER-encoded ASN.1 certificate 18 @ivar subject: The DER-encoded ASN.1 subject distinguished name. 27 """Parse a PEM-encoded X.509 certificate. 30 @param s: A PEM-encoded X.509 certificate (i.e. a base64-encoded 48 """Parse a DER-encoded X.509 certificate. 51 @param bytes: A DER-encoded X.509 certificate. 105 """Get the hex-encoded fingerprint of this certificate. 108 @return: A hex-encoded fingerprint.
|
/external/chromium_org/tools/grit/grit/ |
constants.py | 11 # input files are in the correct encoding. The middle character gets encoded
|
/external/icu4c/tools/genrb/ |
rle.h | 32 * Since an encoded run occupies 3 bytes, we only encode runs of 4 or 49 * Since an encoded run occupies 3 characters, we only encode runs of 4 or 60 * Construct an array of bytes from a run-length encoded string. 65 * Construct an array of shorts from a run-length encoded string.
|
/external/sfntly/cpp/src/test/ |
test_utils_test.cc | 41 int32_t encoded = TestUtils::EncodeOneChar(conv, (int16_t)from[i]); local 42 for (; encoded; encoded <<= 8) { 43 byte_t b = (encoded & 0xff000000) >> 24;
|
/external/skia/include/lazy/ |
SkBitmapFactory.h | 19 * Factory for creating a bitmap from encoded data. 40 * Signature for a function to decode an image from encoded data. 59 * Sets up an SkBitmap from encoded data. On success, the SkBitmap will have its Config, 63 * @param SkData Encoded data.
|
/libcore/luni/src/main/java/java/net/ |
URLDecoder.java | 25 * This class is used to decode a string which is encoded in the {@code 30 * Decodes the argument which is assumed to be encoded in the {@code 39 * the encoded string. 49 * Decodes the argument which is assumed to be encoded in the {@code
|
/libcore/luni/src/main/java/java/nio/charset/ |
Charsets.java | 27 * encoded in US-ASCII. Unrepresentable characters are replaced by (byte) '?'. 33 * encoded in ISO-8859-1. Unrepresentable characters are replaced by (byte) '?'. 39 * encoded in UTF-8. All characters are representable in UTF-8. 45 * encoded in UTF-16BE. All characters are representable in UTF-16BE.
|
/libcore/luni/src/main/java/javax/crypto/ |
EncryptedPrivateKeyInfo.java | 68 private volatile byte[] encoded; field in class:EncryptedPrivateKeyInfo 71 * Creates an {@code EncryptedPrivateKeyInfo} instance from its encoded 74 * @param encoded 75 * the encoded representation of this object 77 * if parsing the encoded representation fails. 79 * if {@code encoded} is {@code null}. 81 public EncryptedPrivateKeyInfo(byte[] encoded) throws IOException { 82 if (encoded == null) { 83 throw new NullPointerException("encoded == null"); 85 this.encoded = new byte[encoded.length] [all...] |