HomeSort by relevance Sort by last modified time
    Searched refs:TO (Results 26 - 50 of 562) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
ReadOrigInd.java 11 * Unless required by applicable law or agreed to in writing, software
25 * Since the Pdu corresponding to this class is constructed
123 * Get To value.
128 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
132 * Set To value.
138 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
ReadRecInd.java 11 * Unless required by applicable law or agreed to in writing, software
30 * @param to the to value
32 * NullPointerException if messageId or to is null.
38 EncodedStringValue[] to) throws InvalidHeaderValueException {
44 setTo(to);
95 * Get To value.
100 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
104 * Set To value.
110 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
MultimediaMessagePdu.java 11 * Unless required by applicable law or agreed to in writing, software
94 * Get To value.
99 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
103 * Add a "To" value.
109 mPduHeaders.appendEncodedStringValue(value, PduHeaders.TO);
ReadRecInd.java 11 * Unless required by applicable law or agreed to in writing, software
28 * @param to the to value
30 * NullPointerException if messageId or to is null.
36 EncodedStringValue[] to) throws InvalidHeaderValueException {
42 setTo(to);
93 * Get To value.
98 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
102 * Set To value.
108 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
MultimediaMessagePdu.java 11 * Unless required by applicable law or agreed to in writing, software
96 * Get To value.
101 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
105 * Add a "To" value.
111 mPduHeaders.appendEncodedStringValue(value, PduHeaders.TO);
ReadOrigInd.java 11 * Unless required by applicable law or agreed to in writing, software
25 * Since the Pdu corresponding to this class is constructed
123 * Get To value.
128 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
132 * Set To value.
138 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
ReadRecInd.java 11 * Unless required by applicable law or agreed to in writing, software
30 * @param to the to value
32 * @throws NullPointerException if messageId or to is null.
38 EncodedStringValue[] to) throws InvalidHeaderValueException {
44 setTo(to);
95 * Get To value.
100 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
104 * Set To value.
110 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
    [all...]
  /frameworks/av/media/libaudioclient/include/media/
AudioMixer.h 11 ** Unless required by applicable law or agreed to in writing, software
73 RAMP_VOLUME = 0x3002, // ramp to new volume
97 // the track is restored to the mix sample rate.
99 // FIXME use float for these 3 to improve the dynamic range
105 // parameter 'value' is a pointer to the new playback rate.
149 // FIXME this representation permits up to 8 channels
157 // sample format is not explicitly specified, and is assumed to be AUDIO_FORMAT_PCM_16_BIT
218 /* Buffer providers are constructed to translate the track input data as needed.
220 * TODO: perhaps make a single PlaybackConverterProvider class to move
224 * 2) mReformatBufferProvider: If not NULL, performs the audio reformat to
    [all...]
  /external/curl/docs/examples/
smtp-multi.c 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
31 /* This is an example showing how to send mail using libcurl's SMTP
32 * capabilities. It builds on the smtp-mail.c example to demonstrate how to use
39 #define TO "<recipient@example.com>"
46 "To: " TO "\r\n",
52 "\r\n", /* empty line to divide headers from body, see RFC5322 *
    [all...]
  /frameworks/base/core/java/android/net/
MailTo.java 10 * Unless required by applicable law or agreed to in writing, software
35 // All the parsed content is added to the headers.
39 static private final String TO = "to";
46 * Test to see if the given string is a mailto URL
47 * @param url string to be tested
100 m.mHeaders.put(TO, address);
107 * Retrieve the To address line from the parsed mailto URL. This could be
109 * If no To line was specified, then null is return
113 return mHeaders.get(TO);
    [all...]
  /cts/tools/dasm/src/dasm/
sym.java 81 static final int TO = 32;
  /external/curl/docs/cmdline-opts/
connect-to.d 1 Long: connect-to
3 Help: Connect to host
8 For a request to the given HOST:PORT pair, connect to
9 CONNECT-TO-HOST:CONNECT-TO-PORT instead. This option is suitable to direct
11 servers. This option is only used to establish the network connection. It
14 may be the empty string, meaning "any host/port". "connect-to-host" and
15 "connect-to-port" may also be the empty string, meaning "use the request'
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
To.java 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
7 * employees are not subject to copyright protection in the United States
8 * and are considered to be in the public domain. As a result, a formal
9 * license is not needed to use the software.
17 * not limited to the correctness, accuracy, reliability or usefulness of
20 * Permission to use this software is contingent upon your acceptance
39 * To SIP Header.
50 public final class To extends AddressParametersHeader implements
61 public To() {
62 super(TO,true)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
Field.java 2 * Licensed to the Apache Software Foundation (ASF) under one *
6 * to you under the Apache License, Version 2.0 (the *
12 * Unless required by applicable law or agreed to in writing, *
34 public static final String TO = "To";
37 public static final String REPLY_TO = "Reply-To";
40 public static final String RESENT_TO = "Resent-To";
81 * @param s the string to parse.
110 * Gets the default parser used to parse fields.
177 * Determines if this is a <code>To</code> field
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
SslCertificateTest.java 10 * Unless required by applicable law or agreed to in writing, software
196 assertNotNull(saved.getString("issued-to"));
209 final String TO = "c=ccc,o=testOName,ou=testUName,cn=testCName";
214 SslCertificate ssl = new SslCertificate(TO, BY, date1, date2);
219 assertEquals(TO, issuedTo.getDName());
230 final String EXPECTED = "Issued to: c=ccc,o=testOName,ou=testUName,cn=testCName;\n"
  /external/opencv/cxcore/src/
cxconvert.cpp 5 // By downloading, copying, installing or using the software you agree to this license.
6 // If you do not agree to this license, do not download, install,
26 // * The name of Intel Corporation may not be used to endorse or promote products
30 // any express or implied warranties, including, but not limited to, the implied
34 // (including, but not limited to, procurement of substitute goods or services;
365 #define ICV_DEF_PXPLPX_TAB( name, FROM, TO ) \
369 tab->fn_2d[CV_8UC2] = (void*)icvCopy##_8u_##FROM##2##TO##2R; \
370 tab->fn_2d[CV_8UC3] = (void*)icvCopy##_8u_##FROM##3##TO##3R; \
371 tab->fn_2d[CV_8UC4] = (void*)icvCopy##_8u_##FROM##4##TO##4R; \
373 tab->fn_2d[CV_8SC2] = (void*)icvCopy##_8u_##FROM##2##TO##2R;
    [all...]
  /external/eigen/blas/testing/
cblat2.f 30 *> F LOGICAL FLAG, T TO REWIND SNAPSHOT FILE AFTER EACH RECORD.
31 *> F LOGICAL FLAG, T TO STOP ON FAILURES.
32 *> T LOGICAL FLAG, T TO TEST ERROR EXITS.
86 *> 10-9-00: Change STATUS='NEW' to 'UNKNOWN' so that the testers
191 * Read the flag that indicates whether error exits are to be tested.
202 GO TO 230
208 GO TO 230
215 GO TO 230
221 GO TO 230
228 GO TO 23
    [all...]
zblat2.f 30 *> F LOGICAL FLAG, T TO REWIND SNAPSHOT FILE AFTER EACH RECORD.
31 *> F LOGICAL FLAG, T TO STOP ON FAILURES.
32 *> T LOGICAL FLAG, T TO TEST ERROR EXITS.
86 *> 10-9-00: Change STATUS='NEW' to 'UNKNOWN' so that the testers
192 * Read the flag that indicates whether error exits are to be tested.
203 GO TO 230
209 GO TO 230
216 GO TO 230
222 GO TO 230
229 GO TO 23
    [all...]
dblat2.f 30 *> F LOGICAL FLAG, T TO REWIND SNAPSHOT FILE AFTER EACH RECORD.
31 *> F LOGICAL FLAG, T TO STOP ON FAILURES.
32 *> T LOGICAL FLAG, T TO TEST ERROR EXITS.
85 *> 10-9-00: Change STATUS='NEW' to 'UNKNOWN' so that the testers
186 * Read the flag that indicates whether error exits are to be tested.
197 GO TO 230
203 GO TO 230
210 GO TO 230
216 GO TO 230
223 GO TO 23
    [all...]
sblat2.f 30 *> F LOGICAL FLAG, T TO REWIND SNAPSHOT FILE AFTER EACH RECORD.
31 *> F LOGICAL FLAG, T TO STOP ON FAILURES.
32 *> T LOGICAL FLAG, T TO TEST ERROR EXITS.
85 *> 10-9-00: Change STATUS='NEW' to 'UNKNOWN' so that the testers
186 * Read the flag that indicates whether error exits are to be tested.
197 GO TO 230
203 GO TO 230
210 GO TO 230
216 GO TO 230
223 GO TO 23
    [all...]
  /external/google-breakpad/android/sample_app/jni/
Application.mk 15 # contributors may be used to endorse or promote products derived from
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  /external/ims/rcs/presencepolling/
Android.mk 12 # names of its contributors may be used to endorse or promote products
16 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  /external/protobuf/js/
test_bootstrap.js 16 // contributors may be used to endorse or promote products derived from
21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  /external/smali/deodexerant/
Android.mk 15 # contributors may be used to endorse or promote products derived from
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  /external/v8/samples/
count-hosts.js 13 // contributors may be used to endorse or promote products derived
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,

Completed in 1346 milliseconds

12 3 4 5 6 7 8 91011>>