HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 551 - 575 of 1360) sorted by null

<<21222324252627282930>>

  /external/dexmaker/src/dx/java/com/android/dx/util/
Mutf8.java 33 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { method in class:Mutf8
  /external/nanopb-c/examples/network_server/
client.c 71 response.file.funcs.decode = &printfile_callback;
75 fprintf(stderr, "Decode failed: %s\n", PB_GET_ERROR(&input));
  /external/skia/bench/
SkipZeroesBench.cpp 84 // Decode a bunch of times
87 SkDEBUGCODE(bool success =) fDecoder->decode(&fStream, &bm,
91 SkDebugf("failed to decode %s\n", fFilename.c_str());
  /external/skia/src/ports/
SkImageDecoder_empty.cpp 35 bool SkImageDecoder::decode(SkStream*, SkBitmap*, SkColorType, Mode) { function in class:SkImageDecoder
  /frameworks/base/core/java/android/service/fingerprint/
FingerprintUtils.java 45 result[i] = Integer.decode(fingerStringIds[i]);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
BerTlv.java 74 * @param data A byte array to decode from
78 public static BerTlv decode(byte[] data) throws ResultException { method in class:BerTlv
  /libcore/dex/src/main/java/com/android/dex/
Mutf8.java 34 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { method in class:Mutf8
  /libcore/luni/src/main/java/java/lang/
Integer.java 155 public static Integer decode(String string) throws NumberFormatException { method in class:Integer
239 return decode(prop);
268 return decode(prop);
297 return decode(prop);
Long.java 139 public static Long decode(String string) throws NumberFormatException { method in class:Long
225 return decode(prop);
254 return decode(prop);
283 return decode(prop);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1StringType.java 84 public Object decode(BerInputStream in) throws IOException { method in class:ASN1StringType
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
BasicConstraints.java 54 Object[] values = (Object[]) ASN1.decode(encoding);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
language_model_dict_content.cpp 44 return ProbabilityEntry::decode(result.mValue, mHasHistoricalInfo);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
MediaDescr.py 13 def decode(self, data): member in class:_MediaDescriptionCodec
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mimetools.py 27 mimetools.decode(i, o, enc)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementInclude.py 84 data = data.decode(encoding)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mimetools.py 27 mimetools.decode(i, o, enc)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementInclude.py 84 data = data.decode(encoding)
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 69 public static DecodedInstruction decode(CodeInput in) throws EOFException { method in class:DecodedInstruction
74 return format.decode(opcodeUnit, in);
89 decoded[in.cursor()] = DecodedInstruction.decode(in);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateListTest.java 151 CertificateList.ASN1.decode(encoding);
175 CertificateList.ASN1.decode(encoding);
183 CertificateList.ASN1.decode(encoding);
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 199 * @param pObject Object to decode
205 public Object decode(Object pObject) throws DecoderException { method in class:Base64
207 throw new DecoderException("Parameter supplied to Base64 decode is not a byte[]");
209 return decode((byte[]) pObject);
219 public byte[] decode(byte[] pArray) { method in class:Base64
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextResourceDecoder.cpp 365 String TextResourceDecoder::decode(const char* data, size_t len) function in class:WebCore::TextResourceDecoder
411 String result = m_codec->decode(dataForDecode, lengthForDecode, DoNotFlush, m_contentType == XMLContent && !m_useLenientXMLDecoding, m_sawError);
432 String result = m_codec->decode(m_buffer.data(), m_buffer.size(), FetchEOF, m_contentType == XMLContent && !m_useLenientXMLDecoding, m_sawError);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/test/
iLBC_testprogram.c 28 #include "decode.h"
58 short decode( /* (o) Number of decoded samples */ function
282 decode(&Dec_Inst, &decodeddata[count * Dec_Inst.blockl],
288 decode(&Dec_Inst, &decodeddata[count*Dec_Inst.blockl],
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.java 69 public static DecodedInstruction decode(CodeInput in) throws EOFException { method in class:DecodedInstruction
74 return format.decode(opcodeUnit, in);
89 decoded[in.cursor()] = DecodedInstruction.decode(in);
  /frameworks/base/services/tests/servicestests/src/com/android/server/updates/
CertPinInstallReceiverTest.java 140 byte[] derKey = Base64.decode(TEST_KEY.getBytes(), Base64.DEFAULT);
147 byte[] derCert = Base64.decode(TEST_CERT.getBytes(), Base64.DEFAULT);
180 return signer.verify(Base64.decode(signature.getBytes(), Base64.DEFAULT));
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoder.java 35 * <li>invoking the {@link #decode(ByteBuffer, CharBuffer, boolean) decode}
39 * <li>invoking the {@link #decode(ByteBuffer, CharBuffer, boolean) decode}
46 * The {@link #decode(ByteBuffer, CharBuffer, boolean) decode} method will
153 * This method should not be invoked while another {@code decode} operation
177 * if another exception happened during the decode operation.
179 public final CharBuffer decode(ByteBuffer in) throws CharacterCodingException { method in class:CharsetDecoder
186 CoderResult result = decode(in, out, true)
296 public final CoderResult decode(ByteBuffer in, CharBuffer out, boolean endOfInput) { method in class:CharsetDecoder
    [all...]

Completed in 1060 milliseconds

<<21222324252627282930>>