HomeSort by relevance Sort by last modified time
    Searched defs:decoded (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/webkit/Source/WebCore/dom/
DecodedDataDocumentParser.cpp 46 String decoded = decoder->decode(data, length); local
48 decoded += decoder->flush();
49 if (decoded.isEmpty())
54 append(decoded);
  /external/chromium/base/
base64_unittest.cc 19 std::string encoded, decoded; local
26 ok = base::Base64Decode(encoded, &decoded);
28 EXPECT_EQ(kText, decoded);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
PKIStatusInfoTest.java 43 PKIStatusInfo decoded = (PKIStatusInfo) PKIStatusInfo.ASN1 local
46 assertEquals(info.getStatus(), decoded.getStatus());
47 List decodedStString = decoded.getStatusString();
51 assertEquals(info.getFailInfo(), decoded.getFailInfo());
TimeStampReqTest.java 53 TimeStampReq decoded = (TimeStampReq) TimeStampReq.ASN1 local
55 assertEquals("Decoded version is incorrect", req.getVersion(), decoded
57 assertTrue("Decoded messageImprint is incorrect", Arrays.equals(
59 .encode(decoded.getMessageImprint())));
60 assertEquals("Decoded reqPolicy is incorrect", reqPolicy, decoded
62 assertEquals("Decoded nonce is incorrect", nonce, decoded.getNonce());
63 assertFalse("Decoded certReq is incorrect", decoded.getCertReq(
    [all...]
TSTInfoTest.java 64 TSTInfo decoded = (TSTInfo) TSTInfo.ASN1.decode(encoding); local
66 assertEquals("Decoded version is incorrect", info.getVersion(), decoded
68 assertEquals("Decoded policy is incorrect", policy, decoded.getPolicy());
69 assertTrue("Decoded messageImprint is incorrect", Arrays.equals(
71 .encode(decoded.getMessageImprint())));
72 assertEquals("Decoded serialNumber is incorrect", BigInteger.TEN,
73 decoded.getSerialNumber());
74 assertEquals("Decoded genTime is incorrect", genTime, decode
    [all...]
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/chrome/browser/importer/
importer.cc 34 SkBitmap decoded = decoder.Decode(src_data, src_len); local
35 if (decoded.empty())
38 if (decoded.width() != kFaviconSize || decoded.height() != kFaviconSize) {
40 int new_width = decoded.width();
41 int new_height = decoded.height();
43 decoded = skia::ImageOperations::Resize(
44 decoded, skia::ImageOperations::RESIZE_LANCZOS3, new_width, new_height);
48 gfx::PNGCodec::EncodeBGRASkBitmap(decoded, false, png_data);
  /external/chromium/chrome/browser/
user_style_sheet_watcher_unittest.cc 51 std::string decoded; local
52 ASSERT_TRUE(base::Base64Decode(result, &decoded));
53 ASSERT_EQ(css_file_contents, decoded);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
OidTest.java 127 int[] decoded = (int[]) asn1.decode(new DerInputStream( local
132 decoded));
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));
  /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/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs10/
CertificationRequestInfoTest.java 68 CertificationRequestInfo decoded = local
72 // check what was decoded
73 assertEquals(certReqInfo.getVersion(), decoded.getVersion());
75 decoded.getSubject().getName(X500Principal.CANONICAL));
77 .getEncoded(), decoded.getSubjectPublicKeyInfo().getEncoded()));
81 AttributeTypeAndValue decodedATaV = (AttributeTypeAndValue) decoded
CertificationRequestTest.java 71 CertificationRequest decoded = (CertificationRequest) CertificationRequest.ASN1 local
74 // check what was decoded
83 assertEquals(certReq.getAlgId(), decoded.getAlgId());
84 assertTrue(Arrays.equals(certReq.getSignature(), decoded.getSignature()));
  /external/skia/src/utils/
SkBase64.cpp 55 signed char decoded = decodeData[srcByte - '+']; local
56 bytes[byte] = decoded;
57 if (decoded < 0) {
58 if (decoded == DecodePad)
  /external/wpa_supplicant_8/src/wps/
upnp_xml.c 229 unsigned char *decoded; local
238 decoded = base64_decode((unsigned char *) msg, os_strlen(msg), &len);
240 if (decoded == NULL) {
245 buf = wpabuf_alloc_ext_data(decoded, len);
247 os_free(decoded);
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 46 * the policy qualifier cannot be decoded.
59 Object[] decoded = (Object[]) org.apache.harmony.security.x509.PolicyQualifierInfo.ASN1 local
61 policyQualifierId = ObjectIdentifier.toString((int[]) decoded[0]);
62 policyQualifier = (byte[]) decoded[1];
  /libcore/luni/src/test/java/libcore/java/security/cert/
SubjectAlternativeNameTest.java 46 String decoded = formatIpAddress(ipAddress); local
47 assertTrue(decoded, decoded.equals("::1") || decoded.equals("0:0:0:0:0:0:0:1"));
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
PolicyQualifierInfoTest.java 94 Object[] decoded = local
100 myIntValue, ((int[])decoded[0])[8]);
103 (byte)myIntValue, ((byte[])decoded[1])[2]);
127 Object[] decoded = local
133 myIntValue, ((int[])decoded[0])[8]);
136 (byte)myIntValue, ((byte[])decoded[1])[2]);
  /external/webkit/Source/WebCore/platform/text/qt/
TextCodecQt.cpp 111 QString decoded = m_codec->toUnicode(buf, size, &m_state); local
112 unicode.append(reinterpret_cast_ptr<const UChar*>(decoded.unicode()), decoded.length());
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_base.cpp 396 const EncoderBase::Operand& decoded = inst.operands[i]; local
397 assert(original.kind() == decoded.kind());
398 assert(original.size() == decoded.size());
400 assert(original.imm() == decoded.imm());
416 assert(original.base() == decoded.base());
417 assert(original.index() == decoded.index());
418 assert(original.scale() == decoded.scale());
419 assert(original.disp() == decoded.disp());
433 assert(original.reg() == decoded.reg());
    [all...]
  /external/chromium/chrome/browser/sync/util/
user_settings_unittest.cc 244 const std::string decoded = browser_sync::APDecode(encoded); local
245 ASSERT_EQ(test, decoded);
  /external/chromium/net/base/
escape_unittest.cc 48 const wchar_t* decoded; member in struct:__anon4346::UnescapeAndDecodeCase
341 string16 decoded = UnescapeAndDecodeUTF8URLComponent( local
343 EXPECT_EQ(WideToUTF16Hack(std::wstring(unescape_cases[i].decoded)),
344 decoded);
  /packages/apps/Email/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;
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 27 * A decoded Dalvik instruction. This consists of a format codec, a
84 DecodedInstruction[] decoded = new DecodedInstruction[size]; local
89 decoded[in.cursor()] = DecodedInstruction.decode(in);
95 return decoded;
  /external/chromium/chrome/browser/ui/webui/
extension_icon_source.cc 50 SkBitmap* decoded = new SkBitmap(); local
51 *decoded = decoder.Decode(data, size);
52 return decoded;
166 SkBitmap* decoded = NULL; local
169 decoded = GetDefaultAppImage();
171 decoded = GetDefaultExtensionImage();
173 *decoded = skia::ImageOperations::Resize(
174 *decoded, skia::ImageOperations::RESIZE_LANCZOS3,
177 FinalizeImage(decoded, request_id);

Completed in 1222 milliseconds

1 2 3