HomeSort by relevance Sort by last modified time
    Searched refs:subject (Results 51 - 75 of 240) sorted by null

1 23 4 5 6 7 8 910

  /packages/apps/Email/src/com/android/email/activity/
MessageListItemCoordinates.java 36 * (eg, checkmark, star, subject, sender, labels, etc.) It will inflate a view,
72 // Subject.
227 * Returns the length (maximum of characters) of subject in this mode.
287 TextView subject = (TextView) view.findViewById(R.id.subject); local
288 coordinates.subjectX = getX(subject);
289 coordinates.subjectY = getY(subject);
290 coordinates.subjectWidth = getWidth(subject, false);
291 coordinates.subjectLineCount = getLineCount(subject);
292 coordinates.subjectFontSize = (int) subject.getTextSize()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 63 * subject Name,
279 X509Name subject,
286 this(signatureAlgorithm, subject, key, attributes, signingKey, BouncyCastleProvider.PROVIDER_NAME);
307 X500Principal subject,
314 this(signatureAlgorithm, convertName(subject), key, attributes, signingKey, BouncyCastleProvider.PROVIDER_NAME);
322 X500Principal subject,
330 this(signatureAlgorithm, convertName(subject), key, attributes, signingKey, provider);
338 X509Name subject,
361 if (subject == null)
363 throw new IllegalArgumentException("subject must not be null")
    [all...]
  /external/openssl/crypto/x509/
x509_cmp.c 115 return(X509_NAME_cmp(a->cert_info->subject,b->cert_info->subject));
149 return(a->cert_info->subject);
159 return(X509_NAME_hash(x->cert_info->subject));
165 return(X509_NAME_hash_old(x->cert_info->subject));
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 148 .subject("CN=Test Root Certificate Authority")
153 .subject("CN=Test Intermediate Certificate Authority")
166 .subject("emailAddress=test@user")
172 .subject("CN=Test Root Certificate Authority 2")
240 private X500Principal subject; field in class:TestKeyStore.Builder
254 subject = localhost();
273 * Sets the subject common name. The default is the local host's
276 public Builder subject(X500Principal subject) { method in class:TestKeyStore.Builder
277 this.subject = subject
281 public Builder subject(String commonName) { method in class:TestKeyStore.Builder
    [all...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 124 * The subject of the message, if present
127 public static final String SUBJECT = "subject";
210 * @param subject the psuedo-subject of the message
217 Uri uri, String address, String body, String subject,
219 return addMessageToUri(resolver, uri, address, body, subject,
230 * @param subject the psuedo-subject of the message
238 Uri uri, String address, String body, String subject,
    [all...]
  /external/v8/test/mjsunit/
regexp-UC16.js 45 assertFalse(/\xc1/i.test('fooA'), "quickcheck-uc16-pattern-ascii-subject");
46 assertFalse(/[\xe9]/.test('i'), "charclass-uc16-pattern-ascii-subject");
47 assertFalse(/\u5e74|\u6708/.test('t'), "alternation-uc16-pattern-ascii-subject");
regexp-call-as-function.js 33 var subject = "xyzabcde"; variable
35 assertEquals(expected, String(regexp.exec(subject)));
36 assertThrows(function(){ regexp(subject); });
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
AttributeCertificateIssuer.java 65 private boolean matchesDN(X500Name subject, GeneralNames targets)
75 if (X500Name.getInstance(gn.getName()).equals(subject))
  /external/ceres-solver/docs/
further.tex 4 For a short but informative introduction to the subject we recommend the booklet by Madsel et al.~\cite{madsen2004methods}. For a general introduction to non-linear optimization we recommend the text by Nocedal \& Wright~\cite{nocedal2000numerical}. Bj{\"o}rck's book remains the seminal reference on least squares problems~\cite{bjorck1996numerical}. Trefethen \& Bau's book is our favourite text on introductory numerical linear algebra~\cite{trefethen1997numerical}. Triggs et al., provide a thorough coverage of the bundle adjustment problem~\cite{triggs-etal-1999}.
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/
SslContextBuilder.java 56 * @param hostName the subject of the host. For TLS this should be the
103 X500Principal subject = new X500Principal("CN=" + hostName); local
108 generator.setSubjectDN(subject);
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 56 private X500Principal subject; field in class:X509CertSelector
236 * Set the subject that a certificate must match.
238 * @param subject
239 * the subject distinguished name or {@code null} to not check
240 * the subject.
242 public void setSubject(X500Principal subject) {
243 this.subject = subject;
247 * Returns the subject that a certificate must match.
249 * @return the subject distinguished name, or null if the subject is not t
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509V1CertificateGenerator.java 117 * Set the subject distinguished name. The subject describes the entity associated with the public key.
120 X500Principal subject)
124 tbsGen.setSubject(new X509Principal(subject.getEncoded()));
133 * Set the subject distinguished name. The subject describes the entity associated with the public key.
136 X509Name subject)
138 tbsGen.setSubject(subject);
181 * generate an X509 certificate, based on the current issuer and subject
200 * generate an X509 certificate, based on the current issuer and subject
    [all...]
AttributeCertificateIssuer.java 110 private boolean matchesDN(X500Principal subject, GeneralNames targets)
122 if (new X500Principal(((ASN1Encodable)gn.getName()).toASN1Primitive().getEncoded()).equals(subject))
X509V3CertificateGenerator.java 122 * Set the subject distinguished name. The subject describes the entity associated with the public key.
125 X500Principal subject)
129 tbsGen.setSubject(new X509Principal(subject.getEncoded()));
138 * Set the subject distinguished name. The subject describes the entity associated with the public key.
141 X509Name subject)
143 tbsGen.setSubject(subject);
187 * Set the subject unique ID - note: it is very rare that it is correct to do this.
314 * generate an X509 certificate, based on the current issuer and subject
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_manager.cc 99 if (cert.subject().organization_names.empty() ||
100 cert.subject().country_name.empty()) {
107 UTF8ToUTF16(cert.subject().organization_names[0]),
108 UTF8ToUTF16(cert.subject().country_name));
  /packages/apps/Email/src/com/android/email/
NotificationController.java 512 // The notification content will be the subject of the conversation.
515 // The notification subtext will be the subject of the conversation for inbox
535 final String subject = message.mSubject; local
539 final String subjectSnippet = !TextUtils.isEmpty(subject) ? subject : snippet;
545 // If the senders are empty, just use the subject/snippet.
549 // If the subject/snippet is empty, just use the senders.
583 * @param subject Subject of the new message that triggered the notification
586 private static CharSequence getSingleMessageLittleText(Context context, String subject) {
    [all...]
  /external/v8/src/
regexp.js 104 // empty subject string, and an actual undefined value passed as the
295 // on the captures array of the last successful match and the subject string
331 var subject;
334 subject = LAST_SUBJECT(lastMatchInfo);
338 subject = override[override.length - 1];
340 return SubString(subject, 0, start_index);
346 var subject;
349 subject = LAST_SUBJECT(lastMatchInfo);
352 subject = override[override.length - 1];
356 return SubString(subject, start_index, subject.length)
    [all...]
regexp-macro-assembler.h 198 Handle<String> subject,
219 static const byte* StringCharacterPosition(String* subject, int start_index);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateTest.java 71 * subject Name,
128 Name subject = new Name("O=Subject Organization"); local
137 // Subject Alternative Names
161 signature, issuer, validity, subject, subjectPublicKeyInfo,
  /external/openssl/crypto/asn1/
x_x509.c 72 ASN1_SIMPLE(X509_CINF, subject, X509_NAME),
109 ret->name=X509_NAME_oneline(ret->cert_info->subject,NULL,0);
  /external/wpa_supplicant_8/src/crypto/
tls.h 49 const char *subject; member in struct:tls_event_data::__anon18445
57 const char *subject; member in struct:tls_event_data::__anon18446
93 * @subject_match: String to match in the subject of the peer certificate or
95 * @altsubject_match: String to match in the alternative subject of the peer
  /external/wpa_supplicant_8/src/tls/
x509v3.h 54 struct x509_name subject; member in struct:x509_certificate
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 210 Mms.CONTENT_URI, new String[] { Mms._ID, Mms.SUBJECT, Mms.SUBJECT_CHARSET },
234 String subject = null; local
242 int subjectIdx = cursor.getColumnIndex(Mms.SUBJECT);
244 subject = cursor.getString(subjectIdx);
246 if (subject != null) {
248 .getBytes(subject));
  /external/chromium/net/base/
cert_database_nss.cc 65 // --> <subject's common name>'s <issuer's common name> ID.
68 char* temp_username = CERT_GetCommonName(&cert->subject);
189 &cert0->os_cert_handle()->subject) == SECEqual)
192 &certn_1->os_cert_handle()->subject) == SECEqual)
x509_certificate.h 130 X509Certificate(const std::string& subject, const std::string& issuer,
178 // Subject, serial number and validity period are given as parameters.
182 // |subject| is a distinguished name defined in RFC4514.
196 const std::string& subject,
203 // The subject of the certificate. For HTTPS server certificates, this
204 // represents the web server. The common name of the subject should match
206 const CertPrincipal& subject() const { return subject_; } function in class:net::X509Certificate
225 // Otherwise, it gets the common name in the subject field.
389 // The members of |cert_names| must have been extracted from the Subject CN or
439 // The subject of the certificate
    [all...]

Completed in 1662 milliseconds

1 23 4 5 6 7 8 910