/external/chromium_org/chrome/browser/diagnostics/ |
diagnostics_writer.h | 36 // UTF8 encoded. A newline will be added for non-LOG output formats. 50 // UTF8 encoded, as they are user-facing strings.
|
/external/chromium_org/chrome/browser/net/ |
probe_message.h | 28 // Make an encoded packet (string) from a ProbePacket object. 33 // Parse the input string (which is an encoded packet) and save the result to
|
/external/chromium_org/courgette/ |
encoded_program_fuzz_unittest.cc | 47 courgette::EncodedProgram* encoded = NULL; local 49 const courgette::Status encode_status = Encode(program, &encoded); 55 const courgette::Status write_status = WriteEncodedProgram(encoded, &sinks); 58 DeleteEncodedProgram(encoded); 171 courgette::EncodedProgram *encoded = NULL; local 178 ReadEncodedProgram(&sources, &encoded); 181 const courgette::Status assemble_status = Assemble(encoded, &assembled); 195 DeleteEncodedProgram(encoded);
|
courgette.h | 116 // Converts |program| into encoded form, returning it as |*output|. 121 // Serializes |encoded| into the stream set. 123 Status WriteEncodedProgram(EncodedProgram* encoded, SinkStreamSet* sink); 125 // Assembles |encoded|, emitting the bytes into |buffer|. 128 Status Assemble(EncodedProgram* encoded, SinkStream* buffer); 139 void DeleteEncodedProgram(EncodedProgram* encoded);
|
/external/chromium_org/crypto/ |
ec_signature_creator.h | 46 // |signature| as a DER encoded ECDSA-Sig-Value from RFC 3279. 55 // DecodeSignature converts from a DER encoded ECDSA-Sig-Value (as produced
|
/external/chromium_org/mojo/apps/js/ |
main.js | 50 GLES2ClientImpl.prototype.didCreateContext = function(encoded, 54 var gl = new gljs.Context(encoded, width, height);
|
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/ |
cld_unicodetext.h | 15 // Detects a language of the UTF-16 encoded zero-terminated text. 18 // [in] text - UTF-16 encoded text to detect a language of.
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
RSA_SHA1.java | 48 * cases, the key must be PKCS#8-encoded (byte[]) or PKCS#8-encoded and 49 * then Base64-encoded (String). 62 * cases, the key must be X509-encoded (byte[]) or X509-encoded and 63 * then Base64-encoded (String). 76 * or byte[]. In the latter two cases, the certificate must be DER-encoded 77 * (byte[]) or PEM-encoded (String).
|
/external/oprofile/libop/ |
op_interface.h | 19 /*@{\name notifications types encoded in op_note::type */ 59 * Meanings of fields depend on the type of notification encoded in the type
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_internal-rsa.c | 47 /* Not PKCS#8, so try to import PKCS #1 encoded RSA private key */ 48 wpa_printf(MSG_DEBUG, "Trying to parse PKCS #1 encoded RSA private "
|
/frameworks/base/core/java/android/util/ |
JsonToken.java | 20 * A structure, name or value type in a JSON-encoded string. 78 * JsonReader#peek()} to signal that the JSON-encoded value has no more
|
/libcore/luni/src/main/java/java/security/ |
AlgorithmParameters.java | 204 * the encoded parameters. 207 * initialized, or the parameter could not be encoded. 222 * the encoded parameters. 227 * initialized, or the parameter could not be encoded. 263 * @return the encoded parameters. 266 * initialized, or if this parameters could not be encoded. 281 * @return the encoded parameters. 284 * initialized, or if this parameters could not be encoded.
|
/libcore/luni/src/main/java/java/security/cert/ |
Certificate.java | 82 // check that encoded forms match 102 byte[] encoded = getEncoded(); 104 for (int i=0; i<encoded.length; i++) { 105 hash += i*encoded[i]; 114 * Returns the encoded representation for this certificate. 116 * @return the encoded representation for this certificate. 224 * certificate type and encoded data. 229 * the encoded data.
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
InhibitAnyPolicy.java | 42 * Creates an object on the base of its encoded form. 51 * Returns ASN.1 encoded form of the object.
|
/libcore/luni/src/test/java/libcore/java/net/ |
UrlEncodingTest.java | 250 * Asserts that {@code original} encodes to {@code encoded} using both URI 253 private void assertEncoded(String encoded, String original) throws Exception { 254 assertEquals(encoded, URLEncoder.encode(original, "UTF-8")); 255 assertEquals(encoded, URLEncoder.encode(original)); 256 assertEquals(encoded, new URI("http", "foo", "/", original).getRawFragment()); 259 private void assertRoundTrip(String original, String encoded) throws Exception { 260 assertEquals(encoded, URLEncoder.encode(original, "UTF-8")); 261 assertEquals(original, URLDecoder.decode(encoded, "UTF-8"));
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
DebugInfoItem.java | 40 private byte[] encoded; field in class:DebugInfoItem 76 encoded = encode(addedTo.getFile(), null, null, null, false); 77 setWriteSize(encoded.length); 127 out.write(encoded); 140 * @return {@code non-null;} the encoded array 171 * @return {@code non-null;} the encoded array
|
/dalvik/dx/src/com/android/dx/dex/file/ |
DebugInfoItem.java | 37 private byte[] encoded; field in class:DebugInfoItem 73 encoded = encode(addedTo.getFile(), null, null, null, false); 74 setWriteSize(encoded.length); 124 out.write(encoded); 137 * @return {@code non-null;} the encoded array 168 * @return {@code non-null;} the encoded array
|
/external/apache-http/src/org/apache/commons/codec/language/ |
RefinedSoundex.java | 78 * Returns the number of characters in the two encoded Strings that are the 80 * encoded String: 0 indicates little or no similarity, and 4 out of 4 (for 85 * A String that will be encoded and compared. 87 * A String that will be encoded and compared. 88 * @return The number of characters in the two encoded Strings that are the 89 * same from 0 to to the length of the shortest encoded String.
|
/external/apache-http/src/org/apache/http/util/ |
EncodingUtils.java | 52 * @param data the byte array to be encoded 86 * @param data the byte array to be encoded 101 * @param data the string to be encoded 125 * @param data the string to be encoded 146 * @param data the byte array to be encoded 169 * @param data the byte array to be encoded
|
/external/chromium/chrome/browser/metrics/ |
metrics_service_unittest.cc | 72 (*it)->GetAsString(&str); // Base64 encoded "Hello world!" string. 73 std::string encoded; local 74 base::Base64Encode("Hello world!", &encoded); 75 EXPECT_TRUE(encoded == str); 78 (*it)->GetAsString(&str); // MD5 for encoded "Hello world!" string. 79 EXPECT_TRUE(MD5String(encoded) == str);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
DebugInfoItem.java | 38 private byte[] encoded; field in class:DebugInfoItem 74 encoded = encode(addedTo.getFile(), null, null, null, false); 75 setWriteSize(encoded.length); 125 out.write(encoded); 138 * @return {@code non-null;} the encoded array 169 * @return {@code non-null;} the encoded array
|
/external/smack/src/org/xbill/DNS/utils/ |
base64.java | 8 * Routines for converting between Strings of base64-encoded data and arrays of 22 * Convert binary data to a base64-encoded String 24 * @return A String containing the encoded data 62 * Formats data into a nicely formatted base64 encoded String 90 * Convert a base64-encoded String to binary data 91 * @param str A String containing the encoded data
|
/frameworks/base/core/tests/coretests/src/android/util/ |
Base64Test.java | 39 * gives the same string. Returns the encoded string. 322 byte[] encoded = Base64.encode(plain, flags); 330 // ----- test decoding ("encoded" -> "plain") ----- 333 bais = new ByteArrayInputStream(encoded); 342 bais = new ByteArrayInputStream(encoded); 351 bais = new ByteArrayInputStream(encoded); 369 // ----- test encoding ("plain" -> "encoded") ----- 378 assertEquals(actual, ap, encoded); 387 assertEquals(actual, ap, encoded); 406 assertEquals(actual, ap, encoded); [all...] |
/frameworks/base/opengl/java/android/opengl/ |
ETC1.java | 28 * followed by the encoded ETC1 texture data. 35 * Size in bytes of an encoded block. 84 * Return the size of the encoded image data (does not include size of PKM header). 92 * @param out a native order direct buffer of the encoded data. 93 * Must be large enough to store entire encoded image. 102 * @param in native order direct buffer of the encoded data.
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
Cache.java | 35 * the base of particular encoded form or not. If there are such 41 * prereading of the beginning of encoded form. This prefix is used to determine 48 * object generated from the encoded form with such prefix and we should 50 * we conduct the accurate search on the base of whole encoded form. <br> 55 * 1. With having of the beginning of the encoded form (prefix) 64 * already been generated on the base of this PARTICULAR encoded form or not. 68 * Note: The length of the prefixes of the encoded forms should not be 98 // This information includes: hash of the array, encoded form of the object, 129 * encoded form will be used for hash computation 144 * encoded form will be used for hash computatio [all...] |