/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/ |
D | HttpTransportSE.java | 111 public void call(String soapAction, SoapEnvelope envelope) in call() argument 114 call(soapAction, envelope, null); in call() 117 public List call(String soapAction, SoapEnvelope envelope, List headers) in call() argument 119 return call(soapAction, envelope, headers, null); in call() 144 public List call(String soapAction, SoapEnvelope envelope, List headers, File outputFile) in call() argument 151 byte[] requestData = createRequestData(envelope, "UTF-8"); in call() 162 if (envelope.version != SoapSerializationEnvelope.VER12) { in call() 166 if (envelope.version == SoapSerializationEnvelope.VER12) { in call() 186 sendData(requestData, connection, envelope); in call() 279 parseResponse(envelope, is, retHeaders); in call() [all …]
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/ |
D | Transport.java | 126 protected void parseResponse(SoapEnvelope envelope, InputStream is) in parseResponse() argument 133 envelope.parse(xp); in parseResponse() 143 protected byte[] createRequestData(SoapEnvelope envelope, String encoding) in createRequestData() argument 158 envelope.write(xw); in createRequestData() 172 protected byte[] createRequestData(SoapEnvelope envelope) in createRequestData() argument 174 return createRequestData(envelope, null); in createRequestData() 227 abstract public List call(String soapAction, SoapEnvelope envelope, in call() argument 251 abstract public List call(String soapAction, SoapEnvelope envelope, in call() argument 263 public void call(String soapAction, SoapEnvelope envelope) in call() argument 265 call(soapAction, envelope, null); in call()
|
/external/strace/ |
D | evdev_mpers.c | 50 const struct ff_envelope *const envelope = data; in decode_envelope() local 56 envelope->attack_length, in decode_envelope() 57 envelope->attack_level, in decode_envelope() 58 envelope->fade_length, in decode_envelope() 59 envelope->fade_level); in decode_envelope() 97 decode_envelope(&ffe.u.constant.envelope); in ff_effect_ioctl() 105 decode_envelope(&ffe.u.ramp.envelope); in ff_effect_ioctl() 119 decode_envelope(&ffe.u.periodic.envelope); in ff_effect_ioctl()
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/ |
D | statistical_testing.py | 163 def _do_maximum_mean(samples, envelope, high, name=None): argument 165 with ops.name_scope(name, "do_maximum_mean", [samples, envelope, high]): 189 cum_steps - envelope[..., array_ops.newaxis], 193 samples * max_mean_contrib, axis=-1) + envelope * high 196 def _maximum_mean(samples, envelope, high, name=None): argument 229 with ops.name_scope(name, "maximum_mean", [samples, envelope, high]): 231 envelope = ops.convert_to_tensor(envelope, name="envelope") 238 return array_ops.identity(_do_maximum_mean(samples, envelope, high)) 241 def _minimum_mean(samples, envelope, low, name=None): argument 274 with ops.name_scope(name, "minimum_mean", [samples, envelope, low]): [all …]
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
D | MarshalHashtable.java | 47 SoapSerializationEnvelope envelope; field in MarshalHashtable 58 Object key = envelope.read(parser, item, 0, null, null, PropertyInfo.OBJECT_TYPE); in readInstance() 63 Object value = envelope.read(parser, item, 1, null, null, PropertyInfo.OBJECT_TYPE); in readInstance() 84 envelope.writeObjectBodyWithAttributes(writer, item); in writeInstance() 118 envelope = cm; in register()
|
D | Marshal.java | 62 public void register(SoapSerializationEnvelope envelope); in register() argument
|
/external/ksoap2/ |
D | 0001-ksoap2-update.patch | 76 /** Parses the SOAP envelope from the given parser */ 575 SoapSerializationEnvelope envelope; 587 - envelope.writeObjectBody(writer, item); 588 + envelope.writeObjectBodyWithAttributes(writer, item); 1162 …* Set to true to add and ID and ROOT label to the envelope. Change to false for compatibility with… 1928 envelope.parse(xp); 1938 - protected byte[] createRequestData(SoapEnvelope envelope, String encoding) throws IOException { 1940 + protected byte[] createRequestData(SoapEnvelope envelope, String encoding) 1957 envelope.write(xw); 1958 - System.out.println("envelope.write"); [all …]
|
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
D | statistical_testing_test.py | 238 envelope = 0.02 # > 2 / n, but < 3 / n 243 envelope_t = ops.convert_to_tensor(envelope) 253 weight = 1. / n - (envelope - 2. / n) 254 answer = samples[2] * weight + sum(samples[3:]) / n + envelope * 1.
|
/external/kernel-headers/original/uapi/linux/ |
D | input.h | 346 struct ff_envelope envelope; member 358 struct ff_envelope envelope; member 407 struct ff_envelope envelope; member
|
/external/wpa_supplicant_8/src/utils/ |
D | xml-utils.c | 445 xml_node_t *envelope, *body; in soap_build_envelope() local 448 envelope = xml_node_create_root( in soap_build_envelope() 451 if (envelope == NULL) in soap_build_envelope() 453 body = xml_node_create(ctx, envelope, ns, "Body"); in soap_build_envelope() 455 return envelope; in soap_build_envelope()
|
D | http_curl.c | 1507 xml_node_t *envelope, *ret, *resp, *n; in soap_send_receive() local 1514 envelope = soap_build_envelope(ctx->xml, node); in soap_send_receive() 1515 str = xml_node_to_str(ctx->xml, envelope); in soap_send_receive() 1516 xml_node_free(ctx->xml, envelope); in soap_send_receive()
|
/external/python/cpython2/Doc/library/ |
D | email.generator.rst | 39 envelope header separator (see `WHY THE CONTENT-LENGTH FORMAT IS BAD 60 Optional *unixfrom* is a flag that forces the printing of the envelope 62 object. If the root object has no envelope header, a standard one is 64 the envelope delimiter. 66 Note that for subparts, no envelope header is ever printed.
|
D | smtpd.rst | 37 attribute. *peer* is the remote host's address, *mailfrom* is the envelope 38 originator, *rcpttos* are the envelope recipients and *data* is a string
|
D | email.message.rst | 19 case-insensitively. There may also be a single envelope header, also known as 42 is ``True``, the envelope header is included in the returned string. 76 Set the message's envelope header to *unixfrom*, which should be a string. 81 Return the message's envelope header. Defaults to ``None`` if the 82 envelope header was never set. 184 Note that in all cases, any envelope header present in the message is not
|
D | email.errors.rst | 31 Situations where it can be raised include finding an envelope header after the
|
D | imaplib.rst | 227 are tuples of message part envelope and data. 290 Returned data are tuples of message part envelope and data. 324 envelope and data.
|
/external/strace/tests-mx32/ |
D | ioctl_evdev.c | 237 print_envelope(&ffe->u.constant.envelope); in main() 251 print_envelope(&ffe->u.ramp.envelope); in main() 263 print_envelope(&ffe->u.periodic.envelope); in main()
|
/external/strace/tests/ |
D | ioctl_evdev.c | 237 print_envelope(&ffe->u.constant.envelope); in main() 251 print_envelope(&ffe->u.ramp.envelope); in main() 263 print_envelope(&ffe->u.periodic.envelope); in main()
|
/external/strace/tests-m32/ |
D | ioctl_evdev.c | 237 print_envelope(&ffe->u.constant.envelope); in main() 251 print_envelope(&ffe->u.ramp.envelope); in main() 263 print_envelope(&ffe->u.periodic.envelope); in main()
|
/external/python/cpython3/Doc/library/ |
D | email.generator.rst | 100 If *unixfrom* is ``True``, print the envelope header delimiter used by 103 no envelope header, craft a standard one. The default is ``False``. 104 Note that for subparts, no envelope header is ever printed. 193 If *unixfrom* is ``True``, print the envelope header delimiter used by 196 no envelope header, craft a standard one. The default is ``False``. 197 Note that for subparts, no envelope header is ever printed.
|
D | email.compat32-message.rst | 45 case-insensitively. There may also be a single envelope header, also known as 69 is true, the envelope header is included in the returned string. 113 *unixfrom* is true, the envelope header is included in the returned 164 Set the message's envelope header to *unixfrom*, which should be a string. 169 Return the message's envelope header. Defaults to ``None`` if the 170 envelope header was never set. 294 Note that in all cases, any envelope header present in the message is not
|
D | email.message.rst | 65 *unixfrom* is true, the envelope header is included in the returned 107 *unixfrom* is true, the envelope header is included in the returned 145 Set the message's envelope header to *unixfrom*, which should be a 152 Return the message's envelope header. Defaults to ``None`` if the 153 envelope header was never set. 170 Note that in all cases, any envelope header present in the message is not
|
D | smtpd.rst | 74 attribute. *peer* is the remote host's address, *mailfrom* is the envelope 75 originator, *rcpttos* are the envelope recipients and *data* is a string
|
/external/libcups/cups/ |
D | test2.ppd | 44 *cupsUIConstraints envelope: "*PageSize Letter *InputSlot Envelope" 45 *cupsUIConstraints envelope: "*PageSize A4 *InputSlot Envelope" 46 *cupsUIResolver envelope: "*InputSlot Manual *PageSize Env10"
|
/external/unicode/ |
D | emoji-data.txt | 86 2708..2709 ; Emoji # 1.1 [2] (✈️..✉️) airplane..envelope 264 1F9E7..1F9FF ; Emoji # 11.0 [25] (..) red envelope..nazar amulet 419 1F9E7..1F9FF ; Emoji_Presentation # 11.0 [25] (..) red envelope..nazar amulet 559 2708..2709 ; Extended_Pictographic# 1.1 [2] (✈️..✉️) airplane..envelope 753 1F9E7..1F9FF ; Extended_Pictographic# 11.0 [25] (..) red envelope..nazar amulet
|