HomeSort by relevance Sort by last modified time
    Searched full:encode (Results 1 - 25 of 1044) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
ASCIICharsetEncoderTest.java 125 method = "encode",
131 method = "encode",
139 encoder.encode(CharBuffer.wrap("\ud800\udc00"));
145 assertTrue(encoder.encode(CharBuffer.wrap("\ud800"), out, true)
150 assertSame(CoderResult.UNDERFLOW, encoder.encode(CharBuffer
152 assertTrue(encoder.encode(CharBuffer.wrap("\udc00"), out, true)
159 method = "encode",
168 ByteBuffer bb = encoder.encode(cb);
174 encoder.encode(cb);
181 encoder.encode(cb)
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
Hex.java 12 * encode the input data producing a Hex encoded byte array.
16 public static byte[] encode( method in class:Hex
19 return encode(data, 0, data.length);
23 * encode the input data producing a Hex encoded byte array.
27 public static byte[] encode( method in class:Hex
36 encoder.encode(data, off, length, bOut);
47 * Hex encode the byte data writing it to the given output stream.
51 public static int encode( method in class:Hex
56 return encoder.encode(data, 0, data.length, out);
60 * Hex encode the byte data writing it to the given output stream
64 public static int encode( method in class:Hex
    [all...]
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
Base64.java 12 * encode the input data producing a base 64 encoded byte array.
16 public static byte[] encode( method in class:Base64
23 encoder.encode(data, 0, data.length, bOut);
34 * Encode the byte data to base 64 writing it to the given output stream.
38 public static int encode( method in class:Base64
43 return encoder.encode(data, 0, data.length, out);
47 * Encode the byte data to base 64 writing it to the given output stream.
51 public static int encode( method in class:Base64
58 return encoder.encode(data, off, length, out);
Translator.java 14 public int encode(byte[] in, int inOff, int length, byte[] out, int outOff); method in interface:Translator
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
ASN1OutputStream.java 25 ((DERObject)obj).encode(this); method
29 ((DEREncodable)obj).getDERObject().encode(this);
BERConstructedSequence.java 14 void encode( method in class:BERConstructedSequence
34 super.encode(out);
BERNull.java 22 void encode( method in class:BERNull
32 super.encode(out);
BEROutputStream.java 25 ((DERObject)obj).encode(this); method
29 ((DEREncodable)obj).getDERObject().encode(this);
BERSequence.java 36 void encode( method in class:BERSequence
56 super.encode(out);
DERObject.java 18 abstract void encode(DEROutputStream out) method in class:DERObject
DEROctetString.java 23 void encode( method in class:DEROctetString
BERSet.java 46 void encode( method in class:BERSet
66 super.encode(out);
DEROutputStream.java 70 ((DERObject)obj).encode(this); method
74 ((DEREncodable)obj).getDERObject().encode(this);
ASN1Null.java 33 abstract void encode(DEROutputStream out) method in class:ASN1Null
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
AbstractCharsetEncoderTestCase.java 105 * methods which can change internal states are two encode, flush, two canEncode, reset
124 method = "encode",
129 method = "encode",
144 encoder.encode(CharBuffer.wrap("aaa"));
146 encoder.encode(CharBuffer.wrap("aaa"), ByteBuffer.allocate(3), false);
148 encoder.encode(CharBuffer.wrap("aaa"), ByteBuffer.allocate(3), true);
168 // Normal case: after encode with endOfInput is true
170 encoder.encode(in, out, true);
181 // Illegal state: flush after encode with endOfInput is false
183 encoder.encode(in, out, false)
    [all...]
  /external/v8/src/
frame-element.h 72 value_ = value_ | NumberInfoField::encode(info);
77 value_ = TypeField::encode(INVALID)
78 | CopiedField::encode(false)
79 | SyncedField::encode(false)
80 | NumberInfoField::encode(NumberInfo::kUninitialized)
81 | DataField::encode(0);
127 value_ = value_ | SyncedField::encode(true);
142 void set_copied() { value_ = value_ | CopiedField::encode(true); }
214 value_ = TypeField::encode(type)
215 | CopiedField::encode(false
    [all...]
  /external/elfutils/libelf/
gelf_xlatetof.c 29 gelf_xlatetof (elf, dest, src, encode)
33 unsigned int encode;
39 ? INTUSE(elf32_xlatetof) (dest, src, encode)
40 : INTUSE(elf64_xlatetof) (dest, src, encode));
gelf_xlatetom.c 29 gelf_xlatetom (elf, dest, src, encode)
33 unsigned int encode;
39 ? INTUSE(elf32_xlatetom) (dest, src, encode)
40 : INTUSE(elf64_xlatetom) (dest, src, encode));
version_xlate.h 25 elf_cvt_Verdef (void *dest, const void *src, size_t len, int encode)
29 them one after the other. The ENCODE parameter specifies whether
60 if (! encode)
87 if (encode)
93 if (! encode)
98 /* Encode now if necessary. */
99 if (encode)
119 elf_cvt_Verneed (void *dest, const void *src, size_t len, int encode)
123 them one after the other. The ENCODE parameter specifies whether
154 if (! encode)
    [all...]
  /build/tools/droiddoc/src/
LiteralTagInfo.java 19 private static String encode(String t) method in class:LiteralTagInfo
29 super("Text", "Text", encode(t), sp);
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 33 * @tests URLEncoder#encode(String, String)
38 method = "encode",
44 URLEncoder.encode("str","unknown_enc");
51 URLEncoder.encode(null, "harmony");
  /external/dropbear/libtomcrypt/
TODO 11 - add CPP macros like OpenSSL has for ASN1 (e.g. encode/decode functions, etc) shameless ripoff :-)
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.AAC.encode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G711.encode

Completed in 3048 milliseconds

1 2 3 4 5 6 7 8 91011>>