Searched refs:encode (Results 226 - 250 of 580) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
H A DReferences.java78 return callId + ";" + super.parameters.encode();
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPUserDatabase.java82 retval.append(SEMICOLON + this.parameters.encode());
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DRequestLineParser.java90 System.out.println("encoded = " + rl.encode());
H A DUserAgentParser.java143 parser.parse(); System.out.println("encoded = " + ua.encode()); }
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
H A DJoinParser.java71 System.out.print("encoded = " + t.encode() + "==> ");
H A DMinSEParser.java76 System.out.println("encoded = " + t.encode());
H A DReplacesParser.java73 System.out.print("encoded = " + t.encode() + "==> ");
H A DSessionExpiresParser.java74 System.out.println("encoded = " + t.encode());
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHuffmanTest.java49 Huffman.get().encode(buf, dos);
/external/openfst/src/bin/
H A Dfstencode.cc23 #include <fst/script/encode.h>
/external/openfst/src/include/fst/script/
H A Dencode.h24 #include <fst/encode.h>
/external/v8/src/
H A Dscopeinfo.h67 value_ = ModeField::encode(mode) | IndexField::encode(index) |
68 InitField::encode(init_flag) |
69 MaybeAssignedField::encode(maybe_assigned_flag);
H A Dscopeinfo.cc56 int flags = ScopeTypeField::encode(scope->scope_type()) |
57 CallsEvalField::encode(scope->calls_eval()) |
58 StrictModeField::encode(scope->strict_mode()) |
59 FunctionVariableField::encode(function_name_info) |
60 FunctionVariableMode::encode(function_variable_mode) |
61 AsmModuleField::encode(scope->asm_module()) |
62 AsmFunctionField::encode(scope->asm_function());
103 ContextLocalMode::encode(var->mode()) |
104 ContextLocalInitFlag::encode(var->initialization_flag()) |
105 ContextLocalMaybeAssignedFlag::encode(va
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dencoder.py244 l = local_len(element.encode('utf-8'))
250 l = local_len(value.encode('utf-8'))
393 return "".encode("latin1").join(pieces) ##PY25
525 second attempt to encode those values.
532 b = _PY2 and (lambda x:x) or (lambda x:x.encode('latin1')) ##PY25
562 raise ValueError('Can\'t encode floating-point values that are '
636 false_byte = '\x00'.encode('latin1') ##PY25
637 true_byte = '\x01'.encode('latin1') ##PY25
680 encoded = element.encode('utf-8')
687 encoded = value.encode('ut
[all...]
/external/nanopb-c/tests/encode_unittests/
H A Dencode_unittests.c245 msg.data.funcs.encode = &fieldcallback;
301 msg.submsg.data.funcs.encode = &fieldcallback;
302 msg2.submsg.submsg.data.funcs.encode = &fieldcallback;
310 msg.submsg.data.funcs.encode = &crazyfieldcallback;
312 msg2.submsg.submsg.data.funcs.encode = &crazyfieldcallback;
/external/nist-sip/java/gov/nist/core/
H A DGenericObjectList.java347 public String encode() { method in class:GenericObjectList
357 encoding.append(gobj.encode());
371 * Alias for the encode function above.
374 return this.encode();
460 + ((GenericObject) myobj).encode());
468 System.out.println(((GenericObject) hisobj).encode());
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPObject.java69 public abstract String encode(); method in class:SIPObject
72 * Default implemation calls encode().
74 public StringBuffer encode(StringBuffer buffer) { method in class:SIPObject
75 return buffer.append(encode());
253 ((GenericObject) myObj).encode();
399 return this.encode();
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHttpUrl.java705 return encode(input, pos, limit, " \"';<=>@[]^`{}|");
709 return encode(input, pos, limit, " \"':;<=>@[]\\^`{}|");
744 String portString = encode(input, pos, limit, ""); // To skip '\n' etc.
754 encode(pathBuilder, input, pos, limit, " \"<>^`{}|");
758 return encode(input, pos, limit, " \"'<>");
762 return encode(input, pos, limit, ""); // To skip '\n' etc.
815 static String encode(String input, int pos, int limit, String encodeSet) { method in class:HttpUrl
825 encode(out, input, i, limit, encodeSet);
834 static void encode(StringBuilder out, String input, int pos, int limit, String encodeSet) { method in class:HttpUrl
847 // Percent encode thi
[all...]
/external/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc76 Emit(opcode | AddressingModeField::encode(kMode_MI),
79 Emit(opcode | AddressingModeField::encode(kMode_MRI),
84 Emit(opcode | AddressingModeField::encode(kMode_MRI),
87 Emit(opcode | AddressingModeField::encode(kMode_MR1I),
147 Emit(opcode | AddressingModeField::encode(kMode_MI), NULL,
150 Emit(opcode | AddressingModeField::encode(kMode_MRI), NULL,
154 Emit(opcode | AddressingModeField::encode(kMode_MRI), NULL,
157 Emit(opcode | AddressingModeField::encode(kMode_MR1I), NULL,
547 opcode |= MiscField::encode(descriptor->flags());
/external/skia/src/utils/
H A DSkMD5.cpp19 static void encode(uint8_t output[16], const uint32_t input[4]);
22 static void encode(uint8_t output[8], const uint64_t input);
66 encode(bits, this->byteCount << 3);
83 encode(digest.data, this->state);
211 static void encode(uint8_t output[16], const uint32_t input[4]) { function
220 static void encode(uint8_t output[8], const uint64_t input) { function
/external/v8/test/cctest/
H A Dtest-conversions.cc323 x = OneBit1::encode(i);
327 x = OneBit2::encode(i);
338 x = EightBit1::encode(i);
341 x = EightBit2::encode(i);
357 CHECK(x == UpperBits::encode(7));
362 CHECK(x == MiddleBits::encode(3));
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.h153 image: The raw pixel data to encode. The size of this buffer should be
176 Same as the other encode functions, but instead takes a filename as output.
218 unsigned encode(std::vector<unsigned char>& out,
221 unsigned encode(std::vector<unsigned char>& out,
227 Same as the other encode functions, but instead takes a filename as output.
230 unsigned encode(const std::string& filename,
233 unsigned encode(const std::string& filename,
324 If you encode an image without alpha with palette, don't forget to put value 255 in each A byte of the palette.
620 /*encode text chunks as zTXt chunks instead of tEXt chunks, and use compression in iTXt chunks*/
845 //Same as other lodepng::encode, bu
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
H A DGeneralizedTimeTest.java139 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
147 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
H A DCertificateTest.java141 ASN1Integer.getInstance().encode(
173 encoding = Certificate.ASN1.encode(certificate);
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBinaryCodec.java83 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
85 public byte[] encode(byte[] raw) { method in class:BinaryCodec
97 * @see org.apache.commons.codec.Encoder#encode(java.lang.Object)
99 public Object encode(Object raw) throws EncoderException { method in class:BinaryCodec
225 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
255 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
285 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])

Completed in 3325 milliseconds

1234567891011>>