/prebuilts/go/darwin-x86/src/encoding/gob/ |
example_interface_test.go | 33 // We must register the concrete type for the encoder and decoder (which would 44 // Create a decoder and receive some values. 72 func interfaceDecode(dec *gob.Decoder) Pythagoras {
|
/prebuilts/go/linux-x86/doc/progs/ |
error.go | 96 func decodeError(dec *json.Decoder, val struct{}) error { // OMIT
|
/prebuilts/go/linux-x86/src/encoding/gob/ |
example_interface_test.go | 33 // We must register the concrete type for the encoder and decoder (which would 44 // Create a decoder and receive some values. 72 func interfaceDecode(dec *gob.Decoder) Pythagoras {
|
/prebuilts/go/darwin-x86/src/encoding/json/ |
example_test.go | 56 // This example uses a Decoder to decode a stream of distinct JSON values. 86 // This example uses a Decoder to decode a stream of distinct JSON values. 123 // This example uses a Decoder to decode a streaming array of JSON objects.
|
/prebuilts/go/linux-x86/src/encoding/json/ |
example_test.go | 56 // This example uses a Decoder to decode a stream of distinct JSON values. 86 // This example uses a Decoder to decode a stream of distinct JSON values. 123 // This example uses a Decoder to decode a streaming array of JSON objects.
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/ |
Image.c | 787 FALSE to locate image decoder instance to decode image.
818 EFI_HII_IMAGE_DECODER_PROTOCOL *Decoder;
851 Decoder = LocateHiiImageDecoder (CurrentImageBlock->BlockType);
852 if (Decoder == NULL) {
864 Status = Decoder->DecodeImage (
865 Decoder,
873 // Spec requires to use the first capable image decoder instance.
874 // The first image decoder instance may fail to decode the image.
[all...] |
/prebuilts/go/darwin-x86/src/encoding/xml/ |
read.go | 131 // Decode works like Unmarshal, except it reads the decoder 133 func (d *Decoder) Decode(v interface{}) error { 141 func (d *Decoder) DecodeElement(v interface{}, start *StartElement) error { 170 UnmarshalXML(d *Decoder, start StartElement) error 196 func (d *Decoder) unmarshalInterface(val Unmarshaler, start *StartElement) error { 197 // Record that decoder must stop at end tag corresponding to start. 218 func (d *Decoder) unmarshalTextInterface(val encoding.TextUnmarshaler) error { 241 func (d *Decoder) unmarshalAttr(val reflect.Value, attr Attr) error { 303 func (d *Decoder) unmarshal(val reflect.Value, start *StartElement) error { 668 // from the Decoder until start's matching end element, or if it' [all...] |
/prebuilts/go/linux-x86/src/encoding/xml/ |
read.go | 131 // Decode works like Unmarshal, except it reads the decoder 133 func (d *Decoder) Decode(v interface{}) error { 141 func (d *Decoder) DecodeElement(v interface{}, start *StartElement) error { 170 UnmarshalXML(d *Decoder, start StartElement) error 196 func (d *Decoder) unmarshalInterface(val Unmarshaler, start *StartElement) error { 197 // Record that decoder must stop at end tag corresponding to start. 218 func (d *Decoder) unmarshalTextInterface(val encoding.TextUnmarshaler) error { 241 func (d *Decoder) unmarshalAttr(val reflect.Value, attr Attr) error { 303 func (d *Decoder) unmarshal(val reflect.Value, start *StartElement) error { 668 // from the Decoder until start's matching end element, or if it' [all...] |
/external/llvm/lib/Target/AMDGPU/Disassembler/ |
AMDGPUDisassembler.cpp | 55 const void *Decoder) { \ 56 auto DAsm = static_cast<const AMDGPUDisassembler*>(Decoder); \
|
/external/lzma/CS/7zip/Compress/RangeCoder/ |
RangeCoder.cs | 122 class Decoder
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
SPIRVModule.cpp | [all...] |
/prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/ |
client.go | 20 dec *json.Decoder // for reading JSON values
|
server.go | 18 dec *json.Decoder // for reading JSON values
|
/prebuilts/go/linux-x86/src/net/rpc/jsonrpc/ |
client.go | 20 dec *json.Decoder // for reading JSON values
|
server.go | 18 dec *json.Decoder // for reading JSON values
|
/prebuilts/misc/common/robolectric/3.1.1/lib/ |
commons-codec-1.3.jar | |
/prebuilts/misc/common/robolectric/3.4.2/lib/ |
commons-codec-1.3.jar | |
/prebuilts/misc/common/robolectric/3.5.1/lib/ |
commons-codec-1.3.jar | |
/prebuilts/misc/common/robolectric/3.6.1/lib/ |
commons-codec-1.3.jar | |
/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.3/ |
commons-codec-1.3.jar | |
/bionic/tools/relocation_packer/src/ |
sleb128_unittest.cc | 90 TEST(Sleb128, Decoder) { 146 Sleb128Decoder<uint64_t> decoder(encoding, 0); 148 EXPECT_EQ(624485U, decoder.Dequeue()); 151 decoder.DequeueAll(&dequeued);
|
/external/libvpx/libvpx/test/ |
encode_test_driver.cc | 189 // Use fragment decoder if encoder outputs partitions. 190 // NOTE: fragment decoder and partition encoder are only supported by VP8. 194 testing::internal::scoped_ptr<Decoder> decoder( 216 if (decoder.get() != NULL && DoDecode()) { 217 vpx_codec_err_t res_dec = decoder->DecodeFrame( 220 if (!HandleDecodeResult(res_dec, *video, decoder.get())) break; 237 // Flush the decoder when there are no more fragments. 239 const vpx_codec_err_t res_dec = decoder->DecodeFrame(NULL, 0); 240 if (!HandleDecodeResult(res_dec, *video, decoder.get())) break [all...] |
encode_test_driver.h | 252 Decoder *decoder) { 253 EXPECT_EQ(VPX_CODEC_OK, res_dec) << decoder->DecodeError();
|
/external/lzma/CPP/7zip/UI/Common/ |
LoadCodecs.h | 72 CLSID Decoder;
|
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
LzmaAlone.cs | 326 Compression.LZMA.Decoder decoder = new Compression.LZMA.Decoder();
327 decoder.SetDecoderProperties(properties);
330 if (!decoder.Train(trainStream))
342 decoder.Code(inStream, outStream, compressedSize, outSize, null);
|