/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/ |
D | find_modules.py | 71 "email.base64MIME": Alias("email.base64mime"), 72 "email.Charset": Alias("email.charset"), 73 "email.Encoders": Alias("email.encoders"), 74 "email.Errors": Alias("email.errors"), 75 "email.Feedparser": Alias("email.feedParser"), 76 "email.Generator": Alias("email.generator"), 77 "email.Header": Alias("email.header"), 78 "email.Iterators": Alias("email.iterators"), 79 "email.Message": Alias("email.message"), 80 "email.Parser": Alias("email.parser"), [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ses/ |
D | connection.py | 38 DefaultRegionEndpoint = 'email.us-east-1.amazonaws.com' 132 # email address for Amazon to blacklist it. After a day or three, 137 elif "Email address is not verified." in body: 141 exc_reason = "Email address is not verified." 183 """Composes an email message based on input data, and then immediately 187 :param source: The sender's email address. 210 :param reply_addresses: The reply-to email address(es) for the 216 :param return_path: The email address to which bounce notifications are 220 will then be forwarded to the email address 224 :param text_body: The text body to send with this email. [all …]
|
/external/chromium-trace/catapult/dashboard/dashboard/models/ |
D | sheriff.py | 14 # Acceptable suffixes for internal-only sheriff rotation email addresses. 47 """Validates an email address property.""" 48 # Note, this doesn't check the domain of the email address; 51 raise ValidationError('Invalid email %s' % val) 57 # Many perf sheriff email addresses are stored at a url. If there is a url 58 # specified here, it will be used as the perf sheriff address. But the email 61 email = ndb.StringProperty(validator=_EmailValidator, indexed=False) variable in Sheriff 83 if (self.internal_only and self.email 84 and not _IsAllowedInternalOnlyEmail(self.email)): 85 raise ValidationError('Invalid internal sheriff email %s' % self.email) [all …]
|
D | sheriff_test.py | 27 # If the given email address is not valid, an assertion error 30 sheriff.Sheriff(email='oops') 33 # Email addresses with + characters are allowed. 34 sheriff.Sheriff(email='some+thing@yahoo.com').put() 35 # If the Sheriff is internal only, the email address domain must be within 36 # the set of allowed email address domains. 37 sheriff.Sheriff(internal_only=True, email='my-alerts@google.com').put() 38 sheriff.Sheriff(internal_only=True, email='alerts@chromium.org').put() 43 entity = sheriff.Sheriff(internal_only=True, email='x@notgoogle.com')
|
/external/chromium-trace/catapult/experimental/bisect_lib/test_data/ |
D | MOCK_RANGE_RESPONSE_1 | 12 "email": "rdevlin.cronin@chromium.org", 17 "email": "commit-bot@chromium.org", 30 "email": "caseq@chromium.org", 35 "email": "commit-bot@chromium.org", 48 "email": "joelo@chromium.org", 53 "email": "commit-bot@chromium.org", 66 "email": "v8-autoroll@chromium.org", 71 "email": "commit-bot@chromium.org", 84 "email": "oshima@chromium.org", 89 "email": "commit-bot@chromium.org", [all …]
|
/external/autotest/client/common_lib/ |
D | mail.py | 1 import os, email, smtplib 6 Send out a plain old text email. It uses sendmail by default, but 10 from_address: the email address to put in the "From:" field 12 strings to put in the "To:" field of the email 14 strings to put in the "Cc:" field of the email 15 subject: the email subject 16 message_body: the body of the email. there's no special 30 message = email.Message.Message()
|
/external/libxml2/test/relaxng/ |
D | tutor3_5_1.xml | 2 <card name="John Smith" email="js@example.com"/> 3 <card email="js@example.com" name="John Smith"/> 4 <card email="js@example.com"><name>John Smith</name></card> 5 <card name="John Smith"><email>js@example.com</email></card> 6 <card><name>John Smith</name><email>js@example.com</email></card>
|
D | tutor3_8_1.xml | 2 <card><name>foo</name><email>bar</email><prefersHTML/></card> 3 <card><name>foo</name><email>bar</email></card>
|
D | tutor4_1_1.xml | 2 <card><name>John Smith</name><email>js@example.com"</email></card> 3 <card><name>John Smith2</name><email>js2@example.com"</email></card>
|
D | tutor1_2_1.xml | 4 <email>js@example.com</email> 8 <email>fb@example.net</email>
|
/external/libphonenumber/ |
D | pom.xml | 47 <email>jia.shao.peng@gmail.com</email> 57 <email>lararennie@google.com</email> 68 <email>tronikos@gmail.com</email> 71 <name>g1smd.email</name> 72 <email>g1smd.email@gmail.com</email> 76 <email>philip.liard@gmail.com</email>
|
/external/autotest/site_utils/ |
D | gmail_lib.py | 25 from email.mime.text import MIMEText 57 """An email message.""" 98 'could not send email.') 104 """Send an email message. 113 logging.debug('Email sent: %s' , message['id']) 116 logging.error('Failed to send email: %s', error) 122 """Send email. 125 @param subject: Subject of the email. 134 logging.error('Failed to send email to %s: Credential file does not' 136 'install it. If you need to be able to send email, ' [all …]
|
/external/autotest/client/site_tests/telemetry_LoginTest/ |
D | telemetry_LoginTest.py | 26 email = login_status['email'] 29 return (is_regular_user, email) 40 (is_regular_user, email) = self._get_login_status(cr) 43 if email != cr.username: 44 raise error.TestFail('user email mismatch %s' % email)
|
/external/lldb/utils/test/ |
D | ras.py | 4 Run the test suite and send the result as an email message. 7 http://docs.python.org/library/email-examples.html. 19 from email import encoders 20 from email.message import Message 21 from email.mime.audio import MIMEAudio 22 from email.mime.base import MIMEBase 23 from email.mime.image import MIMEImage 24 from email.mime.multipart import MIMEMultipart 25 from email.mime.text import MIMEText 50 # This will be used as the subject line of our email about this test. [all …]
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
D | edit_sheriffs.py | 19 url: A URL at which there is a list of email addresses to send mail to. 20 email: An email address to send mail to, possibly a mailing list. 34 'email': sheriff_entity.email or '', 58 sheriff_entity.email = self.request.get('email') or None
|
D | bad_bisect.py | 57 email = user.email() 60 if email not in job.bad_result_emails: 61 job.bad_result_emails.add(email) 63 _LogFeedback(try_job_id, email) 72 def _LogFeedback(try_job_id, email): argument 75 message = '%s marked try job %d.' % (email, try_job_id)
|
D | edit_sheriffs_test.py | 49 def _AddSheriff(self, name, email=None, url=None, argument 54 id=name, email=email, url=url, internal_only=internal_only, 62 'email': 'foo@chromium.org', 71 self.assertEqual('foo@chromium.org', sheriffs[0].email) 83 'email': 'bar@chromium.org', 92 self.assertEqual('bar@chromium.org', sheriff_entity.email) 191 self._AddSheriff('Foo Sheriff', email='foo@x.org', patterns=['*/*/*/*']) 198 'email': 'foo@x.org', 207 'email': '',
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/scripts/ |
D | oauth2l_test.py | 75 return ['--credentials_format=' + credentials_format, 'userinfo.email'] 98 output = _GetCommandOutput(self, 'header', ['userinfo.email']) 166 'https://www.googleapis.com/auth/userinfo.email', 176 self, 'fetch', ['userinfo.email', 'cloud-platform']) 196 ['userinfo.email']) 209 output = _GetCommandOutput(self, 'fetch', ['userinfo.email']) 250 'userinfo.email'] 273 user_info = {'email': 'foo@example.com'} 277 output = _GetCommandOutput(self, 'email', [self.access_token]) 278 self.assertEqual(user_info['email'], output) [all …]
|
/external/chromium-trace/catapult/dashboard/dashboard/templates/ |
D | edit_sheriffs.html | 16 // "url", "email", "patterns", "internal_only", and "summarize". 47 document.getElementById('email').value = sheriff['email']; 68 document.getElementById('email').value = ''; 134 <td><label for="email">Notification Email:</label></td> 135 <td><input type="email" name="email" id="email" size=75></td> 142 <td><label for="email">Days before alerting on missing data 159 <td>Summarize Email:</td>
|
/external/chromium-trace/catapult/third_party/webapp2/tests/ |
D | extras_appengine_auth_models_test.py | 16 email = model.StringProperty() variable in User 150 # Create the unique username, auth_id and email. 168 def create_user(username, auth_id, email): argument 172 unique_email = 'User.email:%s' % email 174 # Create the unique username, auth_id and email. 179 user = User(username=username, auth_id=auth_id, email=email) 190 raise UniqueConstraintViolation('Email %s already ' 191 'exists' % email)
|
/external/e2fsprogs/ |
D | SHLIBS | 4 Email: tytso@mit.edu 11 Email: tytso@mit.edu 18 Email: tytso@mit.edu 25 Email: tytso@mit.edu 32 Email: tytso@mit.edu
|
/external/google-breakpad/src/testing/scripts/ |
D | upload.py | 66 """Prompts the user for their email address and returns it. 68 The last used email address is saved to a file and offered up as a suggestion 70 used email address is used. If the user enters a new address, it is saved 84 email = raw_input(prompt + ": ").strip() 85 if email: 88 last_email_file.write(email) 93 email = last_email 94 return email 134 (email, password) tuple when called. Will be called if authentication 172 def _GetAuthToken(self, email, password): argument [all …]
|
/external/google-breakpad/src/testing/gtest/scripts/ |
D | upload.py | 66 """Prompts the user for their email address and returns it. 68 The last used email address is saved to a file and offered up as a suggestion 70 used email address is used. If the user enters a new address, it is saved 84 email = raw_input(prompt + ": ").strip() 85 if email: 88 last_email_file.write(email) 93 email = last_email 94 return email 134 (email, password) tuple when called. Will be called if authentication 172 def _GetAuthToken(self, email, password): argument [all …]
|
/external/autotest/client/cros/ |
D | service_login.js | 11 gaia.chromeOSLogin.attemptLogin = function(email, password, attemptToken) { argument 14 'email': email, property 31 var email = emailFormElement.value; 35 gaia.chromeOSLogin.attemptLogin(email, passwd, attemptToken);
|
/external/curl/tests/ |
D | testcurl.1 | 54 .IP "--email=[email]" 55 Set email address to report as. Displayed in the build logs on the site. 75 \fI--name\fP, \fI--email\fP, \fI--configure\fP and \fI--desc\fP instead. 114 email="--email=iamme@nowhere" 116 testprog="perl ./curl/tests/testcurl.pl $name $email $desc"
|