HomeSort by relevance Sort by last modified time
    Searched refs:subject (Results 1 - 25 of 427) 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...]
  /external/smack/src/org/jivesoftware/smackx/muc/
SubjectUpdatedListener.java 24 * A listener that is fired anytime a MUC room changes its subject.
31 * Called when a MUC room has changed its subject.
33 * @param subject the new room's subject.
34 * @param from the user that changed the room's subject (e.g. room@conference.jabber.org/nick).
36 public abstract void subjectUpdated(String subject, String from);
  /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/chromium_org/courgette/
difference_estimator_unittest.cc 22 DifferenceEstimator::Subject* subject = local
24 EXPECT_EQ(0U, difference_estimator.Measure(base, subject));
33 DifferenceEstimator::Subject* subject = local
35 EXPECT_EQ(10U, difference_estimator.Measure(base, subject));
44 DifferenceEstimator::Subject* subject = local
46 EXPECT_EQ(1U, difference_estimator.Measure(base, subject));
55 DifferenceEstimator::Subject* subject local
    [all...]
difference_estimator.cc 15 // Our difference measure is the number of k-tuples that occur in Subject that
61 class DifferenceEstimator::Subject {
63 explicit Subject(const Region& region) : region_(region) {}
70 DISALLOW_COPY_AND_ASSIGN(Subject);
89 DifferenceEstimator::Subject* DifferenceEstimator::MakeSubject(
91 Subject* subject = new Subject(region); local
92 owned_subjects_.push_back(subject);
93 return subject;
    [all...]
difference_estimator.h 17 // A DifferenceEstimator simplifies the task of determining which 'Subject' byte
23 // The measure is asymmetric, if the Subject is a small substring of the Base
26 // The comparison is staged: first make Base and Subject objects for the regions
37 class Subject;
43 Subject* MakeSubject(const Region& region);
46 // from |base| to |subject|. Returns zero iff the base and subject regions
48 size_t Measure(Base* base, Subject* subject);
52 std::vector<Subject*> owned_subjects_
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
CertificationRequestInfo.java 20 * subject Name,
37 X500Name subject; field in class:CertificationRequestInfo
65 * @param subject subject to be associated with the public key
66 * @param pkInfo public key to be associated with subject
70 X500Name subject,
74 this.subject = subject;
78 if ((subject == null) || (version == null) || (subjectPKInfo == null))
88 X509Name subject,
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/
SubjectDomainCombiner.java 27 * granted to the specified {@link Subject}.
31 // subject to be associated
32 private Subject subject; field in class:SubjectDomainCombiner
34 // permission required to get a subject object
39 * Creates a domain combiner for the entity provided in {@code subject}.
41 * @param subject
44 public SubjectDomainCombiner(Subject subject) {
46 if (subject == null)
    [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/chromium_org/v8/src/
interpreter-irregexp.h 18 Handle<String> subject,
string-search.h 17 // independently of subject and pattern char size.
78 int Search(Vector<const SubjectChar> subject, int index) {
79 return strategy_(this, subject, index);
106 Vector<const SubjectChar> subject,
110 Vector<const SubjectChar> subject,
114 Vector<const SubjectChar> subject,
119 Vector<const SubjectChar> subject,
123 Vector<const SubjectChar> subject,
149 // Both pattern and subject are UC16. Reduce character to equivalence class.
197 Vector<const SubjectChar> subject,
    [all...]
regexp-macro-assembler.cc 51 String* subject,
54 ASSERT(subject->IsExternalString() || subject->IsSeqString());
56 ASSERT(start_index <= subject->length());
57 if (subject->IsOneByteRepresentation()) {
59 if (StringShape(subject).IsExternal()) {
60 const uint8_t* data = ExternalAsciiString::cast(subject)->GetChars();
63 ASSERT(subject->IsSeqOneByteString());
64 const uint8_t* data = SeqOneByteString::cast(subject)->GetChars();
70 if (StringShape(subject).IsExternal())
    [all...]
interpreter-irregexp.cc 27 Vector<const uc16> subject) {
29 unibrow::uchar old_char = subject[from++];
30 unibrow::uchar new_char = subject[current++];
48 Vector<const uint8_t> subject) {
50 unsigned int old_char = subject[from++];
51 unsigned int new_char = subject[current++];
162 Vector<const Char> subject,
276 if (pos >= subject.length()) {
279 current_char = subject[pos];
286 current_char = subject[pos]
    [all...]
string.js 89 var subject = TO_STRING_INLINE(this);
96 if (index > subject.length) index = subject.length;
98 return %StringIndexOf(subject, pattern, index);
146 var subject = TO_STRING_INLINE(this);
152 if (!regexp.global) return RegExpExecNoTests(regexp, subject, 0);
154 var result = %StringMatch(subject, regexp, lastMatchInfo);
161 return RegExpExecNoTests(regexp, subject, 0);
199 var subject = TO_STRING_INLINE(this);
229 var match = DoRegExpExec(search, subject, 0)
    [all...]
  /external/nist-sip/java/javax/sip/header/
SubjectHeader.java 6 String NAME = "Subject";
9 void setSubject(String subject) throws ParseException;
  /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/smack/src/org/jivesoftware/smackx/workgroup/settings/
OfflineSettings.java 32 private String subject; field in class:OfflineSettings
68 if (!ModelUtil.hasLength(subject)) {
71 return subject;
74 public void setSubject(String subject) {
75 this.subject = subject;
124 String subject = null; local
133 else if ((eventType == XmlPullParser.START_TAG) && ("subject".equals(parser.getName()))) {
134 subject = parser.nextText();
149 offlineSettings.setSubject(subject);
    [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/smack/src/org/jivesoftware/smack/packet/
Message.java 43 * <tr><td><i>subject</i></td> <td>SHOULD</td><td>SHOULD NOT</td><td>SHOULD NOT</td><td>SHOULD NOT</td><td>SHOULD NOT</td></tr>
57 private final Set<Subject> subjects = new HashSet<Subject>();
110 * Returns the default subject of the message, or null if the subject has not been set.
111 * The subject is a short description of message contents.
113 * The default subject of a message is the subject that corresponds to the message's language.
117 * @return the subject of the message.
124 * Returns the subject corresponding to the language. If the language is null, the method resul
132 Subject subject = getMessageSubject(language); local
512 private String subject; field in class:Message.Subject
    [all...]
  /libcore/luni/src/main/java/javax/security/auth/
SubjectDomainCombiner.java 27 public SubjectDomainCombiner(Subject subject) { }
29 public Subject getSubject() { return null; }
  /external/conscrypt/src/platform/java/org/conscrypt/
TrustedCertificateIndex.java 58 X500Principal subject; local
61 subject = cert.getSubjectX500Principal();
63 subject = anchor.getCA();
67 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject);
70 subjectToTrustAnchors.put(subject, anchors);
116 X500Principal subject = cert.getSubjectX500Principal(); local
118 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject);
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequestInfo.java 35 * subject Name,
46 /** the value of subject field of the structure */
47 private final Name subject; field in class:CertificationRequestInfo
58 private CertificationRequestInfo(int version, Name subject,
61 this.subject = subject;
68 return subject;
91 res.append("\n subject: ");
92 res.append(subject.getName(X500Principal.CANONICAL));
109 Name.ASN1, // subject
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_socket_utils.cc 89 const net::CertPrincipal& subject = cert.subject(); local
91 new base::StringValue(subject.common_name));
93 new base::StringValue(subject.locality_name));
95 new base::StringValue(subject.state_or_province_name));
97 new base::StringValue(subject.country_name));
100 new base::StringValue(JoinString(subject.organization_names, '\n')));
103 new base::StringValue(JoinString(subject.organization_unit_names, '\n')));
  /libcore/luni/src/main/java/java/security/
AuthProvider.java 20 import javax.security.auth.Subject;
30 public abstract void login(Subject subject, CallbackHandler handler) throws LoginException;

Completed in 498 milliseconds

1 2 3 4 5 6 7 8 91011>>