/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
unicode_internal.py | 18 decode = codecs.unicode_internal_decode variable in class:Codec 25 def decode(self, input, final=False): member in class:IncrementalDecoder 40 decode=Codec.decode,
|
quopri_codec.py | 29 """Decode the input, returning a tuple (output object, length consumed). 39 quopri.decode(f, g) 47 def decode(self, input,errors='strict'): member in class:Codec 55 def decode(self, input, final=False): member in class:IncrementalDecoder 70 decode=quopri_decode,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
mbcs.py | 20 def decode(input, errors='strict'): function 34 decode = mbcs_decode variable in class:StreamReader 42 decode=decode,
|
raw_unicode_escape.py | 18 decode = codecs.raw_unicode_escape_decode variable in class:Codec 25 def decode(self, input, final=False): member in class:IncrementalDecoder 40 decode=Codec.decode,
|
undefined.py | 21 def decode(self,input,errors='strict'): member in class:Codec 29 def decode(self, input, final=False): member in class:IncrementalDecoder 44 decode=Codec().decode,
|
unicode_escape.py | 18 decode = codecs.unicode_escape_decode variable in class:Codec 25 def decode(self, input, final=False): member in class:IncrementalDecoder 40 decode=Codec.decode,
|
unicode_internal.py | 18 decode = codecs.unicode_internal_decode variable in class:Codec 25 def decode(self, input, final=False): member in class:IncrementalDecoder 40 decode=Codec.decode,
|
quopri_codec.py | 29 """Decode the input, returning a tuple (output object, length consumed). 39 quopri.decode(f, g) 47 def decode(self, input,errors='strict'): member in class:Codec 55 def decode(self, input, final=False): member in class:IncrementalDecoder 70 decode=quopri_decode,
|
/external/nanopb-c/examples/using_union_messages/ |
README.txt | 9 This directory contains an example on how to encode and decode union messages 27 ./encode 1 | ./decode 29 ./encode 2 | ./decode 31 ./encode 3 | ./decode 34 This simply demonstrates that the "decode" program has correctly identified 35 the type of the received message, and managed to decode it. 48 decode.c reads a UnionMessage from stdin. Then it calls the function
|
/art/benchmark/jobject-benchmark/ |
jobject_benchmark.cc | 28 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj); 39 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj); 43 CHECK_EQ(soa.Decode<mirror::Object*>(ref), obj); 51 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj); 62 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj); 66 CHECK_EQ(soa.Decode<mirror::Object*>(ref), obj); 74 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj); 85 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj); 89 CHECK_EQ(soa.Decode<mirror::Object*>(ref), obj); 98 soa.Decode<mirror::Object*>(jobj) [all...] |
/external/nanopb-c/tests/callbacks/ |
decode_callbacks.c | 21 /* Print the string, in format comparable with protoc --decode. 73 testmessage.submsg.stringvalue.funcs.decode = &print_string; 75 testmessage.submsg.int32value.funcs.decode = &print_int32; 77 testmessage.submsg.fixed32value.funcs.decode = &print_fixed32; 79 testmessage.submsg.fixed64value.funcs.decode = &print_fixed64; 82 testmessage.stringvalue.funcs.decode = &print_string; 84 testmessage.int32value.funcs.decode = &print_int32; 86 testmessage.fixed32value.funcs.decode = &print_fixed32; 88 testmessage.fixed64value.funcs.decode = &print_fixed64; 90 testmessage.repeatedstring.funcs.decode = &print_string [all...] |
/frameworks/compile/mclinker/include/mcld/Support/ |
LEB128.h | 26 IntType decode(const ByteType* pBuf, size_t& pSize); 29 IntType decode(const ByteType*& pBuf); 72 uint64_t decode<uint64_t>(const ByteType* pBuf, size_t& pSize); 79 uint64_t decode<uint64_t>(const ByteType*& pBuf); 85 int64_t decode<int64_t>(const ByteType* pBuf, size_t& pSize); 88 int64_t decode<int64_t>(const ByteType*& pBuf); 101 IntType decode(const char* pBuf, size_t& pSize) { function in namespace:mcld::leb128 102 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize); 106 IntType decode(const char*& pBuf) { function in namespace:mcld::leb128 107 return decode<IntType>(reinterpret_cast<const ByteType*&>(pBuf)) [all...] |
/prebuilts/go/darwin-x86/src/image/ |
format.go | 16 // A format holds an image format's name, magic header and how to decode it. 19 decode func(io.Reader) (Image, error) 26 // RegisterFormat registers an image format for use by Decode. 30 // Decode is the function that decodes the encoded image. 32 func RegisterFormat(name, magic string, decode func(io.Reader) (Image, error), decodeConfig func(io.Reader) (Config, error)) { 33 formats = append(formats, format{name, magic, decode, decodeConfig}) 74 // Decode decodes an image that has been encoded in a registered format. 78 func Decode(r io.Reader) (Image, string, error) { 81 if f.decode == nil { 84 m, err := f.decode(rr [all...] |
/prebuilts/go/linux-x86/src/image/ |
format.go | 16 // A format holds an image format's name, magic header and how to decode it. 19 decode func(io.Reader) (Image, error) 26 // RegisterFormat registers an image format for use by Decode. 30 // Decode is the function that decodes the encoded image. 32 func RegisterFormat(name, magic string, decode func(io.Reader) (Image, error), decodeConfig func(io.Reader) (Config, error)) { 33 formats = append(formats, format{name, magic, decode, decodeConfig}) 74 // Decode decodes an image that has been encoded in a registered format. 78 func Decode(r io.Reader) (Image, string, error) { 81 if f.decode == nil { 84 m, err := f.decode(rr [all...] |
/art/runtime/native/ |
java_lang_Object.cc | 28 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); 34 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); 40 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); 46 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); 52 mirror::Object* o = soa.Decode<mirror::Object*>(java_this);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/encodings/ |
quopri_codec.py | 29 """Decode the input, returning a tuple (output object, length consumed). 39 quopri.decode(f, g) 47 def decode(self, input,errors='strict'): member in class:Codec 55 def decode(self, input, final=False): member in class:IncrementalDecoder 70 decode=quopri_decode,
|
/prebuilts/gdb/linux-x86/lib/python2.7/encodings/ |
quopri_codec.py | 29 """Decode the input, returning a tuple (output object, length consumed). 39 quopri.decode(f, g) 47 def decode(self, input,errors='strict'): member in class:Codec 55 def decode(self, input, final=False): member in class:IncrementalDecoder 70 decode=quopri_decode,
|
/prebuilts/go/darwin-x86/src/encoding/gob/ |
example_test.go | 44 // Decode (receive) and print the values. 46 err = dec.Decode(&q) 48 log.Fatal("decode error 1:", err) 51 err = dec.Decode(&q) 53 log.Fatal("decode error 2:", err)
|
/prebuilts/go/linux-x86/src/encoding/gob/ |
example_test.go | 44 // Decode (receive) and print the values. 46 err = dec.Decode(&q) 48 log.Fatal("decode error 1:", err) 51 err = dec.Decode(&q) 53 log.Fatal("decode error 2:", err)
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
MacTest.java | 56 private static final byte[] KAT_KEY = HexEncoding.decode( 60 private static final byte[] SHORT_MSG_KAT_MESSAGE = HexEncoding.decode("a16037e3c901c9a1ab"); 67 new KatVector(HexEncoding.decode("4818c5466a1d05bc8f6ad4"), 68 HexEncoding.decode("aa178e4d174dc90d1ac3d22386c32d1af82396e7")), 69 new KatVector(HexEncoding.decode("8d07f59f63fc493711a2217d8603cbc4d9874c58"), 70 HexEncoding.decode("002215de36f8836e966ff459af80c4b31fe0ca27")), 71 new KatVector(HexEncoding.decode("f85f1c94023968729e3b4a7f495bf31c283b710662"), 72 HexEncoding.decode("f518db3015203606ea15145ad16b3d981db32a77")))); 75 HexEncoding.decode( 77 HexEncoding.decode( [all...] |
/toolchain/binutils/binutils-2.25/opcodes/ |
rl78-decode.c | 1 #line 1 "rl78-decode.opc" 203 #line 910 "rl78-decode.opc" 216 #line 273 "rl78-decode.opc" 226 #line 273 "rl78-decode.opc" 241 #line 264 "rl78-decode.opc" 256 #line 270 "rl78-decode.opc" 271 #line 276 "rl78-decode.opc" 286 #line 1233 "rl78-decode.opc" 303 #line 677 "rl78-decode.opc" 318 #line 227 "rl78-decode.opc [all...] |
/external/libmicrohttpd/src/microhttpd/ |
basicauth.c | 50 char *decode; local 60 if (NULL == (decode = BASE64Decode (header))) 69 if (NULL == (separator = strchr (decode, ':'))) 75 free (decode); 78 if (NULL == (user = strdup (decode))) 80 free (decode); 83 user[separator - decode] = '\0'; /* cut off at ':' */ 93 free (decode); 98 free (decode);
|
/external/v8/src/arm64/ |
decoder-arm64.h | 83 // Decode() will call the corresponding visitor method from all registered 85 // decode tree. 97 // d.Decode(i); 129 virtual void Decode(Instruction *instr); 132 // Decode the PC relative addressing instruction, and call the corresponding 137 // Decode the add/subtract immediate instruction, and call the corresponding 142 // Decode the branch, system command, and exception generation parts of 147 // Decode the load and store parts of the instruction tree, and call 152 // Decode the logical immediate and move wide immediate parts of the 157 // Decode the bitfield and extraction parts of the instruction tree [all...] |
/external/webrtc/webrtc/video/ |
video_decoder_unittest.cc | 32 int32_t Decode(const EncodedImage& input_image, 82 // Unfortunately faking a VP8 frame is hard. Rely on no Decode -> using SW 86 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1); 90 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1); 97 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1); 99 << "Wrapper did not try to decode a keyframe using registered decoder."; 102 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1); 114 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1)); 117 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1); 119 << "Decoder should be active even though previous decode failed." [all...] |
/external/opencv3/3rdparty/libtiff/ |
tif_predict.h | 43 TIFFCodeMethod encoderow; /* parent codec encode/decode row */ 44 TIFFCodeMethod encodestrip; /* parent codec encode/decode strip */ 45 TIFFCodeMethod encodetile; /* parent codec encode/decode tile */ 48 TIFFCodeMethod decoderow; /* parent codec encode/decode row */ 49 TIFFCodeMethod decodestrip; /* parent codec encode/decode strip */ 50 TIFFCodeMethod decodetile; /* parent codec encode/decode tile */
|