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

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Explicit.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Explicit
70 in.content = type.decode(in);
ASN1Sequence.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Sequence
ASN1SequenceOf.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SequenceOf
ASN1Set.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Set
ASN1SetOf.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SetOf
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
SubjectKeyIdentifier.java 53 public static SubjectKeyIdentifier decode(byte[] encoding) method in class:SubjectKeyIdentifier
56 ASN1OctetString.getInstance().decode(encoding));
  /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/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...]
  /external/webkit/Source/WebCore/dom/
DecodedDataDocumentParser.cpp 46 String decoded = decoder->decode(data, length);
  /external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.h 61 // data coming, sets the "decode failure" flag.
62 void decode(bool onlySize);
  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.h 44 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
  /external/webkit/Source/WebCore/platform/text/qt/
TextCodecQt.h 43 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
DataReference.h 61 static bool decode(ArgumentDecoder* decoder, DataReference& dataReference);
  /external/webkit/Source/WebKit2/Shared/
DictionaryPopupInfo.h 45 static bool decode(CoreIPC::ArgumentDecoder*, DictionaryPopupInfo&);
OriginAndDatabases.h 42 static bool decode(CoreIPC::ArgumentDecoder*, OriginAndDatabases&);
PlatformPopupMenuData.h 44 static bool decode(CoreIPC::ArgumentDecoder*, PlatformPopupMenuData&);
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPIdentifierData.h 51 static bool decode(CoreIPC::ArgumentDecoder*, NPIdentifierData&);
  /external/webkit/Source/WebKit2/Shared/gtk/
UpdateChunk.h 53 static bool decode(CoreIPC::ArgumentDecoder*, UpdateChunk&);
  /external/webkit/Source/WebKit2/Shared/mac/
PlatformCertificateInfo.h 48 static bool decode(CoreIPC::ArgumentDecoder* decoder, PlatformCertificateInfo& t);
  /external/webkit/Source/WebKit2/Shared/qt/
UpdateChunk.cpp 77 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& chunk) function in class:WebKit::UpdateChunk
82 if (!decoder->decode(rect))
88 if (!decoder->decode(hasSharedMemory))
97 if (!decoder->decode(handle))
UpdateChunk.h 51 static bool decode(CoreIPC::ArgumentDecoder*, UpdateChunk&);
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.h 49 static bool decode(CoreIPC::ArgumentDecoder*, UpdateChunk&);
  /external/webkit/Source/WebKit2/UIProcess/
WebContextUserMessageCoders.h 99 static bool decode(CoreIPC::ArgumentDecoder* decoder, WebContextUserMessageDecoder& coder) function in class:WebKit::WebContextUserMessageDecoder
111 if (!decoder->decode(pageID))
118 if (!decoder->decode(frameID))
125 if (!decoder->decode(pageGroupID))
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleUserMessageCoders.h 100 static bool decode(CoreIPC::ArgumentDecoder* decoder, InjectedBundleUserMessageDecoder& coder) function in class:WebKit::InjectedBundleUserMessageDecoder
112 if (!decoder->decode(pageID))
119 if (!decoder->decode(frameID))
126 if (!decoder->decode(pageGroupData))
  /libcore/luni/src/main/java/java/security/
Certificate.java 50 public void decode(InputStream stream) throws KeyException, IOException; method in interface:Certificate
54 * {@link #decode(InputStream)} method must be able to decode the format
63 * @see #decode(InputStream)

Completed in 362 milliseconds

1 2 3 45 6 7 8 91011>>