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

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebKit2/Shared/
WebOpenPanelParameters.h 46 static bool decode(CoreIPC::ArgumentDecoder*, Data&);
WebPopupItem.h 50 static bool decode(CoreIPC::ArgumentDecoder*, WebPopupItem&);
SandboxExtension.h 62 static bool decode(CoreIPC::ArgumentDecoder*, Handle&);
92 inline bool SandboxExtension::Handle::decode(CoreIPC::ArgumentDecoder*, Handle&) { return true; } function in class:WebKit::SandboxExtension::Handle
WebPopupItem.cpp 71 bool WebPopupItem::decode(CoreIPC::ArgumentDecoder* decoder, WebPopupItem& item) function in class:WebKit::WebPopupItem
81 if (!decoder->decode(CoreIPC::Out(type, text, textDirection, hasTextDirectionOverride, toolTip, accessibilityText, isEnabled, isLabel)))
WebEvent.h 103 static bool decode(CoreIPC::ArgumentDecoder*, WebEvent&);
140 static bool decode(CoreIPC::ArgumentDecoder*, WebMouseEvent&);
195 static bool decode(CoreIPC::ArgumentDecoder*, WebWheelEvent&);
230 static bool decode(CoreIPC::ArgumentDecoder*, WebKeyboardEvent&);
258 static bool decode(CoreIPC::ArgumentDecoder*, WebGestureEvent&);
296 static bool decode(CoreIPC::ArgumentDecoder*, WebPlatformTouchPoint&);
317 static bool decode(CoreIPC::ArgumentDecoder*, WebTouchEvent&);
  /external/webkit/Source/WebKit2/Shared/mac/
UpdateChunk.h 50 static bool decode(CoreIPC::ArgumentDecoder*, UpdateChunk&);
  /external/webkit/Source/WebKit2/Shared/win/
PlatformCertificateInfo.h 55 static bool decode(CoreIPC::ArgumentDecoder* decoder, PlatformCertificateInfo& t);
  /frameworks/base/voip/jni/rtp/
G711Codec.cpp 42 int decode(int16_t *samples, int count, void *payload, int length);
67 int UlawCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon15730::UlawCodec
93 int decode(int16_t *samples, int count, void *payload, int length);
117 int AlawCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon15730::AlawCodec
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Boolean.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Boolean
ASN1Implicit.java 102 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Implicit
116 in.content = type.decode(in);
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
InhibitAnyPolicy.java 47 ASN1Integer.getInstance().decode(encoding)).intValue();
CRLDistributionPoints.java 86 public static CRLDistributionPoints decode(byte[] encoding) throws IOException { method in class:CRLDistributionPoints
87 return (CRLDistributionPoints) ASN1.decode(encoding);
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharsetEncoderDecoderBufferTest.java 33 * (CharsetDecoderICU) when a decode operation
43 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'a', (byte)'b', (byte)'c', (byte)'d'}),
53 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'x'}), out, true);
58 // check if the first buffer was corrupted by the second decode
65 * (CharsetDecoderICU) when a decode operation
76 decoder.decode(inWithArray, out, false);
83 decoder.decode(inWithoutArray, out, true);
85 // check whether the first buffer was corrupted by the second decode
116 // check whether the second decode corrupted the first buffer
143 // check whether the second decode corrupted the first buffe
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
IntegerTest.java 67 * @tests java.lang.Integer#decode(java.lang.String)
71 // java.lang.Integer.decode(java.lang.String)
73 132233, Integer.decode("132233").intValue());
75 07654321, Integer.decode("07654321").intValue());
77 Integer.decode("#1234567").intValue() == 0x1234567);
79 Integer.decode("0xdAd").intValue() == 0xdad);
80 assertEquals("Failed for -23", -23, Integer.decode("-23").intValue());
82 .decode("0").intValue());
83 assertEquals("Returned incorrect value for 0 hex", 0, Integer.decode("0x0")
86 Integer.decode("-2147483648").intValue() == 0x80000000)
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MEM_OP_DECODE.S 6 * This handler then calls a function to decode the memory op, and process
14 blx r2 @ decode and handle the mem op
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_MEM_OP_DECODE.S 6 * This handler then calls a function to decode the memory op, and process
15 blx r2 @ decode and handle the mem op
  /external/libvpx/vp8/common/
duck_io.h 58 const char *decode; member in struct:sal_err_map_temp
84 return (char *) g_sal_err_map[t].decode;
  /external/v8/src/
frame-element.h 61 return TypeInfo::FromInt(TypeInfoField::decode(value_));
114 bool is_synced() const { return SyncedField::decode(value_); }
132 bool is_copied() const { return CopiedField::decode(value_); }
144 bool is_untagged_int32() const { return UntaggedInt32Field::decode(value_); }
148 uint32_t reg = DataField::decode(value_);
157 at(DataField::decode(value_));
162 return DataField::decode(value_);
235 Type type() const { return TypeField::decode(value_); }
  /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,
  /frameworks/base/include/media/
IMediaPlayerService.h 46 virtual sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) = 0;
47 virtual sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) = 0;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
OutputStreamTesterTest.java 150 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.FilterOutputStreamTester
166 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.BufferedOutputStreamTester
177 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.DataOutputStreamTester
188 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.ObjectOutputStreamTester
200 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.PrintStreamTester
  /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);
  /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...]
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetDecoderTest.java 67 * @tests java.nio.charset.CharsetDecoder#decode(java.nio.ByteBuffer)
76 // decoder.decode(bb);
81 // CharBuffer charbuf = Charset.forName("UTF-16").decode(buf);
84 // charbuf = Charset.forName("UTF-16BE").decode(buf);
87 // charbuf = Charset.forName("UTF-16LE").decode(buf);
96 decoder2.decode(in);
104 * Test malfunction decode(ByteBuffer)
111 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode(
121 cs2.decode(ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
122 fail("Assert 1: Charset.decode should throw CoderMalfunctionError"); // NON-NLS-
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertPathImpl.java 144 return (X509CertPathImpl) ASN1.decode(in);
165 return (X509CertPathImpl) ASN1.decode(in);
168 ContentInfo ci = (ContentInfo) ContentInfo.ASN1.decode(in);
198 return (X509CertPathImpl) ASN1.decode(in);
219 return (X509CertPathImpl) ASN1.decode(in);
222 ContentInfo ci = (ContentInfo) ContentInfo.ASN1.decode(in);
320 Certificate.ASN1.decode((byte[]) encodings.get(i))));
390 public Object decode(BerInputStream in) throws IOException {
411 public Object decode(BerInputStream in) throws IOException {

Completed in 1847 milliseconds

1 2 3 4 5 67 8 91011>>