HomeSort by relevance Sort by last modified time
    Searched defs:encode (Results 1 - 25 of 2041) 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)))
65 def encode(self, labeled_tensor): member in class:ReshapeCoder
105 This is the inverse of encode.
106 Encode must have been called at least once prior to this method being
116 ValueError: If this method was called before encode was called.
119 raise ValueError('decode called before encode')
  /libcore/ojluni/src/main/java/sun/security/x509/
FreshestCRLExtension.java 96 public void encode(OutputStream out) throws IOException { method in class:FreshestCRLExtension
97 super.encode(out, PKIXExtensions.FreshestCRL_Id, false);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uu.py 29 encode(in_file, out_file [,name, mode])
37 __all__ = ["Error", "encode", "decode"]
42 def encode(in_file, out_file, name=None, mode=None): function
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
193 encode(input, output)
  /external/adhd/cras/src/common/
cras_audio_codec.h 13 * encode - Function to encode audio samples. Returns the number of encoded
22 int (*encode)(struct cras_audio_codec *codec, const void *input, member in struct:cras_audio_codec
  /external/python/cpython2/Lib/
uu.py 29 encode(in_file, out_file [,name, mode])
37 __all__ = ["Error", "encode", "decode"]
42 def encode(in_file, out_file, name=None, mode=None): function
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
193 encode(input, output)
  /external/python/cpython3/Lib/
uu.py 29 encode(in_file, out_file [,name, mode])
37 __all__ = ["Error", "encode", "decode"]
42 def encode(in_file, out_file, name=None, mode=None): function
79 out_file.write(('begin %o %s\n' % ((mode & 0o777), name)).encode("ascii"))
165 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
196 encode(input, output)
  /libcore/ojluni/src/main/java/sun/nio/cs/
ArrayEncoder.java 34 int encode(char[] src, int off, int len, byte[] dst); method in interface:ArrayEncoder
  /prebuilts/gdb/darwin-x86/lib/python2.7/
uu.py 29 encode(in_file, out_file [,name, mode])
37 __all__ = ["Error", "encode", "decode"]
42 def encode(in_file, out_file, name=None, mode=None): function
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
193 encode(input, output)
  /prebuilts/gdb/linux-x86/lib/python2.7/
uu.py 29 encode(in_file, out_file [,name, mode])
37 __all__ = ["Error", "encode", "decode"]
42 def encode(in_file, out_file, name=None, mode=None): function
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
193 encode(input, output)
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/
proto_test.go 34 t.Errorf("failed encode %d, got %v, want %v", i, got, want)
64 func (u *packedInts) encode(b *buffer) { func
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/
proto_test.go 34 t.Errorf("failed encode %d, got %v, want %v", i, got, want)
64 func (u *packedInts) encode(b *buffer) { func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uu.py 29 encode(in_file, out_file [,name, mode])
37 __all__ = ["Error", "encode", "decode"]
42 def encode(in_file, out_file, name=None, mode=None): function
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
193 encode(input, output)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uu.py 29 encode(in_file, out_file [,name, mode])
37 __all__ = ["Error", "encode", "decode"]
42 def encode(in_file, out_file, name=None, mode=None): function
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
193 encode(input, output)
  /external/apache-http/src/org/apache/commons/codec/
BinaryEncoder.java 44 byte[] encode(byte[] pArray) throws EncoderException; method in interface:BinaryEncoder
Encoder.java 40 * @param pObject An object ot encode
48 Object encode(Object pObject) throws EncoderException; method in interface:Encoder
StringEncoder.java 35 * @param pString a String to encode
42 String encode(String pString) throws EncoderException; method in interface:StringEncoder
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROutputStream.java 39 ((ASN1Primitive)obj).encode(this); method
43 ((ASN1Encodable)obj).toASN1Primitive().encode(this);
  /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
12 int encode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder
  /external/clang/tools/scan-build-py/libscanbuild/
shell.py 11 __all__ = ['encode', 'decode']
14 def encode(command): function
  /external/doclava/src/com/google/doclava/
CodeTagInfo.java 26 private static String encode(String t) { method in class:CodeTagInfo
34 super("@code", "@code", encode(text), sp);
LiteralTagInfo.java 26 private static String encode(String t) { method in class:LiteralTagInfo
34 super("Text", "Text", encode(text), sp);
  /external/glide/library/src/main/java/com/bumptech/glide/load/
Encoder.java 19 boolean encode(T data, OutputStream os); method in interface:Encoder
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
DeltaEncoder.java 17 public void encode(byte[] in, int in_off, int len, byte[] out) { method in class:DeltaEncoder
  /external/sl4a/Common/src/org/apache/commons/codec/
BinaryEncoder.java 39 byte[] encode(byte[] pArray) throws EncoderException; method in interface:BinaryEncoder
Encoder.java 35 * @param pObject An object ot encode
43 Object encode(Object pObject) throws EncoderException; method in interface:Encoder

Completed in 888 milliseconds

1 2 3 4 5 6 7 8 91011>>