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

1 2 34 5 6 7 8 91011>>

  /external/chromium/sdch/open-vcdiff/man/
vcdiff.1 39 or standard output for decode.
45 or standard input for decode.
  /external/dropbear/libtomcrypt/src/pk/asn1/der/object_identifier/
der_decode_object_identifier.c 15 ASN.1 DER, Decode Object Identifier, Tom St Denis
20 Decode OID data and store the array of integers in words
46 /* decode the packet header */
70 /* decode words */
  /external/webkit/Source/WebKit2/Shared/
WebGestureEvent.cpp 54 bool WebGestureEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebGestureEvent& t) function in class:WebKit::WebGestureEvent
56 if (!WebEvent::decode(decoder, t))
58 if (!decoder->decode(t.m_position))
60 if (!decoder->decode(t.m_globalPosition))
WebKeyboardEvent.cpp 56 bool WebKeyboardEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebKeyboardEvent& t) function in class:WebKit::WebKeyboardEvent
58 if (!WebEvent::decode(decoder, t))
61 if (!decoder->decode(CoreIPC::Out(t.m_text, t.m_unmodifiedText, t.m_keyIdentifier, t.m_windowsVirtualKeyCode, t.m_nativeVirtualKeyCode, t.m_macCharCode)))
64 return decoder->decode(CoreIPC::Out(t.m_isAutoRepeat, t.m_isKeypad, t.m_isSystemKey));
  /external/webkit/Source/WebKit2/Shared/mac/
WebCoreArgumentCodersMac.mm 53 if (!decoder->decode(requestIsPresent))
62 if (!decode(decoder, dictionary))
88 if (!decoder->decode(responseIsPresent))
97 if (!decode(decoder, dictionary))
150 if (!decoder->decode(errorIsNull))
159 if (!decoder->decode(domain))
163 if (!decoder->decode(code))
167 if (!decoder->decode(stringUserInfoMap))
171 if (!decoder->decode(certificate))
  /external/webp/
README 28 the file src/webp/decode.h for the details and variants:
30 #include "webp/decode.h"
48 /usr/local/include/webp/decode.h
59 decode it to a PPM image file. This is simply to demonstrate use of the API.
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Type.java 81 public final Object decode(byte[] encoded) throws IOException { method in class:ASN1Type
82 return decode(new DerInputStream(encoded));
85 public final Object decode(byte[] encoded, int offset, int encodingLen) method in class:ASN1Type
87 return decode(new DerInputStream(encoded, offset, encodingLen));
90 public final Object decode(InputStream in) throws IOException { method in class:ASN1Type
91 return decode(new DerInputStream(in));
97 decode(decoder);
103 decode(decoder);
116 public abstract Object decode(BerInputStream in) throws IOException; method in class:ASN1Type
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ShortTest.java 62 * @tests java.lang.Short#decode(java.lang.String)
66 // java.lang.Short.decode(java.lang.String)
67 assertTrue("Did not decode -1 correctly", Short.decode("-1")
69 assertTrue("Did not decode -100 correctly", Short.decode("-100")
71 assertTrue("Did not decode 23 correctly", Short.decode("23")
73 assertTrue("Did not decode 0x10 correctly", Short.decode("0x10"
    [all...]
ByteTest.java 277 * @tests java.lang.Byte#decode(String)
280 assertEquals(new Byte((byte) 0), Byte.decode("0"));
281 assertEquals(new Byte((byte) 1), Byte.decode("1"));
282 assertEquals(new Byte((byte) -1), Byte.decode("-1"));
283 assertEquals(new Byte((byte) 0xF), Byte.decode("0xF"));
284 assertEquals(new Byte((byte) 0xF), Byte.decode("#F"));
285 assertEquals(new Byte((byte) 0xF), Byte.decode("0XF"));
286 assertEquals(new Byte((byte) 07), Byte.decode("07"));
289 Byte.decode("9.2");
295 Byte.decode("");
    [all...]
  /external/skia/include/images/
SkImageDecoder.h 79 /** Returns true if the decoder should try to decode the
85 /** Set to true if the the decoder should try to decode the
173 cancel. This will result in decode() returning false. However, there is
176 and decode() will return true (assuming no other problems were
179 This state is automatically reset at the beginning of decode().
187 /** Passed to the decode method. If kDecodeBounds_Mode is passed, then
196 /** Given a stream, decode it into the specified bitmap.
209 bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode, bool reuseBitmap = false);
210 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode, bool reuseBitmap = false) { function in class:SkImageDecoder
211 return this->decode(stream, bitmap, SkBitmap::kNo_Config, mode, reuseBitmap)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
BitmapFactory.java 46 * If set, decode methods that take the Options object will attempt to
47 * reuse this bitmap when loading content. If the decode operation cannot
48 * use this bitmap, the decode method will return <code>null</code> and
56 * <p>You should still always use the returned Bitmap of the decode
62 * that you are using the bitmap that was used as the decode destination.</p>
67 * If set, decode methods will always return a mutable Bitmap instead of
95 * If this is non-null, the decoder will try to decode into this
204 * For the re-decode to happen, the bitmap must have access to the
225 * decode the reconstructed image to a higher quality even at the
227 * decode, in the case of which a more accurate, but slightly slower
    [all...]
  /sdk/emulator/qtools/
trace_reader.cpp 111 int64_t bb_diff = decoder_->Decode(true);
112 uint64_t time_diff = decoder_->Decode(false);
113 nextrec_.bb_rec.repeat = decoder_->Decode(false);
117 nextrec_.bb_rec.time_diff = decoder_->Decode(false);
292 time_diff_ = decoder_->Decode(false);
293 repeat_ = decoder_->Decode(false);
346 uint32_t addr_diff = decoder_->Decode(true);
347 uint64_t time_diff = decoder_->Decode(false);
391 uint64_t time_diff = decoder_->Decode(false);
392 uint32_t pc = decoder_->Decode(false)
    [all...]
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16CharsetDecoderTest.java 74 assertTrue(decoder.decode(
81 assertSame(CoderResult.UNDERFLOW, decoder.decode(ByteBuffer
83 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 98 }), out,
89 assertSame(CoderResult.UNDERFLOW, decoder.decode(ByteBuffer
91 assertFalse(decoder.decode(ByteBuffer.wrap(new byte[] {}), out,
97 assertFalse(decoder.decode(
104 assertSame(CoderResult.UNDERFLOW, decoder.decode(ByteBuffer
106 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 0 }), out,
  /external/apache-http/src/org/apache/commons/codec/
BinaryDecoder.java 37 * the decode process.
39 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
  /external/chromium/webkit/glue/
image_decoder.h 26 // Call this function to decode the image. If successful, the decoded image
28 SkBitmap Decode(const unsigned char* data, size_t size) const;
  /external/dropbear/libtomcrypt/src/pk/asn1/der/boolean/
der_decode_boolean.c 15 ASN.1 DER, decode a BOOLEAN, Tom St Denis
25 @param out [out] The boolean to decode
  /external/dropbear/libtomcrypt/src/pk/asn1/der/short_integer/
der_decode_short_integer.c 15 ASN.1 DER, decode an integer, Tom St Denis
25 @param num [out] The integer to decode
  /external/skia/src/animator/
SkBase64.h 32 Error decode(const char* src, size_t length);
40 Error decode(const void* srcPtr, size_t length, bool writeDestination);
  /external/webkit/LayoutTests/fast/encoding/resources/
char-decoding-utils.js 21 function decode(charsetName, characterSequence) function
36 shouldBe("decode('" + charsetName + "', '" + characterSequence + "')", "'" + unicode + "'");
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentCoder.h 42 static bool decode(ArgumentDecoder* decoder, T& t) function in struct:CoreIPC::ArgumentCoder
44 return T::decode(decoder, t);
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPVariantData.cpp 151 bool NPVariantData::decode(CoreIPC::ArgumentDecoder* decoder, NPVariantData& result) function in class:WebKit::NPVariantData
154 if (!decoder->decode(type))
173 return decoder->decode(result.m_boolValue);
175 return decoder->decode(result.m_int32Value);
177 return decoder->decode(result.m_doubleValue);
179 return decoder->decode(result.m_stringValue);
181 return decoder->decode(result.m_localNPObjectIDValue);
183 return decoder->decode(result.m_remoteNPObjectIDValue);
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetDecoderTest.java 36 assertEquals("\u6d61x", d.decode(in).toString());
46 CoderResult coderResult = decoder.decode(inBuffer, outBuffer, true);
62 CoderResult coderResult = decoder.decode(inBuffer, outBuffer, true);
75 CharBuffer outBuffer = decoder.decode(ByteBuffer.wrap(arr, offset, arr.length - offset));
95 cr = decoder.decode(ByteBuffer.wrap(new byte[] { (byte) 0xe2 }), cb, false);
97 cr = decoder.decode(ByteBuffer.wrap(new byte[] { (byte) 0x98 }), cb, false);
99 cr = decoder.decode(ByteBuffer.wrap(new byte[] { (byte) 0x83 }), cb, false);
101 cr = decoder.decode(ByteBuffer.wrap(new byte[0]), cb, true);
  /external/webkit/Source/WebKit/android/
RenderSkinButton.cpp 68 void RenderSkinButton::decode() function in class:WebCore::RenderSkinButton
79 LOGE("RenderSkinButton::decode: button assets failed to decode\n\tWebView buttons will not draw");
90 decode();
92 // If we failed to decode, do nothing. This way the browser still works,
  /external/chromium/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 50 rem vcdiff with three arguments but without "encode" or "decode"
65 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
68 || ( echo Decode with three arguments failed ^
87 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
90 || ( echo Decode using stdin/stdout failed ^
107 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
110 || ( echo Decode with mixed arguments failed ^
126 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
129 || ( echo Decode with mixed arguments failed ^
142 %VCDIFF% decode -dictionary %TARGET_FILE%
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
base64.h 65 static inline std::string Decode(const std::string& data, DecodeFlags flags) {
70 static inline bool Decode(const std::string& data, DecodeFlags flags,
75 static inline bool Decode(const std::string& data, DecodeFlags flags,

Completed in 723 milliseconds

1 2 34 5 6 7 8 91011>>