/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Enumerated.java | 63 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Enumerated
|
ASN1OctetString.java | 61 @Override public Object decode(BerInputStream in) throws IOException { method in class:ASN1OctetString
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
AlternativeName.java | 49 this.alternativeNames = (GeneralNames) GeneralNames.ASN1.decode(encoding);
|
CRLNumber.java | 45 number = new BigInteger((byte[]) ASN1.decode(encoding));
|
InvalidityDate.java | 43 date = (Date) ASN1.decode(encoding);
|
KeyUsage.java | 69 this.keyUsage = (boolean[]) ASN1.decode(encoding);
|
CertificatePolicies.java | 56 public static CertificatePolicies decode(byte[] encoding) throws IOException { method in class:CertificatePolicies 57 CertificatePolicies cps = ((CertificatePolicies) ASN1.decode(encoding));
|
InfoAccessSyntax.java | 68 public static InfoAccessSyntax decode(byte[] encoding) throws IOException { method in class:InfoAccessSyntax 69 return ((InfoAccessSyntax) ASN1.decode(encoding));
|
/libcore/luni/src/test/java/libcore/io/ |
Base64Test.java | 26 assertEquals("[]", Arrays.toString(Base64.decode(new byte[0])));
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
CertificateStub.java | 53 * @see java.security.Certificate#decode(java.io.InputStream) 55 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
|
/packages/apps/Browser/src/com/android/browser/ |
DataUri.java | 49 mData = Base64.decode(mData);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
hp_roman8.py | 19 def decode(self,input,errors='strict'): member in class:Codec 27 def decode(self, input, final=False): member in class:IncrementalDecoder 42 decode=Codec().decode,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
hp_roman8.py | 19 def decode(self,input,errors='strict'): member in class:Codec 27 def decode(self, input, final=False): member in class:IncrementalDecoder 42 decode=Codec().decode,
|
/system/core/include/sysutils/ |
NetlinkEvent.h | 46 bool decode(char *buffer, int size, int format = NetlinkListener::NETLINK_FORMAT_ASCII);
|
/system/core/libsysutils/src/ |
NetlinkListener.cpp | 60 if (evt->decode(mBuffer, count, mFormat)) {
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
Hex.java | 130 public byte[] decode(byte[] array) throws DecoderException { method in class:Hex 148 public Object decode(Object object) throws DecoderException { method in class:Hex
|
/external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
TextDecoder.cpp | 87 String TextDecoder::decode(ArrayBufferView* input, const Dictionary& options, ExceptionState& exceptionState) function in class:WebCore::TextDecoder 98 String s = m_codec->decode(start, length, flush, m_fatal, sawError);
|
/external/libvorbis/doc/ |
06-floor0.tex | 4 \section{Floor type 0 setup and decode} \label{vorbis:spec:floor0} 24 \subsubsection{header decode} 27 codec setup header (third packet). configuration decode proceeds as 48 \subsubsection{packet decode} \label{vorbis:spec:floor0-decode} 56 Packet decode proceeds as follows: 62 5) if ( [booknumber] is greater than the highest number decode codebook ) then packet is undecodable 76 Take note of the following properties of decode: 78 \item An \varname{[amplitude]} value of zero must result in a return code that indicates this channel is unused in this frame (the output of the channel will be all-zeroes in synthesis). Several later stages of decode don't occur for an unused channel. 79 \item An end-of-packet condition during decode should be considered [all...] |
/frameworks/av/include/media/ |
IMediaPlayerService.h | 54 virtual status_t decode( 62 virtual status_t decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate,
|
/frameworks/base/media/tests/omxjpegdecoder/ |
jpeg_decoder_bench.cpp | 58 // Decode the input stream and then use the bitmap. 59 if (!decoder->decode(stream, bitmap, prefColorType, decodeMode)) { 60 return nullObjectReturn("decoder->decode returned false"); 75 // Decode the input stream and then use the bitmap. 76 if (!decoder->decode(stream, bitmap, prefColorType, decodeMode)) { 77 return nullObjectReturn("decoder->decode returned false");
|
/frameworks/base/tools/layoutlib/bridge/src/android/os/ |
SystemProperties_Delegate.java | 56 return Integer.decode(value); 67 return Long.decode(value);
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
factor.sed | 64 :decode
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
UriSource.java | 50 String uri = URLDecoder.decode(segment[1], CHARSET_UTF_8); 51 String type = URLDecoder.decode(segment[2], CHARSET_UTF_8);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_applesingle.py | 54 applesingle.decode(test_support.TESTFN, TESTFN2) 63 applesingle.decode(test_support.TESTFN, TESTFN2, resonly=True)
|
test_imgfile.py | 106 uu.decode(findfile('testrgb.uue'), 'test.rgb') 107 uu.decode(findfile('greyrgb.uue'), 'greytest.rgb')
|