/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;
|
/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/org/apache/harmony/security/asn1/ |
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.
|
/external/chromium_org/content/common/ |
page_state_serialization_unittest.cc | 213 std::string encoded; local 214 EXPECT_TRUE(base::Base64Decode(trimmed_contents, &encoded)); 223 encoded, 227 EXPECT_TRUE(DecodePageState(encoded, &output)); 240 std::string encoded; local 241 EXPECT_TRUE(EncodePageState(input, &encoded)); 244 EXPECT_TRUE(DecodePageState(encoded, &output)); 253 std::string encoded; local 254 EXPECT_TRUE(EncodePageState(input, &encoded)); 257 EXPECT_TRUE(DecodePageState(encoded, &output)) 267 std::string encoded; local 287 std::string encoded; local 312 std::string encoded; local 372 std::string encoded; local [all...] |
websocket.h | 25 // All string data should be encoded to ASCII in the browser process. 39 // All string data should be encoded to ASCII in the browser process.
|
/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...] |
/external/chromium_org/courgette/ |
assembly_program.cc | 28 REL32, // REL32 <label> - emit a rel32 encoded reference to 'label'. 29 ABS32, // REL32 <label> - emit am abs32 encoded reference to 'label'. 390 scoped_ptr<EncodedProgram> encoded(new(std::nothrow) EncodedProgram()); 391 if (!encoded.get()) 394 encoded->set_image_base(image_base_); 396 if (!DefineLabels(abs32_labels_, encoded.get(), 398 !DefineLabels(rel32_labels_, encoded.get(), 403 encoded->EndLabels(); 411 if (!encoded->AddOrigin(org->origin_rva())) 417 if (!encoded->AddCopy(1, &b) 574 EncodedProgram *encoded = program->Encode(); local [all...] |
/cts/tools/dex-tools/src/dex/structure/ |
DexEncodedValue.java | 20 * {@code DexEncodedValue} represents an encoded value. The value of a {@code 21 * DexAnnotationValue} is encoded as {@code DexEncodedValue}.
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
BerInputStreamTest.java | 73 // length = 0xFFFFFF (encoded length has extra byte) 116 encoding[1] = (byte) 0x82; // length is encoded in two bytes 134 byte[] encoded = new byte[] { 0x01, 0x01, 0x03, // boolean bytes 140 BerInputStream in = new BerInputStream(encoded, 0, 3); 144 in = new BerInputStream(encoded, 3, 4); 148 in = new BerInputStream(encoded, 7, 2); 153 new BerInputStream(encoded, 3, 5); 161 new BerInputStream(encoded, 3, 3);
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
PrivateKeyUsagePeriodTest.java | 40 byte[] encoded = pkup.getEncoded(); 43 .decode(encoded);
|
/external/apache-http/src/org/apache/commons/codec/ |
Encoder.java | 31 * Encodes an "Object" and returns the encoded content 37 * @return An "encoded" Object
|
/external/apache-http/src/org/apache/commons/codec/language/ |
SoundexUtils.java | 59 * encoded Strings that are the same. 70 * A String that will be encoded and compared. 72 * A String that will be encoded and compared. 73 * @return The number of characters in the two Soundex encoded Strings that 88 * Returns the number of characters in the two Soundex encoded Strings that 98 * An encoded String. 100 * An encoded String. 101 * @return The number of characters in the two Soundex encoded Strings that
|
/external/apache-http/src/org/apache/commons/codec/net/ |
RFC1522Codec.java | 49 * given charset. This method constructs the "encoded-word" header common to all the 56 * @return RFC 1522 compliant "encoded-word" 85 * processes the "encoded-word" header common to all the RFC 1522 codecs and then invokes 92 * @throws UnsupportedEncodingException thrown if charset specified in the "encoded-word" 102 throw new DecoderException("RFC 1522 violation: malformed encoded content"); 122 encoding + " encoded content"); 141 * @param bytes Data to be encoded 143 * @return A byte array containing the encoded data
|
/external/chromium_org/chrome/common/extensions/api/ |
wallpaper.json | 26 "description": "The jpeg or png encoded wallpaper image." 57 "description": "The jpeg encoded wallpaper thumbnail. It is generated by resizing the wallpaper to 128x60."
|
/external/chromium_org/chromeos/cryptohome/ |
system_salt_getter.h | 31 // Converts |salt| to a hex encoded string. 34 // Returns system hash in hex encoded ascii format. Note: this may return
|
/external/chromium_org/content/browser/speech/ |
audio_encoder.h | 38 // Finish encoding and flush any pending encoded bits out. 41 // Merges, retrieves and clears all the accumulated encoded audio chunks.
|
/external/chromium_org/content/public/common/ |
bindings_policy.h | 13 // HTML-based UI bindings that allows the JS content to send JSON-encoded 16 // DOM automation bindings that allows the JS content to send JSON-encoded
|
/external/chromium_org/mojo/apps/js/bindings/gl/ |
context.h | 31 static gin::Handle<Context> Create(v8::Isolate* isolate, uint64_t encoded, 43 Context(uint64_t encoded, int width, int height);
|
module.cc | 27 gin::Handle<Context> CreateContext(const gin::Arguments& args, uint64_t encoded, 29 return Context::Create(args.isolate(), encoded, width, height);
|
/external/chromium_org/mojo/gles2/ |
gles2_impl.cc | 31 void GLES2Impl::MakeCurrent(uint64_t encoded) { 39 static_cast<uintptr_t>(encoded));
|
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/ |
RandomizedInvalidationClientNameGenerator.java | 35 String encoded = Base64.encodeToString(randomBytes, 0, randomBytes.length, Base64.NO_WRAP); local 36 String idString = "BadID" + encoded;
|
/external/chromium_org/third_party/opus/src/celt/ |
entdec.h | 45 encoded with. 46 Return: A cumulative frequency representing the encoded symbol. 48 was encoded was fl, and the cumulative frequency of all the symbols 49 up to and including the one encoded is fh, then the returned value 57 symbol was encoded with. 67 was encoded in. 85 The bits must have been encoded with ec_enc_uint(). 93 The bits must have been encoded with ec_enc_bits().
|