HomeSort by relevance Sort by last modified time
    Searched refs:encoded (Results 151 - 175 of 414) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 20 `encoded-word' in a header. This method is commonly used for 8-bit real names
75 """Return the length of str when it is encoded with header quopri."""
86 """Return the length of str when it is encoded with body quopri."""
134 to 76 characters). If maxlinelen is None, the entire string is encoded in
152 # Quopri encode each line, in encoded chunks no greater than maxlinelen in
172 # Now add the RFC chrome to each encoded chunk and glue the chunks
188 Each line of encoded text will end with eol, which defaults to "\\n". Set
223 # quopri encoded. BAW: again, string concatenation is inefficient.
272 def decode(encoded, eol=NL):
277 if not encoded
    [all...]
utils.py 255 charset is given but not language, the string is encoded using the empty
279 # specifying whether a particular segment is %-encoded.
286 encoded = True
288 encoded = False
295 rfc2231_params.setdefault(name, []).append((num, value, encoded))
305 # %-encodings for the encoded segments. If any of the
309 for num, s, encoded in continuations:
310 if encoded:
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertBlacklist.java 211 byte[] encoded = publicKey.getEncoded();
213 digest.update(encoded, 0, encoded.length);
  /external/chromium_org/remoting/codec/
audio_encoder_opus_unittest.cc 19 // Maximum value that can be encoded in a 16-bit signed sample.
103 // Compares decoded signal with the test signal that was encoded. It estimates
140 scoped_ptr<AudioPacket> encoded = local
142 if (encoded.get()) {
143 scoped_ptr<AudioPacket> decoded = decoder_->Decode(encoded.Pass());
  /external/chromium_org/v8/test/mjsunit/regress/
regress-244.js 51 var encoded = kLegalPairs[i][1];
52 assertEquals(decodeURI(encoded), decoded);
53 assertEquals(encodeURI(decoded), encoded);
  /external/dexmaker/src/main/java/com/google/dexmaker/
DexMaker.java 432 EncodedMethod encoded = method.toEncodedMethod(dexOptions); local
434 out.addDirectMethod(encoded);
436 out.addVirtualMethod(encoded);
440 EncodedField encoded = field.toEncodedField(); local
442 out.addStaticField(encoded, Constants.getConstant(field.staticValue));
444 out.addInstanceField(encoded);
  /external/v8/test/mjsunit/regress/
regress-244.js 51 var encoded = kLegalPairs[i][1];
52 assertEquals(decodeURI(encoded), decoded);
53 assertEquals(encodeURI(decoded), encoded);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KSPrivateKeyEntryTest.java 52 byte[] encoded = {(byte)0, (byte)1, (byte)2, (byte)3};
57 .concat(s), encoded);
  /external/chromium_org/mojo/examples/sample_app/
gles2_client_impl.cc 71 void GLES2ClientImpl::DidCreateContext(uint64_t encoded,
74 MojoGLES2MakeCurrent(encoded);
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
FileCheckerCallable.java 48 byte[] encoded = Files.readAllBytes(FileSystems.getDefault().getPath(fileName));
49 String text = StandardCharsets.UTF_8.decode(ByteBuffer.wrap(encoded)).toString();
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
ISACHist.cc 30 short encoded[600]; local
135 &audioBuff[startAudio], encoded);
  /libcore/crypto/src/main/java/org/conscrypt/
PinListEntry.java 111 byte[] encoded = cert.getPublicKey().getEncoded();
112 byte[] fingerprint = dgst.digest(encoded);
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertSelectorTest.java 134 byte[] encoded = certificate.getEncoded();
136 return (X509Certificate) factory.generateCertificate(new ByteArrayInputStream(encoded));
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KSPrivateKeyEntryTest.java 46 byte[] encoded = {(byte)0, (byte)1, (byte)2, (byte)3};
51 .concat(s), encoded);
  /external/chromium_org/courgette/
courgette_tool.cc 85 courgette::EncodedProgram* encoded = NULL; local
86 const courgette::Status encode_status = Encode(program, &encoded);
96 courgette::WriteEncodedProgram(encoded, &sinks);
98 Problem("Can't serialize encoded program.");
100 courgette::DeleteEncodedProgram(encoded);
104 Problem("Can't combine serialized encoded program streams.");
180 courgette::EncodedProgram* encoded = NULL; local
181 const courgette::Status encode_status = Encode(program, &encoded);
191 courgette::WriteEncodedProgram(encoded, &sinks);
193 Problem("Can't serialize encoded program.")
296 courgette::EncodedProgram* encoded = NULL; local
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
isac.c 184 * - bandwidthIndex : an index which has to be encoded in
188 * or low and it is encoded in upper-band
480 * - encoded : the encoded data vector
491 WebRtc_Word16* encoded) {
499 WebRtc_UWord8* ptrEncodedUW8 = (WebRtc_UWord8*)encoded;
724 * This function returns encoded data, with the recieved bwe-index in the
726 * the new bistream will be re-encoded with the given target rate.
743 * - encoded : The encoded data vecto
    [all...]
  /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/chromium_org/chrome/tools/convert_dict/
aff_reader.h 37 bool EncodingToUTF8(const std::string& encoded, std::string* utf8) const;
70 // The "encoded" version converts the line to UTF-8 and saves it.
97 // they appear in the file. They have been re-encoded.
  /external/chromium_org/net/ssl/
ssl_cipher_suite_names.cc 29 uint16 cipher_suite, encoded; member in struct:CipherSuite
295 const int key_exchange = cs->encoded >> 8;
296 const int cipher = (cs->encoded >> 3) & 0x1f;
297 const int mac = cs->encoded & 0x7;
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
fldcw_check.S 13 # It is encoded as "d9 /5" which means
  /external/valgrind/main/exp-bbv/tests/x86/
fldcw_check.S 13 # It is encoded as "d9 /5" which means
  /frameworks/av/media/libstagefright/include/
ID3.h 93 static bool ParseSyncsafeInteger(const uint8_t encoded[4], size_t *x);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java 240 * values. The map can be restored by calling {@link #decodeMap}. The encoded String
286 * @param encoded an encoding of a map created by {@link #encodeMap}
287 * @return a map corresponding to the encoded values, never null
290 public static Map<String, List<String>> decodeMap(String encoded) {
293 if (encoded.length() > 0) {
295 int end = encoded.length();
303 char c = encoded.charAt(i);
316 if (i < end && encoded.charAt(i) == '{') {
323 c = encoded.charAt(i);
331 values.add(encoded.substring(valueBegin, valueEnd))
360 String encoded = encodeMap(mIncludes); local
389 String encoded = mProject.getPersistentProperty(CONFIG_INCLUDES); local
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 150 private static final byte[] encoded = new byte[] { 1, 2, 3, 4, 5, 6, 7, field in class:TestCertUtils.TestCertPath
191 return encoded.clone();
199 return encoded.clone();
279 private static final byte[] encoded = new byte[] { 1, 2, 3, 4, 5, 6, 7, field in class:TestCertUtils.TestPublicKey
289 return encoded.clone();
305 private static final byte[] encoded = new byte[] { 1, 2, 3, 4, 5, 6, 7, field in class:TestCertUtils.TestCertificate
345 return encoded.clone();
431 * b) returns Encoded form<br>
453 * The encoded for of this X509Certificate is a byte array where
454 * first are bytes of encoded form of Subject (as X500Principal),
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 151 private static final byte[] encoded = new byte[] { 1, 2, 3, 4, 5, 6, 7, field in class:TestCertUtils.TestCertPath
192 return encoded.clone();
200 return encoded.clone();
280 private static final byte[] encoded = new byte[] { 1, 2, 3, 4, 5, 6, 7, field in class:TestCertUtils.TestPublicKey
290 return encoded.clone();
306 private static final byte[] encoded = new byte[] { 1, 2, 3, 4, 5, 6, 7, field in class:TestCertUtils.TestCertificate
346 return encoded.clone();
432 * b) returns Encoded form<br>
454 * The encoded for of this X509Certificate is a byte array where
455 * first are bytes of encoded form of Subject (as X500Principal)
    [all...]

Completed in 1776 milliseconds

1 2 3 4 5 67 8 91011>>