HomeSort by relevance Sort by last modified time
    Searched defs:TO (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/compiler-rt/test/profile/Inputs/
extern_template1.cpp 5 Test<int> TO;
7 TO.doIt(20);
8 return TO.M;
  /cts/tests/tests/net/src/android/net/http/cts/
SslCertificate_DNameTest.java 10 * Unless required by applicable law or agreed to in writing, software
29 final String TO = "c=ccc,o=testOName,ou=testUName,cn=testCName";
34 SslCertificate ssl = new SslCertificate(TO, BY, DateFormat.getInstance().format(
41 assertEquals(TO, issuedTo.getDName());
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/curl/docs/examples/
imap-append.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.
24 * IMAP example showing how to send e-mails
32 /* This is a simple example showing how to send mail using libcurl's IMAP
39 #define TO "<addressee@example.net>"
44 "To: " TO "\r\n",
50 "\r\n", /* empty line to divide headers from body, see RFC5322 */
101 * EXAMINE command to obtain the UID of the next message to create and
    [all...]
smtp-mime.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.
24 * SMTP example showing how to send mime e-mails
32 /* This is a simple example showing how to send mime mail using libcurl's SMTP
40 #define TO "<addressee@example.net>"
45 "To: " TO,
58 "viewer that is not able to handle HTML.\r\n";
65 "e-mail viewers able to handle HTML.</p>
    [all...]
smtp-ssl.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.
32 /* This is a simple example showing how to send mail using libcurl's SMTP
33 * capabilities. It builds on the smtp-mail.c example to add authentication
34 * and, more importantly, transport security to protect the authentication
41 #define TO "<addressee@example.net>"
46 "To: " TO "\r\n",
52 "\r\n", /* empty line to divide headers from body, see RFC5322 *
    [all...]
smtp-tls.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.
32 /* This is a simple example showing how to send mail using libcurl's SMTP
33 * capabilities. It builds on the smtp-mail.c example to add authentication
34 * and, more importantly, transport security to protect the authentication
41 #define TO "<addressee@example.net>"
46 "To: " TO "\r\n",
52 "\r\n", /* empty line to divide headers from body, see RFC5322 *
    [all...]
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...]
  /external/curl/tests/libtest/
lib1520.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.
27 * This is the list of basic details you need to tweak to get things right.
29 #define TO "<recipient@example.com>"
34 "To: another\r\n",
91 rcpt_list = curl_slist_append(rcpt_list, TO);
  /prebuilts/go/darwin-x86/src/runtime/
memclr_arm.s 8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 #define TO R8
34 MOVW ptr+0(FP), TO
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
memclr_arm.s 8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 #define TO R8
34 MOVW ptr+0(FP), TO
    [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...]
  /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...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderNames.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
61 public static final String TO = ToHeader.NAME; //15
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Message.java 10 * Unless required by applicable law or agreed to in writing, software
26 public static final String RECIPIENT_TYPE_TO = "to";
31 TO,
105 * TODO Refactor Flags at some point to be able to store user defined flags.
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Message.java 10 * Unless required by applicable law or agreed to in writing, software
26 TO, CC, BCC,
103 * TODO Refactor Flags at some point to be able to store user defined flags.
  /cts/tools/dasm/src/dasm/
sym.java 81 static final int TO = 32;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
StrGather.py 2 # This file is used to parse a strings file and create or add to a string database
64 TO = 'to'
87 ## Convert a dec number to a hex string
89 # Convert a dec number to a formatted hex string in length digit
90 # The digit is set to default 8
103 ## Convert a dec number to a hex list
105 # Convert a dec number to a formatted hex list in size digit
106 # The digit is set to default 8
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 246 // Initialize the remapping of files to alternative contents, e.g.,
265 // the "to" file.
272 // Find the file that we're mapping to.
288 // the "to" file.
317 // Note that this is different then passing PTHMgr to Preprocessor's ctor.
318 // That argument is used as the IdentifierInfoLookup argument to
328 // Apply remappings to the source manager.
355 // then we're the top level compiler instance and need to create one.
438 // We need the external source to be set up before we read the AST, because
457 // Unrecoverable failure: don't even try to process the input file
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.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
52 public static final int TO = START + 15;
105 // JvB: added to support RFC3903
216 * Converts indentation tabs to spaces so that we have a uniform indentation policy in the whole project.
247 * CVS: If this code has been contributed to the project by someone else; i.e.
    [all...]
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
PduHeaders.java 11 * Unless required by applicable law or agreed to in writing, software
53 public static final int TO = 0x97;
352 * Set octet value to pdu header by header field.
434 // According to oma-ts-mms-enc-v1_3, section 7.3.50, we modify the invalid value.
449 // According to oma-ts-mms-enc-v1_3, section 7.3.58, we modify the invalid value.
464 // According to oma-ts-mms-enc-v1_3, section 7.3.48, we modify the invalid value.
507 * Set TextString value to pdu header by header field.
556 * Get TO, CC or BCC header value.
573 * Set EncodedStringValue value to pdu header by header field.
610 * Set TO, CC or BCC header value
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
JavaToken.java 14 * LICENCE.APACHE. Please refer to those files for details.
62 // cases however we want to split those characters in single GT tokens (">").
73 // image corresponding to the text originally recognized, without considering that after some characters could
79 // ___ -> recognized as ">>>", then ">>" put back in the stream but Token(type=GT, image=">>>") passed to this class
80 // ___ -> recognized as ">>>", then ">>" put back in the stream but Token(type=GT, image=">>>") passed to this class
81 // __ -> recognized as ">>", then ">" put back in the stream but Token(type=GT, image=">>") passed to this class
170 * @return the token range that goes from the beginning to the end of the token list this token is a part of.
316 TO(65),
558 return TO;
  /external/webrtc/talk/media/base/
videoframe_unittest.h 13 * 3. The name of the author may not be used to endorse or promote products
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
183 // Write an I420 frame out to disk.
209 // I420 chroma artifacts to easily be seen on the square boundaries.
211 // There is also a gradient within each square to ensure that the luma
284 // Simple conversion routines to verify the optimized VideoFrame routines.
285 // Converts from the specified colorspace to I420.
324 // Convert RGB to 420.
684 // Due to rounding, some pixels may differ slightly from the VideoFrame impl
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduHeaders.java 11 * Unless required by applicable law or agreed to in writing, software
53 public static final int TO = 0x97;
352 * Set octet value to pdu header by header field.
434 // According to oma-ts-mms-enc-v1_3, section 7.3.50, we modify the invalid value.
449 // According to oma-ts-mms-enc-v1_3, section 7.3.58, we modify the invalid value.
464 // According to oma-ts-mms-enc-v1_3, section 7.3.48, we modify the invalid value.
507 * Set TextString value to pdu header by header field.
556 * Get TO, CC or BCC header value.
573 * Set EncodedStringValue value to pdu header by header field.
610 * Set TO, CC or BCC header value
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
PduHeaders.java 11 * Unless required by applicable law or agreed to in writing, software
51 public static final int TO = 0x97;
350 * Set octet value to pdu header by header field.
432 // According to oma-ts-mms-enc-v1_3, section 7.3.50, we modify the invalid value.
447 // According to oma-ts-mms-enc-v1_3, section 7.3.58, we modify the invalid value.
462 // According to oma-ts-mms-enc-v1_3, section 7.3.48, we modify the invalid value.
505 * Set TextString value to pdu header by header field.
554 * Get TO, CC or BCC header value.
571 * Set EncodedStringValue value to pdu header by header field.
608 * Set TO, CC or BCC header value
    [all...]

Completed in 2669 milliseconds

1 2 3 4