HomeSort by relevance Sort by last modified time
    Searched refs:subject (Results 1 - 25 of 681) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/header/
Subject.java 7 * employees are not subject to copyright protection in the United States
48 public class Subject extends SIPHeader implements SubjectHeader {
54 /** subject field
56 protected String subject; field in class:Subject
60 public Subject() {
61 super(SUBJECT);
69 if (subject != null) {
70 return subject;
77 * Sets the subject value of the SubjectHeader to the supplied string
78 * subject value
    [all...]
  /frameworks/native/services/vr/performanced/
string_trim.h 11 // Trims whitespace from the left side of |subject| and returns the result as a
13 inline std::string LeftTrim(std::string subject) {
14 subject.erase(subject.begin(),
15 std::find_if(subject.begin(), subject.end(),
17 return subject;
20 // Trims whitespace from the right side of |subject| and returns the result as a
22 inline std::string RightTrim(std::string subject) {
23 subject.erase(std::find_if(subject.rbegin(), subject.rend()
    [all...]
  /libcore/ojluni/src/main/java/java/security/
Principal.java 8 * particular file as subject to the "Classpath" exception as provided
28 import javax.security.auth.Subject;
75 * Returns true if the specified subject is implied by this principal.
78 * {@code subject} is non-null and contains at least one principal that
84 * @param subject the {@code Subject}
85 * @return true if {@code subject} is non-null and is
89 public default boolean implies(Subject subject) {
90 if (subject == null
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
SubjectParser.java 7 * employees are not subject to copyright protection in the United States
32 * Parser for Subject header.
45 * @param subject the header to parse
47 public SubjectParser(String subject) {
48 super(subject);
61 * @return SIPHeader (Subject object)
65 Subject subject = new Subject(); local
70 headerName(TokenTypes.SUBJECT);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
CertificationRequestInfo.java 21 * subject Name,
38 X500Name subject; field in class:CertificationRequestInfo
66 * @param subject subject to be associated with the public key
67 * @param pkInfo public key to be associated with subject
71 X500Name subject,
75 if ((subject == null) || (pkInfo == null))
80 this.subject = subject;
89 X509Name subject,
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
V1TBSCertificateGenerator.java 19 * subject Name,
33 X500Name subject; field in class:V1TBSCertificateGenerator
95 X509Name subject)
97 this.subject = X500Name.getInstance(subject.toASN1Primitive());
101 X500Name subject)
103 this.subject = subject;
116 || (subject == null) || (subjectPublicKeyInfo == null))
138 seq.add(subject);
    [all...]
V3TBSCertificateGenerator.java 20 * subject Name,
37 X500Name subject; field in class:V3TBSCertificateGenerator
104 X509Name subject)
106 this.subject = X500Name.getInstance(subject.toASN1Primitive());
110 X500Name subject)
112 this.subject = subject;
162 || (subject == null && !altNamePresentAndCritical) || (subjectPublicKeyInfo == null))
184 if (subject != null
    [all...]
  /external/nist-sip/java/javax/sip/header/
SubjectHeader.java 6 String NAME = "Subject";
9 void setSubject(String subject) throws ParseException;
  /external/v8/src/regexp/
interpreter-irregexp.h 21 Handle<String> subject,
interpreter-irregexp.cc 28 int len, Vector<const uc16> subject,
31 reinterpret_cast<Address>(const_cast<uc16*>(&subject.at(from)));
33 reinterpret_cast<Address>(const_cast<uc16*>(&subject.at(current)));
41 int len, Vector<const uint8_t> subject,
45 unsigned int old_char = subject[from++];
46 unsigned int new_char = subject[current++];
155 Vector<const Char> subject,
269 if (pos >= subject.length() || pos < 0) {
272 current_char = subject[pos];
279 current_char = subject[pos]
    [all...]
regexp-macro-assembler.cc 129 String* subject,
131 if (subject->IsConsString()) {
132 subject = ConsString::cast(subject)->first();
133 } else if (subject->IsSlicedString()) {
134 start_index += SlicedString::cast(subject)->offset();
135 subject = SlicedString::cast(subject)->parent();
138 DCHECK(start_index <= subject->length());
139 if (subject->IsSeqOneByteString())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
sendEmailAlert.sh 81 subject="Eclipse RSS Feed Updated!";
87 echo "Subject: "$subject;
96 cat $tmpfile | $MAIL -s "$subject" -a "From: $fromAddress" $toAddress;
  /external/autotest/scheduler/
email_manager.py 29 def send_email(self, to_string, subject, body):
34 @param subject: String, email subject.
43 gmail_lib.send_email(to_string, subject, body)
48 def enqueue_notify_email(self, subject, message):
51 @param subject: String, subject of the message.
54 logging.error(subject + '\n' + message)
58 body = 'Subject: ' + subject + '\n
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProductionComponentValidator.java 42 ValidationReport<TypeElement> validate(final TypeElement subject) {
43 final ValidationReport.Builder<TypeElement> builder = ValidationReport.about(subject);
45 if (!subject.getKind().equals(INTERFACE)
46 && !(subject.getKind().equals(CLASS) && subject.getModifiers().contains(ABSTRACT))) {
48 "@ProductionComponent may only be applied to an interface or abstract class", subject);
52 getAnnotationMirror(subject, ProductionComponent.class).get();
61 builder.addError(mirror + " is not a valid module type.", subject);
75 subject);
BuilderValidator.java 62 public ValidationReport<TypeElement> validate(TypeElement subject) {
63 ValidationReport.Builder<TypeElement> builder = ValidationReport.about(subject);
65 Element componentElement = subject.getEnclosingElement();
69 checkArgument(subject.getAnnotation(builderAnnotation) != null);
72 builder.addError(msgs.mustBeInComponent(), subject); local
75 switch (subject.getKind()) {
77 List<? extends Element> allElements = subject.getEnclosedElements();
80 builder.addError(msgs.cxtorOnlyOneAndNoArgs(), subject); local
87 builder.addError(msgs.mustBeClassOrInterface(), subject); local
91 if (!subject.getTypeParameters().isEmpty())
92 builder.addError(msgs.generics(), subject); local
97 builder.addError(msgs.isPrivate(), subject); local
100 builder.addError(msgs.mustBeStatic(), subject); local
104 builder.addError(msgs.mustBeAbstract(), subject); local
151 builder.addError(msgs.missingBuildMethod(), subject); local
160 builder.addError(String.format(msgs.manyMethodsForType(), type, entry.getValue()), subject); local
    [all...]
ValidationReport.java 39 * <p>A report describes a subject {@link Element}. Callers may choose to add report items about
40 * other elements that are contained within or related to the subject. Since {@link Diagnostic}
42 * {@link #printMessagesTo(Messager)} will only associate messages with non-subject elements if they
43 * are contained within the subject. Otherwise, they will be associated with the subject and contain
52 abstract T subject(); method in class:ValidationReport
75 if (isEnclosedIn(subject(), item.element())) {
85 messager.printMessage(item.kind(), message, subject(), item.annotation().get()); method
87 messager.printMessage(item.kind(), message, subject()); method
131 static <T extends Element> Builder<T> about(T subject) {
    [all...]
  /external/v8/src/
string-search.h 20 // independently of subject and pattern char size.
81 int Search(Vector<const SubjectChar> subject, int index) {
82 return strategy_(this, subject, index);
109 Vector<const SubjectChar> subject,
113 Vector<const SubjectChar> subject,
117 Vector<const SubjectChar> subject,
122 Vector<const SubjectChar> subject,
126 Vector<const SubjectChar> subject,
152 // Both pattern and subject are UC16. Reduce character to equivalence class.
211 Vector<const SubjectChar> subject, int index)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListWithMailMessages.java 77 public MailMessage(String subject, String body) {
78 this(subject, body, false);
82 public MailMessage(String subject, String body, boolean focusable) {
83 mSubject = subject;
92 public void setSubject(String subject) {
93 this.mSubject = subject;
135 TextView subject = (TextView) messageUi.findViewById(R.id.subject); local
136 subject.setText(message.getSubject());
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
PerfOutputWriter.java 65 private void writeResult(final String description, final double subject,
68 format(fmt, Double.valueOf(subject)), unit);
71 private void writeResult(final String description, final double subject,
73 double overhead = 100 * (subject - reference) / reference;
75 format(fmt, Double.valueOf(subject)),
TimedScenario.java 42 * Runs the given subject several times and returns the minimum execution
45 * @param subject
49 private long getMinimumTime(final Callable<Void> subject) throws Exception {
52 final long t = getTime(subject);
58 private long getTime(final Callable<Void> subject) throws Exception {
60 subject.call();
  /external/pcre/dist2/src/
pcre2demo.c 14 "(*UTF)", both it and the subject are treated as UTF-8 strings, where
73 PCRE2_SPTR subject; /* the appropriate width (in this case, 8 bits). */ local
116 and the subject string. */
120 printf("Exactly two arguments required: a regex and a subject string\n");
124 /* As pattern and subject are char arguments, they can be straightforwardly
128 subject = (PCRE2_SPTR)argv[i+1];
129 subject_length = strlen((char *)subject);
159 * pattern match against the subject string. This does just ONE match. If *
171 subject, /* the subject string *
    [all...]
pcre2_jit_match.c 71 subject points to the subject string
72 length length of subject string (may contain binary zeros)
73 start_offset where to start in the subject string
86 pcre2_jit_match(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length,
93 (void)subject;
125 arguments.str = subject + start_offset;
126 arguments.begin = subject;
127 arguments.end = subject + length;
129 arguments.startchar_ptr = subject;
    [all...]
  /external/autotest/client/cros/
certificate_util.py 16 ATTRIBUTE_SUBJECT = 'subject'
52 def subject(self): member in class:PEMCertificate
53 """Returns the subject DN of the certificate as a list of name=value"""
55 subject = self.get_attribute(self.ATTRIBUTE_SUBJECT)
60 self._subject = subject.lstrip(' /').split('/')
66 """Returns the subject DN of the certificate as a dict of name:value"""
70 self.subject))
  /libcore/ojluni/src/main/java/javax/security/auth/
SubjectDomainCombiner.java 8 * particular file as subject to the "Classpath" exception as provided
35 public SubjectDomainCombiner(Subject subject) { }
37 public Subject getSubject() { return null; }
  /external/toolchain-utils/cros_utils/
email_sender.py 31 subject,
40 self.SendGMREmail(email_to, subject, text_to_send, email_cc, email_bcc,
43 self.SendSMTPEmail(email_to, subject, text_to_send, email_cc, email_bcc,
46 def SendSMTPEmail(self, email_to, subject, text_to_send, email_cc, email_bcc,
56 msg['Subject'] = subject
83 def SendGMREmail(self, email_to, subject, text_to_send, email_cc, email_bcc,
102 # Fix single-quotes inside the subject. In bash, to escape a single quote
106 subject = subject.replace("'", "'\\''"
    [all...]

Completed in 811 milliseconds

1 2 3 4 5 6 7 8 91011>>