HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 1 - 25 of 673) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/net/
URLDecoder.java 25 * This class is used to decode a string which is encoded in the {@code
41 * @deprecated Use {@link #decode(String, String)} instead.
44 public static String decode(String s) { method in class:URLDecoder
45 return UriCodec.decode(s, true, Charset.defaultCharset(), true);
59 public static String decode(String s, String charsetName) throws UnsupportedEncodingException { method in class:URLDecoder
60 return UriCodec.decode(s, true, Charset.forName(charsetName), true);
  /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...]
07-floor1.tex 4 \section{Floor type 1 setup and decode} \label{vorbis:spec:floor1}
87 behavior is used for actual decode, as described later. The actual
94 \subsubsection{header decode}
97 format (used in list order during packet decode and synthesis). This
167 \paragraph{packet decode} \label{vorbis:spec:floor1-decode}
169 Packet decode begins by checking the \varname{[nonzero]} flag:
176 no audio energy in this frame. Decode immediately returns a status
183 Assuming \varname{[nonzero]} is set, decode proceeds as follows:
226 An end-of-packet condition during curve decode should be considered
    [all...]
08-residue.tex 4 \section{Residue setup and decode} \label{vorbis:spec:residue}
17 vectors during decode. Vorbis makes use of three different encoding
48 decode that partition. The classification numbers of each partition
63 from multiple decode passes. The classification value associated with
144 as in type 1 with decode interleave reversed. If operating on a single
153 \subsection{Residue decode}
155 \subsubsection{header decode}
157 Header decode for all three residue types is identical.
231 An end-of-packet condition at any point in header decode renders the
241 \subsubsection{packet decode}
    [all...]
  /external/apache-http/src/org/apache/commons/codec/
BinaryDecoder.java 42 * the decode process.
44 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
Decoder.java 45 * this decode method will throw a DecoderException.
47 * @param pObject an object to "decode"
57 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
StringDecoder.java 42 String decode(String pString) throws DecoderException; method in interface:StringDecoder
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Encoder.java 7 * Encode and decode byte arrays (typically from binary to 7-bit ASCII
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder
16 int decode(String data, OutputStream out) throws IOException; method in interface:Encoder
Base64.java 93 * decode the base 64 encoded input data. It is assumed the input data is valid.
97 public static byte[] decode( method in class:Base64
105 encoder.decode(data, 0, data.length, bOut);
109 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
116 * decode the base 64 encoded String data - whitespace will be ignored.
120 public static byte[] decode( method in class:Base64
128 encoder.decode(data, bOut);
132 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
139 * decode the base 64 encoded String data writing it to the given output stream,
144 public static int decode( method in class:Base64
    [all...]
Hex.java 92 * decode the Hex encoded input data. It is assumed the input data is valid.
96 public static byte[] decode( method in class:Hex
103 encoder.decode(data, 0, data.length, bOut);
114 * decode the Hex encoded String data - whitespace will be ignored.
118 public static byte[] decode( method in class:Hex
125 encoder.decode(data, bOut);
136 * decode the Hex encoded String data writing it to the given output stream,
141 public static int decode( method in class:Hex
146 return encoder.decode(data, out);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecReplacement.cpp 44 String TextCodecReplacement::decode(const char*, size_t, FlushBehavior, bool, bool& sawError) function in class:WTF::TextCodecReplacement
TextEncoding.h 48 String decode(const char* str, size_t length) const function in class:WTF::TextEncoding
51 return decode(str, length, false, ignored);
53 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
  /external/glide/library/src/main/java/com/bumptech/glide/load/
ResourceDecoder.java 14 public Resource<Z> decode(T source, int width, int height) throws IOException; method in interface:ResourceDecoder
  /external/smack/src/org/jivesoftware/smack/util/
StringEncoder.java 35 String decode(String string); method in interface:StringEncoder
Base64Encoder.java 38 public String decode(String s) { method in class:Base64Encoder
39 return new String(Base64.decode(s));
Base64FileUrlEncoder.java 44 public String decode(String s) { method in class:Base64FileUrlEncoder
45 return new String(Base64.decode(s, Base64.URL_SAFE));
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 27 IntType decode(const ByteType *pBuf, size_t &pSize);
30 IntType decode(const ByteType *&pBuf);
73 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
80 uint64_t decode<uint64_t>(const ByteType *&pBuf);
86 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize);
89 int64_t decode<int64_t>(const ByteType *&pBuf);
102 IntType decode(const char *pBuf, size_t &pSize) { function in namespace:mcld::leb128
103 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
107 IntType decode(const char *&pBuf) { function in namespace:mcld::leb128
108 return decode<IntType>(reinterpret_cast<const ByteType*&>(pBuf))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSAEncoder.java 11 BigInteger[] decode(byte[] sig) method in interface:DSAEncoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/
NullDecoder.java 17 public Resource<Z> decode(T source, int width, int height) throws IOException { method in class:NullDecoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapDecoder.java 10 * @param <T> The type of resource this decoder can decode a {@link Bitmap} from.
16 * @param resource The resource to decode.
24 public Bitmap decode(T resource, BitmapPool bitmapPool, int outWidth, int outHeight, DecodeFormat decodeFormat) method in interface:BitmapDecoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperStreamResourceDecoder.java 18 public Resource<GifBitmapWrapper> decode(InputStream source, int width, int height) throws IOException { method in class:GifBitmapWrapperStreamResourceDecoder
19 return gifBitmapDecoder.decode(new ImageVideoWrapper(source, null), width, height);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBase64.java 18 public static byte[] decode(String str, int flags) { method in class:ShadowBase64
  /frameworks/base/services/core/java/com/android/server/updates/
TZInfoInstallReceiver.java 31 super.install(Base64.decode(encodedContent, Base64.DEFAULT), version);
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 96 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize) { function in namespace:mcld::leb128
140 uint64_t decode<uint64_t>(const ByteType *&pBuf) { function in namespace:mcld::leb128
185 * version like decode() to save the code size.
188 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize) { function in namespace:mcld::leb128
209 int64_t decode<int64_t>(const ByteType *&pBuf) { function in namespace:mcld::leb128
  /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 613 milliseconds

1 2 3 4 5 6 7 8 91011>>