HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 76 - 100 of 1247) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/text/
TextEncodingRegistry.h 38 // Use TextResourceDecoder::decode to decode resources, since it handles BOMs.
TextCodec.h 63 String decode(const char* str, size_t length, bool flush = false) function in class:WebCore::TextCodec
66 return decode(str, length, flush, false, ignored);
69 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
TextEncoding.h 68 String decode(const char* str, size_t length) const function in class:WebCore::TextEncoding
71 return decode(str, length, false, ignored);
73 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Set.java 48 // Decode
51 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Set
  /system/core/nexus/
SupplicantConnectedEvent.cpp 45 LOGE("Unable to decode re-assocation");
47 LOGE("Unable to decode event");
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
DSAPrivateKeyImpl.java 113 .decode(encoding);
115 throw new InvalidKeySpecException("Failed to decode keySpec encoding: " + e);
119 x = new BigInteger((byte[]) ASN1Integer.getInstance().decode(
122 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
128 .decode(ai.getParameters());
130 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
DSAPublicKeyImpl.java 115 .decode(encoding);
117 throw new InvalidKeySpecException("Failed to decode keySpec encoding: " + e);
121 y = new BigInteger((byte[]) ASN1Integer.getInstance().decode(
124 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
131 .decode(ai.getParameters());
133 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHello.java 97 "DECODE ERROR: incorrect ClientHello");
112 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect ClientHello");
128 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello");
138 "DECODE ERROR: incorrect V2ClientHello, cannot be used for resuming");
142 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello, short challenge data");
163 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello, extra data");
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.java 33 byte[] out = Base64.decode(in, 0);
51 byte[] out = Base64.decode(in, 0);
52 fail("should have failed to decode");
128 assertEquals(BYTES, 0, Base64.decode("", 0));
129 assertEquals(BYTES, 1, Base64.decode("/w==", 0));
130 assertEquals(BYTES, 2, Base64.decode("/+4=", 0));
131 assertEquals(BYTES, 3, Base64.decode("/+7d", 0));
132 assertEquals(BYTES, 4, Base64.decode("/+7dzA==", 0));
133 assertEquals(BYTES, 5, Base64.decode("/+7dzLs=", 0));
134 assertEquals(BYTES, 6, Base64.decode("/+7dzLuq", 0))
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
IntegerTest.java 85 * @tests java.lang.Integer#decode(java.lang.String)
90 method = "decode",
95 // java.lang.Integer.decode(java.lang.String)
97 132233, Integer.decode("132233").intValue());
99 07654321, Integer.decode("07654321").intValue());
101 Integer.decode("#1234567").intValue() == 0x1234567);
103 Integer.decode("0xdAd").intValue() == 0xdad);
104 assertEquals("Failed for -23", -23, Integer.decode("-23").intValue());
106 .decode("0").intValue());
107 assertEquals("Returned incorrect value for 0 hex", 0, Integer.decode("0x0"
    [all...]
  /external/v8/src/
frame-element.h 60 if (!is_constant()) return NumberInfoField::decode(value_);
123 bool is_synced() const { return SyncedField::decode(value_); }
141 bool is_copied() const { return CopiedField::decode(value_); }
147 uint32_t reg = DataField::decode(value_);
155 return ConstantList()->at(DataField::decode(value_));
160 return DataField::decode(value_);
231 Type type() const { return TypeField::decode(value_); }
  /device/samsung/crespo/alsa-lib/src/seq/
seq_midi_event.c 85 event_decode_t decode; member in struct:status_event_list_t
121 int (*decode)(snd_midi_event_t *dev, unsigned char *buf, int len, const snd_seq_event_t *ev); member in struct:extra_event_list_t
211 * \brief Reset MIDI decode parser
215 * Resets MIDI decode parser
227 * Initializes MIDI parsers (both encode and decode)
408 * \brief Decode sequencer event to MIDI byte stream
412 * \param ev Event to decode
415 * Decode sequencer event to MIDI byte stream.
432 return extra_event[type].decode(dev, buf, count, ev);
460 if (status_event[type].decode)
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
BCodec.java 140 * A decoder exception is thrown if a failure condition is encountered during the decode process.
142 public String decode(String value) throws DecoderException { method in class:BCodec
185 * A decoder exception is thrown if a failure condition is encountered during the decode process.
187 public Object decode(Object value) throws DecoderException { method in class:BCodec
191 return decode((String) value);
URLCodec.java 205 public byte[] decode(byte[] bytes) throws DecoderException { method in class:URLCodec
264 public String decode(String pString, String charset) method in class:URLCodec
270 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
285 public String decode(String pString) throws DecoderException { method in class:URLCodec
290 return decode(pString, getDefaultCharset());
330 public Object decode(Object pObject) throws DecoderException { method in class:URLCodec
334 return decode((byte[])pObject);
336 return decode((String)pObject);
  /external/skia/src/animator/
SkBase64.cpp 45 SkBase64::Error SkBase64::decode(const void* srcPtr, size_t size, bool writeDestination) { function in class:SkBase64
157 SkBase64::Error SkBase64::decode(const char* src, size_t len) {
158 Error err = decode(src, len, false);
163 decode(src, len, true);
179 tryMe.decode(src, encodeLength);
  /external/libvpx/
usage_dx.dox 3 The vpx_codec_decode() function is at the core of the decode loop. It
6 frame of data. Packets \ref MUST be passed in decode order. If the
52 compression process. It is not required to properly decode the frame, and
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
encode.h 30 enum EncodeType { ENCODE = 1, DECODE = 2 };
126 // Given an encode arc Label decode back to input/output labels and costs
127 const Tuple* Decode(Label key) {
187 // A mapper to encode/decode weighted transducers. Encoding of an
197 // EncodeTable is generated the same table may by used to decode the machine
200 // Encode -> Determinize -> Decode
203 // decode, even though the encoding is not complete.
219 // Copy constructor but setting the type, typically to DECODE
248 table_->Decode(arc.ilabel);
326 void Decode(MutableFst<A>* fst, const EncodeMapper<A>& mapper)
    [all...]
  /external/webkit/WebCore/platform/image-decoders/bmp/
BMPImageDecoder.cpp 88 // If we couldn't decode the image but we've received all the data, decoding
90 if (!decode(onlySize) && m_allDataReceived)
94 bool BMPImageDecoder::decode(bool onlySize) function in class:WebCore::BMPImageDecoder
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
Util.java 33 public static String decode(String s, boolean convertPlus) { method in class:Util
34 return decode(s, convertPlus, null);
48 public static String decode(String s, boolean convertPlus, String encoding) { method in class:Util
  /packages/apps/Camera/src/com/android/camera/
BitmapManager.java 30 * Provides utilities to decode bitmap, get thumbnail, and cancel the
34 * BitmapFactory.Options)} is used to decode a bitmap. During decoding another
106 Log.d(TAG, "Thread " + t + " is not allowed to decode.");
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
DecoderUtil.java 45 * @param s the string to decode.
74 * @param s the string to decode.
104 * @param encodedWord the encoded word to decode.
120 * @param encodedWord the encoded word to decode.
153 * @param body the string to decode.
273 log.warn("Could not decode encoded word '"
  /external/bluetooth/hcidump/
ChangeLog 2 Decode the Read Link Policy Settings command.
3 Decode Default Link Policy Settings commands
81 Decode and display binary strings correctly.
92 Decode class of device and BD_ADDR for inquiry filter.
99 Decode the extended inquiry response payload.
153 Decode almost every used HCI commands and events.
221 Decode L2CAP information request and response.
230 Decode RFCOMM credit based flow control.
  /external/chromium/sdch/open-vcdiff/
README 16 vcdiff decode -dictionary file.dict < delta_file > target_file
31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_decode_sequence_multi.c 17 ASN.1 DER, decode a SEQUENCE, Tom St Denis
23 Decode a SEQUENCE type using a VA list
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_decrypt_key.c 77 /* rsa decode the packet */
89 /* now OAEP decode the packet */

Completed in 295 milliseconds

1 2 34 5 6 7 8 91011>>