/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
BitStringTest.java | 62 // decode from byte array 68 BitString decoded = (BitString) asn1.decode(in); 77 // decode from input stream 83 BitString decoded = (BitString) asn1.decode(in); 119 ASN1BitString.getInstance().decode(in); 164 .decode(in))); 206 .decode(in)));
|
ImplicitTest.java | 169 ((ASN1Type) taggedType[i][2]).decode(in)); 212 // decode primitive 214 .decode(primitiveEncoding))); 219 // decode constructed 221 type2.decode(constructedEncoding);
|
IntegerTest.java | 91 // decode from byte array 96 (byte[]) asn1.decode(in))); // returned 99 // decode from input stream 105 (byte[]) asn1.decode(in))); //returned 134 ASN1Integer.getInstance().decode(in);
|
/external/chromium_org/content/renderer/media/ |
rtc_video_decoder.h | 38 // This class uses hardware accelerated video decoder to decode video for 42 // |vda_message_loop_|. Decode() is non-blocking and queues the buffers. Decoded 62 virtual int32_t Decode( 134 // Saves a WebRTC buffer in |decode_buffers_| for decode. 144 // Gets SHM and moves pending buffers to decode buffers. 215 // Metadata of the buffers that have been sent for decode. 261 // decode. The queue owns SHM buffers. Guarded by |lock_|.
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Decoder.java | 38 public int Decode(SevenZip.Compression.RangeCoder.Decoder rangeDecoder, int posState) throws IOException
41 return m_LowCoder[posState].Decode(rangeDecoder);
44 symbol += m_MidCoder[posState].Decode(rangeDecoder);
46 symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
262 len = m_RepLenDecoder.Decode(m_RangeDecoder, posState) + Base.kMatchMinLen;
271 len = Base.kMatchMinLen + m_LenDecoder.Decode(m_RangeDecoder, posState);
273 int posSlot = m_PosSlotDecoder[Base.GetLenToPosState(len)].Decode(m_RangeDecoder);
|
/frameworks/volley/src/com/android/volley/toolbox/ |
ImageRequest.java | 49 /** Decoding lock so that we don't decode more than one image at a time (to avoid OOM's) */ 63 * @param maxWidth Maximum width to decode this bitmap to, or zero for none 64 * @param maxHeight Maximum height to decode this bitmap to, or zero for 66 * @param decodeConfig Format to decode the bitmap to 123 // Serialize all decode on a global lock to reduce concurrent heap usage. 151 // Then compute the dimensions we would ideally like to decode to. 157 // Decode to the nearest power of two scaling factor.
|
/external/chromium_org/third_party/JSON/JSON-2.59/ |
README | 48 $perl_scalar = $json->decode( $json_text ); 202 $perl_scalar = JSON->new->utf8->decode($json_text) 237 $perl_scalar = JSON->decode($json_text) 249 $perl_scalar = JSON->new->utf8(1)->decode($json_text) 276 HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER 287 my $perl_scalar = $json->decode( $json_text ); 295 If an outer data is not encoded in UTF-8, firstly you should "decode" 302 my $unicode_json_text = decode( $encoding, <$fh> ); # UNICODE 314 $perl_scalar = $json->utf8(0)->decode( $unicode_json_text ); 349 Or "decode $encoding" all string values and "encode_json" [all...] |
/external/chromium_org/third_party/JSON/JSON-2.59/blib/man3/ |
JSON__backportPP.3pm | 150 \& $perl_scalar = $json\->decode( $json_text ); 230 \& $perl_scalar = JSON::PP\->new\->utf8\->decode($json_text) 255 .SH "HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER" 256 .IX Header "HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER" 267 \& my $perl_scalar = $json\->decode( $json_text ); 276 If an outer data is not encoded in \s-1UTF\-8\s0, firstly you should \f(CW\*(C`decode\*(C'\fR it. 283 \& my $unicode_json_text = decode( $encoding, <$fh> ); # UNICODE 296 \& $perl_scalar = $json\->utf8(0)\->decode( $unicode_json_text ); 332 Or \f(CW\*(C`decode $encoding\*(C'\fR all string values and \f(CW\*(C`encode_json\*(C'\fR: 335 \& $perl_scalar\->{ foo } = decode( $encoding, $perl_scalar\->{ foo } ) [all...] |
/external/chromium_org/third_party/JSON/out/man/man3/ |
JSON__backportPP.3pm | 150 \& $perl_scalar = $json\->decode( $json_text ); 230 \& $perl_scalar = JSON::PP\->new\->utf8\->decode($json_text) 255 .SH "HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER" 256 .IX Header "HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER" 267 \& my $perl_scalar = $json\->decode( $json_text ); 276 If an outer data is not encoded in \s-1UTF\-8\s0, firstly you should \f(CW\*(C`decode\*(C'\fR it. 283 \& my $unicode_json_text = decode( $encoding, <$fh> ); # UNICODE 296 \& $perl_scalar = $json\->utf8(0)\->decode( $unicode_json_text ); 332 Or \f(CW\*(C`decode $encoding\*(C'\fR all string values and \f(CW\*(C`encode_json\*(C'\fR: 335 \& $perl_scalar\->{ foo } = decode( $encoding, $perl_scalar\->{ foo } ) [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
IntegerTest.java | 67 * @tests java.lang.Integer#decode(java.lang.String) 71 // java.lang.Integer.decode(java.lang.String) 73 132233, Integer.decode("132233").intValue()); 75 07654321, Integer.decode("07654321").intValue()); 77 Integer.decode("#1234567").intValue() == 0x1234567); 79 Integer.decode("0xdAd").intValue() == 0xdad); 80 assertEquals("Failed for -23", -23, Integer.decode("-23").intValue()); 82 .decode("0").intValue()); 83 assertEquals("Returned incorrect value for 0 hex", 0, Integer.decode("0x0") 86 Integer.decode("-2147483648").intValue() == 0x80000000) [all...] |
/external/chromium_org/mojo/apps/js/bindings/ |
codec.js | 126 // TODO(abarth): To correctly decode a pointer, we need to know the real 145 // jump out of the VM to decode the string directly from the array 164 val[i] = cls.decode(this); 170 return cls.decode(this.decodeAndCreateDecoder()); 324 return cls.decode(this.decoder); 334 Uint8.decode = function(decoder) { 347 Uint16.decode = function(decoder) { 360 Uint32.decode = function(decoder) { 373 Uint64.decode = function(decoder) { 393 PointerTo.prototype.decode = function(decoder) [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
showdb.c | 127 /* Print a line of decode output showing a 4-byte integer. 131 int ofst, int nByte, /* Start and size of decode */ 153 ** Decode the database header. 340 ** Decode a btree page 368 printf("Decode of btree page %d:\n", pgno); 418 ** Decode a freelist trunk page. 430 printf("Decode of freelist trunk page %d:\n", pgno); 463 " NNNb Decode btree page NNN\n" 464 " NNNbc Decode btree page NNN and show content\n" 465 " NNNbm Decode btree page NNN and show a layout map\n [all...] |
/external/chromium_org/v8/src/ |
compiler.h | 66 bool is_lazy() const { return IsLazy::decode(flags_); } 67 bool is_eval() const { return IsEval::decode(flags_); } 68 bool is_global() const { return IsGlobal::decode(flags_); } 72 return LanguageModeField::decode(flags_); 74 bool is_in_loop() const { return IsInLoop::decode(flags_); } 120 return IsNative::decode(flags_); 132 return IsDeferredCalling::decode(flags_); 140 return IsNonDeferredCalling::decode(flags_); 148 return SavesCallerDoubles::decode(flags_); 156 return RequiresFrame::decode(flags_) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
X509CertPathImpl.java | 189 return (X509CertPathImpl) ASN1.decode(in); 191 throw new CertificateException("Failed to decode CertPath", e); 213 return (X509CertPathImpl) ASN1.decode(in); 215 return getCertPathFromContentInfo((ContentInfo) ContentInfo.ASN1.decode(in)); 220 throw new CertificateException("Failed to decode CertPath", e); 232 return (X509CertPathImpl) ASN1.decode(in); 234 throw new CertificateException("Failed to decode CertPath", e); 256 return (X509CertPathImpl) ASN1.decode(in); 258 return getCertPathFromContentInfo((ContentInfo) ContentInfo.ASN1.decode(in)); 263 throw new CertificateException("Failed to decode CertPath", e) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
Standard_Suite.py | 39 # XXXX Optionally decode result 65 # XXXX Optionally decode result 85 # XXXX Optionally decode result 112 # XXXX Optionally decode result 133 # XXXX Optionally decode result 154 # XXXX Optionally decode result 185 # XXXX Optionally decode result 210 # XXXX Optionally decode result 230 # XXXX Optionally decode result 250 # XXXX Optionally decode resul [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/ |
Standard_Suite.py | 39 # XXXX Optionally decode result 65 # XXXX Optionally decode result 85 # XXXX Optionally decode result 112 # XXXX Optionally decode result 133 # XXXX Optionally decode result 154 # XXXX Optionally decode result 185 # XXXX Optionally decode result 210 # XXXX Optionally decode result 230 # XXXX Optionally decode result 250 # XXXX Optionally decode resul [all...] |
/external/llvm/utils/TableGen/ |
X86RecognizableInstr.h | 30 /// RecognizableInstr - Encapsulates all information required to decode a single 96 /// Indicates whether the instruction should be emitted into the decode 128 /// have the same decoding. Because these would cause decode conflicts, 237 /// emitDecodePath - Populates the proper fields in the decode tables 238 /// corresponding to the decode paths for this instruction. 240 /// \param tables The DisassemblerTables to populate with the decode 241 /// decode information for the current instruction. 254 /// processInstr - Accepts a CodeGenInstruction and loads decode information 257 /// \param tables The DiassemblerTables to be populated with decode
|
DisassemblerEmitter.cpp | 25 /// *** IF YOU'RE HERE TO RESOLVE A "Primary decode conflict", LOOK DOWN NEAR 49 /// each instruction and how to decode them. 52 /// occupy the same space in the decode tables. These conflicts are resolved as 64 /// *** RESOLUTION FOR "Primary decode conflict"S 122 "Primary decode conflict");
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
entropy_coding.h | 27 * Decode real and imaginary part of the DFT coefficients, given a bit-stream. 79 /* decode & dequantize LPC Coef */ 136 * Decode LPC coefficients and interpolate to get the coefficients fo all 166 /* Decode & dequantize RC */ 172 /* Decode & dequantize squared Gain */ 243 * Decode the LPC gain of sub-frames. 281 * Decode the bandwidth of the encoded audio, i.e. if the bandwidth is 0-12 kHz 302 * Decode the jitter information. 323 * Decode the jitter information.
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
OutputStreamTesterTest.java | 150 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.FilterOutputStreamTester 166 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.BufferedOutputStreamTester 177 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.DataOutputStreamTester 188 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.ObjectOutputStreamTester 200 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.PrintStreamTester
|
/external/apache-http/src/org/apache/commons/codec/net/ |
BCodec.java | 140 * A decoder exception is thrown if a failure condition is encountered during the decode process. 142 public String decode(String value) throws DecoderException { method in class:BCodec 185 * A decoder exception is thrown if a failure condition is encountered during the decode process. 187 public Object decode(Object value) throws DecoderException { method in class:BCodec 191 return decode((String) value);
|
/external/chromium_org/media/filters/ |
video_frame_stream.h | 40 DECODE_ERROR, // Decoder returned decode error. 78 // Returns true if the decoder currently has the ability to decode and return 86 STATE_NORMAL, // Includes idle, pending decoder decode/reset/stop. 108 void Decode(const scoped_refptr<DecoderBuffer>& buffer); 114 // Callback for VideoDecoder::Decode().
|
/external/chromium_org/third_party/skia/src/utils/ |
SkBase64.cpp | 37 SkBase64::Error SkBase64::decode(const void* srcPtr, size_t size, bool writeDestination) { function in class:SkBase64 156 SkBase64::Error SkBase64::decode(const char* src, size_t len) { 157 Error err = decode(src, len, false); 162 decode(src, len, true); 178 tryMe.decode(src, encodeLength);
|
/external/skia/src/utils/ |
SkBase64.cpp | 37 SkBase64::Error SkBase64::decode(const void* srcPtr, size_t size, bool writeDestination) { function in class:SkBase64 156 SkBase64::Error SkBase64::decode(const char* src, size_t len) { 157 Error err = decode(src, len, false); 162 decode(src, len, true); 178 tryMe.decode(src, encodeLength);
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
decode.c | 12 * decode.c 74 /* decode framelength and BW estimation - not used, only for stream pointer*/ 89 /* decode & dequantize pitch parameters */ 100 /* decode & dequantize FiltCoef */ 107 /* decode & dequantize spectrum */
|