/external/v8/src/regexp/ |
regexp-macro-assembler.cc | 42 String* subject, 44 if (subject->IsConsString()) { 45 subject = ConsString::cast(subject)->first(); 46 } else if (subject->IsSlicedString()) { 47 start_index += SlicedString::cast(subject)->offset(); 48 subject = SlicedString::cast(subject)->parent(); 51 DCHECK(start_index <= subject->length()); 52 if (subject->IsSeqOneByteString()) [all...] |
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
ModuleValidator.java | 93 ValidationReport<TypeElement> validate(final TypeElement subject) { 94 final ValidationReport.Builder<TypeElement> builder = ValidationReport.about(subject); 96 List<ExecutableElement> moduleMethods = ElementFilter.methodsIn(subject.getEnclosedElements()); 106 validateModuleVisibility(subject, builder); 108 if (subject.getKind() != ElementKind.INTERFACE) { 109 validateProvidesOverrides(subject, builder, allMethodsByName, bindingMethodsByName); 111 validateModifiers(subject, builder); 112 validateReferencedModules(subject, builder); 119 TypeElement subject, ValidationReport.Builder<TypeElement> builder) { 122 if (!subject.getTypeParameters().isEmpty() && !subject.getModifiers().contains(ABSTRACT)) [all...] |
/external/pcre/dist/ |
pcre_get.c | 42 from the subject string after a regex match has succeeded. The original idea 315 subject the subject string that was matched 335 pcre_copy_substring(const char *subject, int *ovector, int stringcount, 339 pcre16_copy_substring(PCRE_SPTR16 subject, int *ovector, int stringcount, 343 pcre32_copy_substring(PCRE_SPTR32 subject, int *ovector, int stringcount, 353 memcpy(buffer, subject + ovector[stringnumber], IN_UCHARS(yield)); 370 subject the subject string that was matched 390 pcre_copy_named_substring(const pcre *code, const char *subject, [all...] |
/external/autotest/client/common_lib/ |
mail.py | 4 def send(from_address, to_addresses, cc_addresses, subject, message_body): 15 subject: the email subject 34 message["Subject"] = subject
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/sns/ |
test_connection.py | 9 # persons to whom the Software is furnished to do so, subject to the fol- 96 self.service_connection.publish('topic', 'message', 'subject') 100 'Subject': 'subject', 109 subject='subject') 113 'Subject': 'subject', 122 subject='subject') [all...] |
/external/jetty/src/java/org/eclipse/jetty/security/ |
DefaultIdentityService.java | 23 import javax.security.auth.Subject; 85 public UserIdentity newUserIdentity(final Subject subject, final Principal userPrincipal, final String[] roles) 87 return new DefaultUserIdentity(subject,userPrincipal,roles);
|
DefaultUserIdentity.java | 23 import javax.security.auth.Subject; 35 private final Subject _subject; 39 public DefaultUserIdentity(Subject subject, Principal userPrincipal, String[] roles) 41 _subject=subject; 46 public Subject getSubject()
|
MappedLoginService.java | 29 import javax.security.auth.Subject; 168 Subject subject = new Subject(); local 169 subject.getPrincipals().add(userPrincipal); 170 subject.getPrivateCredentials().add(credential); 171 subject.setReadOnly(); 172 identity=_identityService.newUserIdentity(subject,userPrincipal,IdentityService.NO_ROLES); 189 Subject subject = new Subject() local [all...] |
IdentityService.java | 23 import javax.security.auth.Subject; 78 * @param subject Subject to include in UserIdentity 83 UserIdentity newUserIdentity(Subject subject, Principal userPrincipal, String[] roles);
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
CertificatePolicyMap.java | 8 * particular file as subject to the "Classpath" exception as provided 46 * @param subject the CertificatePolicyId for the subject CA. 49 CertificatePolicyId subject) { 51 this.subjectDomain = subject; 75 * Return the subject CA part of the policy map.
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
email_sheriff.py | 29 subject=anomaly_info['email_subject'],
|
/external/chromium-trace/catapult/experimental/bisect_lib/ |
fetch_revision_info.py | 30 subject = message[0] 35 'subject': subject,
|
/external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/appengine/auth/ |
models.py | 134 subject = model.StringProperty(required=True) variable in class:UserToken 138 def get_key(cls, user, subject, token): 143 :param subject: 144 The subject of the key. Examples: 152 ``{user_id}.{subject}.{token}.`` 154 return model.Key(cls, '%s.%s.%s' % (str(user), subject, token)) 157 def create(cls, user, subject, token=None): 162 :param subject: 163 The subject of the key. Examples: 175 key = cls.get_key(user, subject, token [all...] |
/libcore/ojluni/src/main/java/java/security/ |
AuthProvider.java | 8 * particular file as subject to the "Classpath" exception as provided 28 import javax.security.auth.Subject; 41 public abstract void login(Subject subject, CallbackHandler handler)
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
certutils_test.py | 71 subject = 'testSubject' 72 c, _ = certutils.generate_dummy_ca_cert(subject) 74 self.assertEqual(c.get_subject().commonName, subject) 118 subject = 'testSubject' 120 root_string, '', subject) 123 self.assertEqual(subject, cert.get_subject().commonName) 131 self.assertEqual(subject, cert.get_subject().commonName)
|
/external/conscrypt/src/platform/java/org/conscrypt/ |
TrustedCertificateIndex.java | 61 X500Principal subject; local 64 subject = cert.getSubjectX500Principal(); 66 subject = anchor.getCA(); 70 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); 73 subjectToTrustAnchors.put(subject, anchors); 128 X500Principal subject = cert.getSubjectX500Principal(); local 130 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject);
|
/external/autotest/site_utils/ |
gmail_lib.py | 11 $ echo "Some content" |./gmail_lib.py -s "subject" abc@bb.com xyz@gmail.com 14 $ ./gmail_lib.py -s "subject" abc@bb.com xyz@gmail.com 59 def __init__(self, to, subject, message_text): 64 @param subject: String, subject of the message 68 self.subject = subject 79 message['subject'] = self.subject 121 def send_email(to, subject, message_text, retry=True, creds_path=None) [all...] |
/libcore/ojluni/src/main/java/javax/security/auth/ |
Subject.java | 8 * particular file as subject to the "Classpath" exception as provided 45 * <p> A <code>Subject</code> represents a grouping of related information 47 * Such information includes the Subject's identities as well as 53 * within the <code>Subject</code>. Principals simply bind names to a 54 * <code>Subject</code>. For example, a <code>Subject</code> that happens 57 * to the <code>Subject</code>, and another which binds, 59 * to the <code>Subject</code>. Both Principals refer to the same 60 * <code>Subject</code> even though each has a different name. 62 * <p> A <code>Subject</code> may also own security-related attributes [all...] |
/external/autotest/scheduler/ |
monitor_db_cleanup.py | 152 subject = ('%s relationships to invalid models, cleaned all' % 155 logging.warning(subject) 157 email_manager.manager.enqueue_notify_email(subject, message) 268 subject = ('%d queue entries found with active=complete=1' 279 self._send_inconsistency_message(subject, lines) 296 subject = '%s hosts with multiple platforms' % self._db.rowcount 299 self._send_inconsistency_message(subject, lines) 335 subject = '%s hosts with multiple atomic groups' % self._db.rowcount 338 self._send_inconsistency_message(subject, lines) 341 def _send_inconsistency_message(self, subject, lines) [all...] |
/development/tools/ |
make_key | 22 Usage: $0 <name> <subject> [<keytype>] 25 given <subject>. A keytype of "rsa" or "ec" is accepted.
|
/external/boringssl/src/crypto/x509/ |
x509rset.c | 72 return(X509_NAME_set(&x->req_info->subject,name));
|
/external/chromium-trace/catapult/third_party/webapp2/tests/ |
extras_appengine_auth_models_test.py | 107 subject = 'bar' 108 token_1 = m.create(auth_id, subject, token=None) 111 token_2 = m.get(user=auth_id, subject=subject, token=token) 114 token_3 = m.get(subject=subject, token=token) 117 m.get_key(auth_id, subject, token).delete() 119 token_2 = m.get(user=auth_id, subject=subject, token=token) 122 token_3 = m.get(subject=subject, token=token [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
pyami_sendmail | 9 # persons to whom the Software is furnished to do so, subject to the fol- 38 parser.add_option("-s", "--subject", help="Optional Subject to send this report as", action="store", default="Report", dest="subject") 50 notify(options.subject, html_body=body, to_string=options.to, append_instance_id=options.append_instance_id) 52 notify(options.subject, body=body, to_string=options.to, append_instance_id=options.append_instance_id)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/ |
scriptbase.py | 16 def notify(self, subject, body=''): 17 boto.utils.notify(subject, body)
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_old.h | 80 int depth, const char *subject, 122 int depth, const char *subject,
|