HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 1 - 25 of 1962) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
sugar.py 48 >>> result_lt = rc.decode(crop_center(rc.encode(masked_image_lt)))
50 Here, `decode` restores the original axes 'channel' and 'mask', so
102 def decode(self, labeled_tensor): member in class:ReshapeCoder
119 raise ValueError('decode called before encode')
  /external/tensorflow/tensorflow/contrib/slim/python/slim/data/
data_decoder.py 18 decoders decode the data (if necessary). A data decoder is provided with a
23 def Decode(self, data, items):
28 def Decode(self, data, items):
44 """An abstract class which is used to decode data for a provider."""
49 def decode(self, data, items): member in class:DataDecoder
67 """Lists the names of the items that the decoder can decode.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /external/adhd/cras/src/common/
cras_audio_codec.h 10 * decode - Function to decode audio samples. Returns the number of decoded
19 int (*decode)(struct cras_audio_codec *codec, const void *input, member in struct:cras_audio_codec
  /external/python/cpython2/Lib/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /external/python/cpython3/Lib/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=False): function
91 """Decode uuencoded file"""
121 out_file = hdrfields[2].rstrip(b' \t\r\n\f').decode("ascii")
165 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
181 if options.decode:
188 decode(input, output
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/cs/
ArrayDecoder.java 34 int decode(byte[] src, int off, int len, char[] dst); method in interface:ArrayDecoder
  /prebuilts/gdb/darwin-x86/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /prebuilts/gdb/linux-x86/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
PermutationChromosome.java 42 List<T> decode(List<T> sequence); method in interface:PermutationChromosome
  /external/apache-http/src/org/apache/commons/codec/
BinaryDecoder.java 42 * the decode process.
44 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
Decoder.java 45 * this decode method will throw a DecoderException.
47 * @param pObject an object to "decode"
57 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
StringDecoder.java 42 String decode(String pString) throws DecoderException; method in interface:StringDecoder
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Encoder.java 7 * Encode and decode byte arrays (typically from binary to 7-bit ASCII
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder
16 int decode(String data, OutputStream out) throws IOException; method in interface:Encoder
Base64.java 96 * decode the base 64 encoded input data. It is assumed the input data is valid.
100 public static byte[] decode( method in class:Base64
108 encoder.decode(data, 0, data.length, bOut);
112 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
119 * decode the base 64 encoded String data - whitespace will be ignored.
123 public static byte[] decode( method in class:Base64
131 encoder.decode(data, bOut);
135 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
142 * decode the base 64 encoded String data writing it to the given output stream,
147 public static int decode( method in class:Base64
163 public static int decode(byte[] base64Data, int start, int length, OutputStream out) method in class:Base64
    [all...]
Hex.java 95 * decode the Hex encoded input data. It is assumed the input data is valid.
99 public static byte[] decode( method in class:Hex
106 encoder.decode(data, 0, data.length, bOut);
117 * decode the Hex encoded String data - whitespace will be ignored.
121 public static byte[] decode( method in class:Hex
128 encoder.decode(data, bOut);
139 * decode the Hex encoded String data writing it to the given output stream,
144 public static int decode( method in class:Hex
149 return encoder.decode(data, out);
  /external/clang/tools/scan-build-py/libscanbuild/
shell.py 11 __all__ = ['encode', 'decode']
55 def decode(string): function
  /external/glide/library/src/main/java/com/bumptech/glide/load/
ResourceDecoder.java 33 Resource<Z> decode(T source, int width, int height) throws IOException; method in interface:ResourceDecoder
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
DeltaDecoder.java 17 public void decode(byte[] buf, int off, int len) { method in class:DeltaDecoder
  /external/sl4a/Common/src/org/apache/commons/codec/
BinaryDecoder.java 37 * the decode process.
39 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
Decoder.java 40 * this decode method will throw a DecoderException.
42 * @param pObject an object to "decode"
52 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
ImageDecoder.java 14 * Decode an image. The URI can be in one of the following formats:
27 Bitmap decode(Context context, Uri uri) throws Exception; method in interface:ImageDecoder
  /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...]

Completed in 1096 milliseconds

1 2 3 4 5 6 7 8 91011>>