/external/chromium-trace/catapult/dashboard/dashboard/models/ |
D | sheriff.py | 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) 88 def _IsAllowedInternalOnlyEmail(email): argument 90 return email.endswith(_ALLOWED_INTERNAL_ONLY_EMAIL_DOMAINS)
|
D | sheriff_test.py | 30 sheriff.Sheriff(email='oops') 34 sheriff.Sheriff(email='some+thing@yahoo.com').put() 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/dashboard/dashboard/ |
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 | auto_triage_test.py | 75 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put() 88 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put() 101 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put() 114 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put() 127 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put() 143 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put() 172 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put() 200 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
|
D | email_summary_test.py | 50 id='Chromium Perf Sheriff', email='anandc@google.com', 65 id='Chromium Perf Sheriff', email='anandc@google.com', 80 id='Chromium Perf Sheriff', email='anandc@google.com', 94 id='Chromium Perf Sheriff', email='anandc@google.com', 109 id='Sheriff1', email='anandc@google.com', summarize=True).put() 111 id='Sheriff2', email='anandc@chromium.org', summarize=True).put()
|
D | datastore_hooks_test.py | 87 id='external', email='foo@chromium.org', internal_only=False).put() 89 id='internal', email='internal@google.com', internal_only=True).put() 171 self.assertEqual('foo@chromium.org', sheriffs[0].email) 173 self.assertEqual('internal@google.com', sheriffs[1].email) 177 self.assertEqual('foo@chromium.org', sheriffs[0].email) 233 self.assertEqual(sheriff_entity.email, 'foo@chromium.org') 236 self.assertEqual('internal@google.com', internal_sheriff_entity.email)
|
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, 71 self.assertEqual('foo@chromium.org', sheriffs[0].email) 92 self.assertEqual('bar@chromium.org', sheriff_entity.email) 191 self._AddSheriff('Foo Sheriff', email='foo@x.org', patterns=['*/*/*/*'])
|
/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/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 …]
|
D | MOCK_RANGE_RESPONSE_2_PAGE_2 | 12 "email": "mmenke@chromium.org", 17 "email": "commit-bot@chromium.org", 30 "email": "asanka@chromium.org", 35 "email": "commit-bot@chromium.org",
|
/external/lldb/utils/test/ |
D | ras.py | 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
|
/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/google-breakpad/src/common/linux/ |
D | google_crashdump_uploader.cc | 48 const string& email, in GoogleCrashdumpUploader() argument 60 email, in GoogleCrashdumpUploader() 74 const string& email, in GoogleCrashdumpUploader() argument 86 email, in GoogleCrashdumpUploader() 100 const string& email, in Init() argument 112 email_ = email; in Init()
|
D | google_crashdump_uploader.h | 50 const string& email, 62 const string& email, 75 const string& email,
|
/external/protobuf/examples/ |
D | add_person.py | 13 email = raw_input("Enter email address (blank for none): ") 14 if email != "": 15 person.email = email
|
D | add_person.cc | 21 string email; in PromptForAddress() local 22 getline(cin, email); in PromptForAddress() 23 if (!email.empty()) { in PromptForAddress() 24 person->set_email(email); in PromptForAddress()
|
/external/autotest/server/cros/dynamic_suite/ |
D | reporting_utils.py | 127 for email in emails: 128 if not email or not cls.EMAIL_REGEX.match(email): 130 'Invalid email address: %s.' % email) 153 template[email_attribute] = [email for email in value 154 if email]
|
/external/libxml2/result/relaxng/ |
D | tutor3_5_2.err | 1 ./test/relaxng/tutor3_5_2.xml:2: element email: Relax-NG validity error : Expecting element name, g… 2 ./test/relaxng/tutor3_5_2.xml:2: element email: Relax-NG validity error : Element card failed to va…
|
/external/chromium-trace/catapult/catapult_build/ |
D | appengine_deploy.py | 47 email = _Run(['git', 'config', '--get', 'user.email']) 48 username = email[0:email.find('@')]
|
/external/google-breakpad/src/testing/scripts/ |
D | upload.py | 84 email = raw_input(prompt + ": ").strip() 85 if email: 88 last_email_file.write(email) 93 email = last_email 94 return email 172 def _GetAuthToken(self, email, password): argument 193 "Email": email, 469 email = options.email 470 if email is None: 471 email = GetEmail("Email (login for uploading to %s)" % options.server) [all …]
|
/external/google-breakpad/src/testing/gtest/scripts/ |
D | upload.py | 84 email = raw_input(prompt + ": ").strip() 85 if email: 88 last_email_file.write(email) 93 email = last_email 94 return email 172 def _GetAuthToken(self, email, password): argument 193 "Email": email, 469 email = options.email 470 if email is None: 471 email = GetEmail("Email (login for uploading to %s)" % options.server) [all …]
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
D | test_httpserver.py | 1 import email 25 wsgi_handler.headers = email.message_from_string('Host: mywebsite') 41 wsgi_handler.headers = email.message_from_string('Host: host1\nHost: host2')
|
/external/clang/tools/scan-view/share/ |
D | Reporter.py | 26 import email, mimetypes, smtplib 27 from email import encoders 28 from email.message import Message 29 from email.mime.base import MIMEBase 30 from email.mime.multipart import MIMEMultipart 31 from email.mime.text import MIMEText
|
/external/curl/tests/ |
D | testcurl.pl | 73 use vars qw($name $email $desc $confopts $runtestopts $setupfile $mktarball 108 $email = (split(/=/, shift @ARGV, 2))[1]; 266 if($name && $email && $desc) { 292 if (!$email) { 294 $email = <>; 295 chomp $email; 320 print F "email='$email'\n"; 344 logit "EMAIL = $email";
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ |
D | upload-diffs.py | 131 email = raw_input(prompt + ": ").strip() 132 if email: 135 last_email_file.write(email) 140 email = last_email 141 return email 233 def _GetAuthToken(self, email, password): argument 254 "Email": email, 616 def __init__(self, server, host, email): argument 619 self.email = email 631 email = self.email [all …]
|