HomeSort by relevance Sort by last modified time
    Searched refs:decoded (Results 51 - 75 of 175) sorted by null

1 23 4 5 6 7

  /libcore/luni/src/test/java/libcore/java/net/
UrlEncodingTest.java 240 * Asserts that {@code original} decodes to {@code decoded} using both URI
243 private void assertDecoded(String decoded, String original) throws Exception {
244 assertEquals(decoded, new URI("http://foo#" + original).getFragment());
245 assertEquals(decoded, URLDecoder.decode(original));
246 assertEquals(decoded, URLDecoder.decode(original, "UTF-8"));
  /libcore/luni/src/test/java/libcore/javax/security/auth/x500/
X500PrincipalTest.java 111 X500Principal decoded = new X500Principal(actualEncoded); local
112 assertEquals(original, decoded);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BitStringTest.java 68 BitString decoded = (BitString) asn1.decode(in); local
71 decoded.unusedBits);
74 decoded.bytes));
83 BitString decoded = (BitString) asn1.decode(in); local
86 decoded.unusedBits);
89 decoded.bytes));
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
PinyinDecoderService.java 58 native static String nativeImGetPyStr(boolean decoded);
60 native static int nativeImGetPyStrLen(boolean decoded);
199 public String imGetPyStr(boolean decoded) {
200 return nativeImGetPyStr(decoded);
203 public int imGetPyStrLen(boolean decoded) {
204 return nativeImGetPyStrLen(decoded);
  /frameworks/base/core/java/android/net/
Uri.java 182 * @return the decoded scheme-specific-part
194 * @return the decoded scheme-specific-part
199 * Gets the decoded authority part of this URI. For
221 * Gets the decoded user information from the authority.
256 * Gets the decoded path.
258 * @return the decoded path, or null if this is not a hierarchical URI
272 * Gets the decoded query component from this URI. The query comes after
277 * @return the decoded query or null if there isn't one
292 * Gets the decoded fragment part of this URI, everything after the '#'.
294 * @return the decoded fragment or null if there isn't on
1948 volatile String decoded; field in class:Uri.AbstractPart
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapbMessageTest.java 197 // String decoded = ((BluetoothMapbMessageSms) newMsg).getSmsBody();
200 // if(D) Log.d(TAG, "\nDecoded: \n" + decoded);
267 String decoded = ((BluetoothMapbMessageSms) newMsg).getSmsBody(); local
268 if(D) Log.d(TAG, "\nCalling encoder on decoded message to log its content");
272 if(D) Log.d(TAG, "\nDecoded: \n" + decoded);
274 assertTrue("The decoded text is \"" + decoded + "\" - expected \"Let's go fishing!\"", decoded.equalsIgnoreCase("Let's go fishing!"));
328 String decoded = ((BluetoothMapbMessageSms) newMsg).getSmsBody(); local
330 if(D) Log.d(TAG, "\nDecoded: \n" + decoded);
411 String decoded = ((BluetoothMapbMessageSms) newMsg).getSmsBody(); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
TimeStampRespTest.java 100 TimeStampResp decoded = (TimeStampResp) TimeStampResp.ASN1 local
104 assertTrue("Decoded status is incorrect", Arrays.equals(
106 .encode(decoded.getStatus())));
107 assertTrue("Decoded timeStampToken is incorrect", Arrays.equals(
108 timeStampToken.getEncoded(), decoded.getTimeStampToken()
  /external/chromium_org/chrome/browser/net/gaia/
gaia_oauth_fetcher.cc 203 std::string decoded; local
204 if (OAuthRequestSigner::Decode(i->second, &decoded))
205 token->assign(decoded);
207 std::string decoded; local
208 if (OAuthRequestSigner::Decode(i->second, &decoded))
209 secret->assign(decoded);
228 std::string decoded; local
229 if (OAuthRequestSigner::Decode(i->second, &decoded))
230 token->assign(decoded);
232 std::string decoded; local
    [all...]
  /external/chromium_org/google_apis/gaia/
oauth_request_signer_unittest.cc 68 std::string decoded; local
69 ASSERT_TRUE(OAuthRequestSigner::Decode(encoded, &decoded));
70 ASSERT_EQ(decoded, text);
  /external/chromium_org/media/base/android/
webaudio_media_codec_bridge.cc 108 jboolean decoded = Java_WebAudioMediaCodecBridge_decodeAudioFile(
117 DVLOG(1) << "decoded = " << (decoded ? "true" : "false");
119 return decoded;
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
DecodeEscapeSequences.h 141 String decoded = string.is8Bit() ? local
145 if (decoded.isEmpty())
149 result.append(decoded);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_conceal.c 79 of the type is based on last successfully decoded slice header of
85 slice each corrupted (not successfully decoded) macroblock
89 decoded macroblock and concealing the row containing the macroblock
93 first properly decoded one is as follows (properly decoded
159 /* find first properly decoded macroblock -> start point for concealment */
160 while (i < pStorage->picSizeInMbs && !pStorage->mb[i].decoded)
195 mb[j].decoded = 1;
200 if (!mb[j].decoded)
203 mb[j].decoded = 1
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmSmsTest.java 374 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, 128, 0, language, 0); local
375 byte[] reEncoded = GsmAlphabet.stringToGsm7BitPacked(decoded, language, 0);
377 assertEquals(sBasicTables[language], decoded);
451 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0, local
453 byte[] reEncoded = GsmAlphabet.stringToGsm7BitPacked(decoded, 0, language);
455 assertEquals(sExtendedTables[language], decoded);
526 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0, local
529 assertEquals(defaultTable.toString(), decoded); local
531 decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0, 1, language);
532 assertEquals(turkishTable.toString(), decoded); local
535 assertEquals(portugueseTable.toString(), decoded); local
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-244.js 50 var decoded = String.fromCharCode(kLegalPairs[i][0]);
52 assertEquals(decodeURI(encoded), decoded);
53 assertEquals(encodeURI(decoded), encoded);
  /external/v8/test/mjsunit/regress/
regress-244.js 50 var decoded = String.fromCharCode(kLegalPairs[i][0]);
52 assertEquals(decodeURI(encoded), decoded);
53 assertEquals(encodeURI(decoded), encoded);
  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_verify_hash.c 74 /* allocate temp buffer for decoded sig */
100 int decoded; local
109 /* allocate temp buffer for decoded hash */
117 if ((err = pkcs_1_v1_5_decode(tmpbuf, x, LTC_PKCS_1_EMSA, modulus_bitlen, out, &outlen, &decoded)) != CRYPT_OK) {
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
isacfix.c 747 * - decoded : The decoded vector
749 * Return value : >0 - number of samples in decoded vector
757 WebRtc_Word16 *decoded,
803 declen = WebRtcIsacfix_DecodeImpl(decoded,&ISAC_inst->ISACdec_obj, &number_of_samples);
808 memset(decoded, 0, sizeof(WebRtc_Word16) * MAX_FRAMESAMPLES);
817 memset(decoded, 0, sizeof(WebRtc_Word16) * number_of_samples);
823 memset(decoded, 0, sizeof(WebRtc_Word16) * number_of_samples);
850 * - decoded : The decoded vecto
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
BitmapUtil.java 41 * @return a decoded Bitmap that is not exactly sized to the hinted dimensions.
68 * @return an exactly-sized decoded Bitmap that is center-cropped.
72 final Bitmap decoded = decodeByteArray(src, w, h); local
73 return centerCrop(decoded, w, h);
  /external/chromium_org/chrome/browser/ui/webui/
screenshot_source.cc 189 url_canon::RawCanonOutputT<char16> decoded; local
191 filename.data(), filename.size(), &decoded);
194 decoded.data(), decoded.length()));
  /external/chromium_org/net/http/
http_security_headers.cc 122 std::string decoded; local
127 if (!base::Base64Decode(unquoted, &decoded))
131 if (decoded.size() != hash.size())
134 memcpy(hash.data(), decoded.data(), hash.size());
  /external/chromium_org/third_party/opus/src/tests/
run_vectors.sh 80 echo successfully decoded
109 echo successfully decoded
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
DecoderUtil.java 46 * @return the decoded bytes.
75 * @return the decoded bytes.
106 * @return the decoded string.
122 * @return the decoded string.
154 * @return the decoded string.
196 String decoded = decodeEncodedWord(body, begin, end); local
197 if (decoded == null) {
204 sb.append(decoded);
208 previousWasEncoded = decoded != null;
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 668 unsigned char *decoded; local
680 decoded = base64_decode((unsigned char *) pos, os_strlen(pos),
683 if (decoded == NULL) {
687 return decoded;
739 unsigned char *decoded; local
819 decoded = tncc_get_base64(start, &decoded_len);
820 if (decoded == NULL) {
826 tncc_send_to_imcs(tncc, type, decoded, decoded_len);
828 os_free(decoded);
866 decoded = NULL
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 737 unsigned char *decoded; local
749 decoded = base64_decode((unsigned char *) pos, os_strlen(pos),
752 if (decoded == NULL) {
756 return decoded;
851 unsigned char *decoded; local
929 decoded = tncs_get_base64(start, &decoded_len);
930 if (decoded == NULL) {
936 tncs_send_to_imvs(tncs, type, decoded, decoded_len);
938 os_free(decoded);
976 decoded = NULL
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 138 short [] decoded = decodeToMemory(testinput, RESET_MODE_NONE); local
140 assertEquals("wrong data size", mMasterBuffer.length, decoded.length);
144 for (int i = 0; i < decoded.length; i++) {
145 short sample = decoded[i];
151 long avgErrorSquared = (totalErrorSquared / decoded.length);
156 assertEquals("count different with reconfigure", decoded.length, decoded2.length);
157 for (int i = 0; i < decoded.length; i++) {
158 assertEquals("samples don't match", decoded[i], decoded2[i]);
163 // assertEquals("count different with flush", decoded.length, decoded3.length);
164 // for (int i = 0; i < decoded.length; i++)
171 short [] decoded = new short[0]; local
    [all...]

Completed in 939 milliseconds

1 23 4 5 6 7