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

<<21222324252627282930>>

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
probability_entry.h 89 static ProbabilityEntry decode(const uint64_t encodedEntry, const bool hasHistoricalInfo) { function in class:latinime::ProbabilityEntry
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
JarUtils.java 48 return new JarFile(URLDecoder.decode(jarPath, "UTF-8"));
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-cipher-1.7.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/plexus/plexus-cipher/1.7/
plexus-cipher-1.7.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this? member in class:UserString
70 return self.__class__(self.data.decode(encoding, errors))
72 return self.__class__(self.data.decode(encoding))
74 return self.__class__(self.data.decode())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbtables.py 74 1).decode("iso8859-1")}) # 8 bits
106 {col0: pickle.dumps(8, 1).decode("iso8859-1"),
108 {col0: pickle.dumps(-1, 1).decode("iso8859-1"),
110 {col0: pickle.dumps(9, 1).decode("iso8859-1"),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 23 udir = s.decode("mbcs")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this? member in class:UserString
70 return self.__class__(self.data.decode(encoding, errors))
72 return self.__class__(self.data.decode(encoding))
74 return self.__class__(self.data.decode())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbtables.py 74 1).decode("iso8859-1")}) # 8 bits
106 {col0: pickle.dumps(8, 1).decode("iso8859-1"),
108 {col0: pickle.dumps(-1, 1).decode("iso8859-1"),
110 {col0: pickle.dumps(9, 1).decode("iso8859-1"),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 23 udir = s.decode("mbcs")
  /prebuilts/tools/common/m2/repository/org/sonatype/plexus/plexus-cipher/1.4/
plexus-cipher-1.4.jar 
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
SequenceTest.java 151 .decode(in));
188 seqVerify.decode(in);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
GeneralNameTest.java 67 GeneralNames.ASN1.decode(encoding);
80 OtherName.ASN1.decode(encoding);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
SignatureSpi.java 309 public BigInteger[] decode( method in class:SignatureSpi.StdDSAEncoder
367 public BigInteger[] decode( method in class:SignatureSpi.CVCDSAEncoder
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64Encoder.java 123 * decode the base 64 encoded byte data writing it to the given output stream,
128 public int decode( method in class:Base64Encoder
200 * decode the base 64 encoded String data writing it to the given output stream,
205 public int decode( method in class:Base64Encoder
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
BackgroundHTMLParser.cpp 106 updateDocument(m_decoder->decode(data, dataLength));
112 updateDocument(m_decoder->decode(buffer->data(), buffer->size()));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGenerator.cpp 104 // Prevents concurrent decode or scale operations on the same image data.
128 // Prevents concurrent decode or scale operations on the same image data.
188 OwnPtr<ScaledImageFragment> fullSizeImage = decode(index, &decoder);
201 // If decode has failed and resulted an empty image we can save work
229 PassOwnPtr<ScaledImageFragment> ImageFrameGenerator::decode(size_t index, ImageDecoder** decoder) function in class:WebCore::ImageFrameGenerator
231 TRACE_EVENT2("webkit", "ImageFrameGenerator::decode", "width", m_fullSize.width(), "height", m_fullSize.height());
278 // A cache object is considered complete if we can decode a complete frame.
299 // the memory provided by Skia and the decode was complete.
304 // This is to avoid future decode operations writing to the same bitmap.
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.h 212 bool decode(const unsigned char* data, size_t length, WebCore::GIFImageDecoder* client, bool* frameDecoded);
300 bool decode(size_t frameIndex);
  /external/chromium_org/third_party/skia/src/images/
SkDecodingImageGenerator.cpp 176 bool success = decoder->decode(fStream, &bitmap, info.colorType(),
229 if (!decoder->decode(stream, &bitmap, SkImageDecoder::kDecodeBounds_Mode)) {
SkImageDecoder.cpp 183 bool SkImageDecoder::decode(SkStream* stream, SkBitmap* bm, SkColorType pref, Mode mode) { function in class:SkImageDecoder
243 // check to see if the destination is large enough to decode the desired
299 success = codec->decode(stream, bm, pref, mode);
  /external/chromium_org/tools/deep_memory_profiler/lib/
pageframe.py 48 '>I', '\x00' + encoded_pagecount.decode('base64'))[0]
56 '>I', '\x00' + (encoded_pfn[start:end]).decode('base64'))[0]
  /external/chromium_org/v8/src/
frames-inl.h 78 return KindField::decode(Memory::unsigned_at(address() + offset));
84 return IndexField::decode(Memory::unsigned_at(address() + offset));
  /external/llvm/utils/lit/lit/
util.py 161 out = str(out.decode('ascii'))
165 err = str(err.decode('ascii'))
  /external/skia/src/images/
SkDecodingImageGenerator.cpp 176 bool success = decoder->decode(fStream, &bitmap, info.colorType(),
229 if (!decoder->decode(stream, &bitmap, SkImageDecoder::kDecodeBounds_Mode)) {
SkImageDecoder.cpp 183 bool SkImageDecoder::decode(SkStream* stream, SkBitmap* bm, SkColorType pref, Mode mode) { function in class:SkImageDecoder
243 // check to see if the destination is large enough to decode the desired
299 success = codec->decode(stream, bm, pref, mode);

Completed in 1075 milliseconds

<<21222324252627282930>>