/third_party/protobuf/examples/ |
H A D | list_people.cc | 21 if (person.email() != "") { in ListPeople() 22 cout << " E-mail address: " << person.email() << endl; in ListPeople()
|
H A D | add_person.go | 38 fmt.Print("Enter email address (blank for none): ") 39 email, err := rd.ReadString('\n') 43 p.Email = strings.TrimSpace(email)
|
/third_party/python/Lib/email/mime/ |
H A D | audio.py | 3 # Contact: email-sig@python.org 10 from email import encoders 11 from email.mime.nonmultipart import MIMENonMultipart
|
H A D | image.py | 3 # Contact: email-sig@python.org 9 from email import encoders 10 from email.mime.nonmultipart import MIMENonMultipart
|
H A D | multipart.py | 3 # Contact: email-sig@python.org 9 from email.mime.base import MIMEBase
|
/third_party/node/deps/npm/lib/commands/ |
H A D | view.js | 349 email: chalk.cyan(manifest._npmUser.email), 355 email: chalk.cyan(u.email), 504 (keys.length === 3 && data.email && data.url) || 505 (keys.length === 2 && (data.email || data.url)))) { 514 (d.email ? ' <' + d.email + '>' : '') +
|
/third_party/python/Lib/ |
H A D | smtplib.py | 25 To report bugs in the implementation send email to 27 For local information send email to Postmaster at your site. 47 import email.utils namespace 48 import email.message namespace 49 import email.generator namespace 55 from email.base64mime import body_encode as encode_base64 147 """Quote a subset of the email addresses defined by RFC 821. 149 Should be able to handle anything email.utils.parseaddr can handle. 151 displayname, addr = email.utils.parseaddr(addrstring) 160 displayname, addr = email [all...] |
H A D | mailbox.py | 16 import email namespace 17 import email.message namespace 18 import email.generator namespace 86 Uses email.message.Message to create a 7bit clean string 88 return email.message_from_bytes(self.get_bytes(key)).as_string() 213 if isinstance(message, email.message.Message): 215 gen = email.generator.BytesGenerator(buffer, mangle_from_, 0) 789 return email.message_from_bytes( 825 elif isinstance(message, email.message.Message): 1401 if isinstance(message, email [all...] |
/third_party/node/deps/npm/test/lib/commands/ |
H A D | view.js | 72 email: 'claudia@cyan.com', 101 email: 'foo@yellow.com', 112 { name: 'claudia', email: 'c@yellow.com', twitter: 'cyellow' }, 113 { name: 'isaacs', email: 'i@yellow.com', twitter: 'iyellow' }, 145 { name: 'claudia', email: 'c@yellow.com', twitter: 'cyellow' }, 146 { name: 'isaacs', email: 'i@yellow.com', twitter: 'iyellow' }, 413 t.test('maintainers with email', async t => {
|
/third_party/python/Doc/includes/ |
H A D | email-read-alternative.py | 7 # Import the email modules we'll need 8 from email import policy 9 from email.parser import BytesParser 66 # again strip the <> to go from email form of cid to html form. 78 # Of course, there are lots of email messages that could break this simple
|
H A D | email-dir.py | 12 from email.message import EmailMessage 13 from email.policy import SMTP 19 Unless the -o option is given, the email is sent by forwarding to your local
|
H A D | email-simple.py | 4 # Import the email modules we'll need 5 from email.message import EmailMessage 13 # me == the sender's email address 14 # you == the recipient's email address
|
H A D | email-mime.py | 4 # Here are the email package modules we'll need. 5 from email.message import EmailMessage 7 # Create the container email message. 10 # me == the sender's email address 11 # family = the list of all recipients' email addresses 24 # Send the email via our own SMTP server.
|
/third_party/python/Lib/email/ |
H A D | parser.py | 3 # Contact: email-sig@python.org 5 """A parser of RFC 2822 and MIME email messages.""" 12 from email.feedparser import FeedParser, BytesFeedParser 13 from email._policybase import compat32 18 """Parser of RFC 2822 and MIME email messages. 20 Creates an in-memory object tree representing the email message, which 84 """Parser of binary RFC 2822 and MIME email messages. 86 Creates an in-memory object tree representing the email message, which
|
H A D | message.py | 3 # Contact: email-sig@python.org 5 """Basic message object for the email package object model.""" 15 from email import utils 16 from email import errors 17 from email._policybase import Policy, compat32 18 from email import charset as _charset 19 from email._encoded_words import decode_b 181 from email.generator import Generator 204 from email.generator import BytesGenerator 715 param = email [all...] |
H A D | _policybase.py | 1 """Policy framework for the email package. 7 from email import header 8 from email import charset as _charset 9 from email.utils import _has_surrogates 116 Most of the classes and many of the methods in the email package accept 181 The email package parsers always call it with Defect instances. 194 the defects attribute of obj. The objects used by the email package by 225 characters. The lines passed in by the email package may contain 241 header. The value passed in by the email package may contain 252 according to the policy controls. The value passed in by the email [all...] |
/third_party/node/deps/npm/node_modules/npm-profile/lib/ |
H A D | index.js | 30 .then(data => adduserCouch(data.username, data.email, data.password, opts)) 129 const adduserCouch = (username, email, password, opts = {}) => { 134 email: email,
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_utl.c | 31 const ASN1_IA5STRING *email); 504 const ASN1_IA5STRING *email; in STACK_OF() local 508 /* Now add any email address(es) to STACK */ in STACK_OF() 513 email = X509_NAME_ENTRY_get_data(ne); in STACK_OF() 514 if (!append_ia5(&ret, email)) in STACK_OF() 533 const ASN1_IA5STRING *email) in STACK_OF() 538 if (email->type != V_ASN1_IA5STRING) in STACK_OF() 540 if (email->data == NULL || email->length == 0) in STACK_OF() 542 if (memchr(email in STACK_OF() [all...] |
H A D | v3_san.c | 168 if (!x509v3_add_len_value_uchar("email", gen->d.ia5->data, in STACK_OF() 266 BIO_printf(out, "email:"); in GENERAL_NAME_print() 396 if (ossl_v3_name_cmp(cnf->name, "email") == 0 in v2i_subject_alt() 400 } else if (ossl_v3_name_cmp(cnf->name, "email") == 0 in v2i_subject_alt() 418 * Copy any email addresses in a certificate or request to GENERAL_NAMES 424 ASN1_IA5STRING *email = NULL; in copy_email() local 441 /* Now add any email address(es) to STACK */ in copy_email() 445 email = ASN1_STRING_dup(X509_NAME_ENTRY_get_data(ne)); in copy_email() 451 if (email == NULL || (gen = GENERAL_NAME_new()) == NULL) { in copy_email() 455 gen->d.ia5 = email; in copy_email() [all...] |
/third_party/openssl/crypto/x509/ |
H A D | v3_utl.c | 31 const ASN1_IA5STRING *email); 504 const ASN1_IA5STRING *email; in STACK_OF() local 508 /* Now add any email address(es) to STACK */ in STACK_OF() 513 email = X509_NAME_ENTRY_get_data(ne); in STACK_OF() 514 if (!append_ia5(&ret, email)) in STACK_OF() 533 const ASN1_IA5STRING *email) in STACK_OF() 538 if (email->type != V_ASN1_IA5STRING) in STACK_OF() 540 if (email->data == NULL || email->length == 0) in STACK_OF() 542 if (memchr(email in STACK_OF() [all...] |
H A D | v3_san.c | 168 if (!x509v3_add_len_value_uchar("email", gen->d.ia5->data, in STACK_OF() 266 BIO_printf(out, "email:"); in GENERAL_NAME_print() 396 if (ossl_v3_name_cmp(cnf->name, "email") == 0 in v2i_subject_alt() 400 } else if (ossl_v3_name_cmp(cnf->name, "email") == 0 in v2i_subject_alt() 418 * Copy any email addresses in a certificate or request to GENERAL_NAMES 424 ASN1_IA5STRING *email = NULL; in copy_email() local 441 /* Now add any email address(es) to STACK */ in copy_email() 445 email = ASN1_STRING_dup(X509_NAME_ENTRY_get_data(ne)); in copy_email() 451 if (email == NULL || (gen = GENERAL_NAME_new()) == NULL) { in copy_email() 455 gen->d.ia5 = email; in copy_email() [all...] |
/third_party/python/Lib/test/ |
H A D | test_urllibnet.py | 11 import email.message namespace 89 self.assertIsInstance(info_obj, email.message.Message, 91 "instance of email.message.Message") 189 self.assertIsInstance(info, email.message.Message, 190 "info is not an instance of email.message.Message")
|
/third_party/node/lib/internal/crypto/ |
H A D | x509.js | 313 checkEmail(email, options) { 314 validateString(email, 'email'); 315 return this[kHandle].checkEmail(email, getFlags(options));
|
/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
H A D | extension.rs | 468 /// Sets the `email` flag. 469 pub fn email(&mut self, email: &str) -> &mut SubjectAlternativeName { in email() functions 470 self.items.push(RustGeneralName::Email(email.to_string())); in email()
|
/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/util/ |
H A D | oidc.js | 26 return payload.email;
|