| /external/nanopb-c/tests/alltypes_callback/ |
| encode_alltypes_callback.c | 208 alltypes.req_int32.funcs.encode = &write_varint; 211 alltypes.req_int64.funcs.encode = &write_varint; 214 alltypes.req_uint32.funcs.encode = &write_varint; 217 alltypes.req_uint32.funcs.encode = &write_varint; 220 alltypes.req_uint64.funcs.encode = &write_varint; 223 alltypes.req_sint32.funcs.encode = &write_svarint; 226 alltypes.req_sint64.funcs.encode = &write_svarint; 229 alltypes.req_bool.funcs.encode = &write_varint; 232 alltypes.req_fixed32.funcs.encode = &write_fixed32; 235 alltypes.req_sfixed32.funcs.encode = &write_fixed32 [all...] |
| /external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/ |
| Encoder.java | 20 * Helper class to encode a mojo struct. It keeps track of the output buffer, resizing it as needed. 32 * The core used to encode interfaces. 142 result.encode(dataHeader); 147 * Encode a {@link DataHeader} and claim the amount of memory required for the data section 150 public void encode(DataHeader s) { method in class:Encoder 152 encode(s.size, DataHeader.SIZE_OFFSET); method 153 encode(s.numFields, DataHeader.NUM_FIELDS_OFFSET); method 157 * Encode a byte at the given offset. 159 public void encode(byte v, int offset) { method in class:Encoder 164 * Encode a boolean at the given offset 166 public void encode(boolean v, int offset, int bit) { method in class:Encoder 177 public void encode(short v, int offset) { method in class:Encoder 184 public void encode(int v, int offset) { method in class:Encoder 191 public void encode(float v, int offset) { method in class:Encoder 198 public void encode(long v, int offset) { method in class:Encoder 205 public void encode(double v, int offset) { method in class:Encoder 212 public void encode(Struct v, int offset, boolean nullable) { method in class:Encoder 224 public void encode(String v, int offset, boolean nullable) { method in class:Encoder 238 public void encode(Handle v, int offset, boolean nullable) { method in class:Encoder 250 public <T extends Interface> void encode(T v, int offset, boolean nullable, method in class:Encoder 264 encode(((HandleOwner<?>) proxy.getMessageReceiver()).passHandle(), offset, method 273 encode(handles.second, offset, nullable); method 279 public <I extends Interface> void encode(InterfaceRequest<I> v, int offset, boolean nullable) { method in class:Encoder 301 public void encode(boolean[] v, int offset, int arrayNullability, int expectedLength) { method in class:Encoder 325 public void encode(byte[] v, int offset, int arrayNullability, int expectedLength) { method in class:Encoder 340 public void encode(short[] v, int offset, int arrayNullability, int expectedLength) { method in class:Encoder 351 public void encode(int[] v, int offset, int arrayNullability, int expectedLength) { method in class:Encoder 362 public void encode(float[] v, int offset, int arrayNullability, int expectedLength) { method in class:Encoder 373 public void encode(long[] v, int offset, int arrayNullability, int expectedLength) { method in class:Encoder 384 public void encode(double[] v, int offset, int arrayNullability, int expectedLength) { method in class:Encoder 395 public void encode(Handle[] v, int offset, int arrayNullability, int expectedLength) { method in class:Encoder 411 public <T extends Interface> void encode(T[] v, int offset, int arrayNullability, method in class:Encoder 428 public <I extends Interface> void encode(InterfaceRequest<I>[] v, int offset, method in class:Encoder 466 encode((long) mEncoderState.dataEnd - (mBaseOffset + offset), offset); method [all...] |
| Struct.java | 91 protected abstract void encode(Encoder encoder); method in class:Struct 101 encode(encoder); 114 header.encode(encoder); 115 encode(encoder);
|
| /external/nist-sip/java/gov/nist/core/ |
| HostPort.java | 66 * Encode this hostport into its string representation. 71 public String encode() { method in class:HostPort 72 return encode(new StringBuffer()).toString(); 75 public StringBuffer encode(StringBuffer buffer) { method in class:HostPort 76 host.encode(buffer); 164 return this.encode();
|
| /external/nist-sip/java/gov/nist/javax/sip/header/ |
| SIPHeader.java | 94 encodedHdr = this.encode(); 115 /** Encode this header into canonical form. 117 public String encode() { method in class:SIPHeader 118 return encode(new StringBuffer()).toString(); 121 public StringBuffer encode(StringBuffer buffer) { method in class:SIPHeader 128 /** Encode the body of this header (the stuff that follows headerName). 133 /** Encode the body of this header in the given buffer. 155 return this.encode();
|
| ReplyTo.java | 72 * Encode the header into a String. 75 public String encode() { method in class:ReplyTo 80 * Encode the header content into a String. 88 retval += address.encode(); 93 retval += SEMICOLON + parameters.encode();
|
| ReferTo.java | 62 * Encode the header content into a String. 72 retval += address.encode(); 78 retval += SEMICOLON + parameters.encode();
|
| /external/elfutils/0.153/libelf/ |
| note_xlate.h | 51 elf_cvt_note (void *dest, const void *src, size_t len, int encode) 58 encode); 59 const Elf32_Nhdr *n = encode ? src : dest;
|
| /external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
| ImageVideoWrapperEncoder.java | 21 public boolean encode(ImageVideoWrapper data, OutputStream os) { method in class:ImageVideoWrapperEncoder 23 return streamEncoder.encode(data.getStream(), os); 25 return fileDescriptorEncoder.encode(data.getFileDescriptor(), os);
|
| /external/lldb/test/ |
| progress.py | 18 light_block = unichr(0x2591).encode("utf-8") 19 solid_block = unichr(0x2588).encode("utf-8") 20 solid_right_arrow = unichr(0x25BA).encode("utf-8") 26 fill=unichr(0x25C9).encode("utf-8"), 27 blank=unichr(0x25CC).encode("utf-8"), 28 marker=unichr(0x25CE).encode("utf-8"), 82 fill=unichr(0x25C9).encode("utf-8"), 83 blank=unichr(0x25CC).encode("utf-8"), 84 marker=unichr(0x25CE).encode("utf-8"), 108 fill=unichr(0x25C9).encode("utf-8"), [all...] |
| /external/chromium_org/v8/src/ |
| field-index.h | 78 bit_field_ = IsInObjectBits::encode(is_inobject) | 79 IsDoubleBits::encode(is_double) | 80 FirstInobjectPropertyOffsetBits::encode(first_inobject_property_offset) | 81 IsHiddenField::encode(is_hidden) | 82 IndexBits::encode(local_index) | 83 InObjectPropertyBits::encode(inobject_properties);
|
| /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
| TimeTest.java | 41 byte[] enc = Time.ASN1.encode(new Date(march2006)); 45 enc = Time.ASN1.encode(new Date(march2332));
|
| /external/apache-http/src/org/apache/commons/codec/ |
| StringEncoderComparator.java | 78 Comparable s1 = (Comparable) ((Encoder) this.stringEncoder).encode(o1); 79 Comparable s2 = (Comparable) ((Encoder) this.stringEncoder).encode(o2);
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
| DEROctetString.java | 34 void encode( method in class:DEROctetString 41 static void encode( method in class:DEROctetString
|
| DERNull.java | 34 void encode( method in class:DERNull
|
| DEROutputStream.java | 24 obj.toASN1Primitive().toDERObject().encode(this);
|
| DLOutputStream.java | 24 obj.toASN1Primitive().toDLObject().encode(this);
|
| /external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
| TextEncoder.idl | 40 [MeasureAs=TextEncoderEncode] Uint8Array encode(optional ScalarValueString input = "");
|
| /external/clang/test/Index/ |
| complete-at-exprstmt.m | 9 @synchronized (@encode(MyClass)) { } 23 // CHECK-CC1: {TypedText encode}{LeftParen (}{Placeholder type-name}{RightParen )} 30 // CHECK-CC2: {TypedText encode}{LeftParen (}{Placeholder type-name}{RightParen )} 34 // CHECK-CC3: NotImplemented:{ResultType char[]}{TypedText @encode}{LeftParen (}{Placeholder type-name}{RightParen )}
|
| /external/openfst/src/script/ |
| encode.cc | 19 #include <fst/encode.h> 20 #include <fst/script/encode.h> 25 void Encode(MutableFstClass *ofst, uint32 flags, bool reuse_encoder, 29 Apply<Operation<EncodeArgs> >("Encode", ofst->ArcType(), &args); 32 REGISTER_FST_OPERATION(Encode, StdArc, EncodeArgs); 33 REGISTER_FST_OPERATION(Encode, LogArc, EncodeArgs); 34 REGISTER_FST_OPERATION(Encode, Log64Arc, EncodeArgs);
|
| /external/chromium_org/third_party/skia/src/utils/ |
| SkBase64.cpp | 112 size_t SkBase64::Encode(const void* srcPtr, size_t length, void* dstPtr, const char* encodeMap) { 113 const char* encode; 115 encode = default_encode; 117 encode = encodeMap; 132 *dst++ = encode[a]; 133 *dst++ = encode[b]; 134 *dst++ = encode[c]; 135 *dst++ = encode[d]; 147 *dst++ = encode[a >> 2]; 148 *dst++ = encode[(k1 | a << 4) & 0x3F] [all...] |
| /external/lzma/CPP/7zip/Compress/ |
| CodecExports.cpp | 33 static HRESULT SetClassID(CMethodId id, bool encode, PROPVARIANT *value)
38 if (encode)
43 static HRESULT FindCodecClassId(const GUID *clsID, UInt32 isCoder2, bool isFilter, bool &encode, int &index)
50 encode = (clsID->Data3 != kDecodeId);
57 if (id != codec.Id || encode && !codec.CreateEncoder || !encode && !codec.CreateDecoder)
68 STDAPI CreateCoder2(bool encode, UInt32 index, const GUID *iid, void **outObject)
79 if (encode)
109 bool encode;
111 HRESULT res = FindCodecClassId(clsid, isCoder2, isFilter, encode, codecIndex); [all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
| DSAEncoder.java | 8 byte[] encode(BigInteger r, BigInteger s) method in interface:DSAEncoder
|
| /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/chromium_org/third_party/brotli/src/brotli/enc/ |
| Makefile | 5 OBJS = backward_references.o block_splitter.o encode.o entropy_encode.o histogram.o literal_cost.o prefix.o
|