HomeSort by relevance Sort by last modified time
    Searched refs:subject (Results 176 - 200 of 477) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mesa3d/src/gallium/winsys/svga/drm/
Android.mk 11 # Software is furnished to do so, subject to the following conditions:
  /external/mesa3d/src/gallium/winsys/sw/android/
Android.mk 11 # Software is furnished to do so, subject to the following conditions:
  /external/v8/test/webkit/
dfg-uint32-to-number-in-middle-of-copy-propagation.js 25 "Tests that UInt32ToNumber and OSR exit are aware of copy propagation and correctly recover both versions of a variable that was subject to a UInt32ToNumber cast."
  /external/wpa_supplicant_8/src/crypto/
tls.h 52 const char *subject; member in struct:tls_event_data::__anon27485
60 const char *subject; member in struct:tls_event_data::__anon27486
108 * @subject_match: String to match in the subject of the peer certificate or
110 * @altsubject_match: String to match in the alternative subject of the peer
  /hardware/intel/img/psb_video/fw/msvdx/
Android.mk 8 # permit persons to whom the Software is furnished to do so, subject to
  /hardware/intel/img/psb_video/fw/topazhp/
Android.mk 8 # permit persons to whom the Software is furnished to do so, subject to
  /hardware/intel/img/psb_video/fw/topazsc/
Android.mk 8 # permit persons to whom the Software is furnished to do so, subject to
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
Builder.java 8 * particular file as subject to the "Classpath" exception as provided
254 * <li> 0 means certificate subject or subjectAltName
264 * <p>Note that the subject and/or subjectAltName of the
296 /* see if certificate subject matches target */
297 X500Name subject = X500Name.asX500Name(certImpl.getSubjectX500Principal()); local
298 if (subject.equals(target)) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMessageListingElement.java 101 public void setSubject(String subject) {
102 this.mSubject = subject;
280 xmlMsgElement.attribute(null, "subject",
BluetoothMapContentObserver.java 224 Mms.SUBJECT,
239 BluetoothMapContract.MessageColumns.SUBJECT,
249 BluetoothMapContract.MessageColumns.SUBJECT,
604 String subject = null; field in class:BluetoothMapContentObserver.Event
654 String datetime, String subject, String senderName, String priority) {
660 if (subject != null) {
661 this.subject = BluetoothMapUtils.stripInvalidChars(subject);
671 String datetime, String subject, String senderName, String priority,
678 if (subject != null)
1349 String subject = c.getString(c.getColumnIndex(Sms.BODY)); local
1508 String subject = c.getString(c.getColumnIndex(Mms.SUBJECT)); local
1661 String subject = c.getString(c.getColumnIndex( local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ReceiveSmsMessageAction.java 125 final String subject = messageValues.getAsString(Sms.SUBJECT); local
143 participantId, selfId, text, subject, sent, received, seen, read);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SubjectAndFolderView.java 45 * A TextView that displays the conversation subject and list of folders for the message.
98 public void setSubject(String subject) {
99 mSubject = Conversation.getSubjectForDisplay(getContext(), null /* badgeText */, subject);
  /packages/services/Car/bluetooth/bt-map-client-lib/src/com/google/android/auto/mapservice/
BluetoothMapMessagesListing.java 127 public void setSubject(String subject) {
128 mSubject = subject;
152 json.put("subject", mSubject);
  /external/wpa_supplicant_8/wpa_supplicant/
notify.c 758 const char *subject, const char *altsubject[],
763 "depth=%d subject='%s'%s%s",
764 depth, subject, cert_hash ? " hash=" : "",
776 "depth=%d subject='%s' cert=%s",
777 depth, subject, cert_hex);
791 wpa_supplicant_dbus_notify_certification(wpa_s, depth, subject,
794 wpas_dbus_signal_certification(wpa_s, depth, subject, altsubject,
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.24/
truth-0.24.jar 
  /external/chromium-trace/catapult/third_party/Paste/paste/
httpserver.py     [all...]
  /external/pcre/dist/
pcre_dfa_exec.c 64 pattern for certain subject strings, but on other strings and on many of the
189 the subject is reached. ***NOTE*** If the start of this table is modified, the
328 /* This internal function applies a compiled pattern to a subject string,
336 current_subject where we currently are in the subject string
337 start_offset start offset in the subject string
573 /* Loop for scanning the subject */
599 printf("%.*sNext character: rest of subject = \"", rlevel*2-2, SP);
614 /* Load the current character from the subject outside the loop, as many
629 clen = 0; /* This indicates the end of the subject */
695 subject, remember the fact for use when testing for a partial match. *
    [all...]
  /external/mesa3d/src/glsl/
ir_reader.cpp 9 * Software is furnished to do so, subject to the following conditions:
883 ir_rvalue *subject = read_rvalue(s_subject); local
884 if (subject == NULL) {
885 ir_read_error(NULL, "when reading the subject of an array_ref");
890 if (subject == NULL) {
894 return new(mem_ctx) ir_dereference_array(subject, idx);
896 ir_rvalue *subject = read_rvalue(s_subject); local
897 if (subject == NULL) {
898 ir_read_error(NULL, "when reading the subject of a record_ref");
901 return new(mem_ctx) ir_dereference_record(subject, s_field->value())
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sns/
connection.py 9 # persons to whom the Software is furnished to do so, subject to the fol-
216 def publish(self, topic=None, message=None, subject=None, target_arn=None,
253 :type subject: string
254 :param subject: Optional parameter to be used as the "Subject"
268 if subject is not None:
269 params['Subject'] = subject
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_auth_test.py 20 def _check_token(self, user_id, token, subject='auth'):
21 rv = models.UserToken.get(user=user_id, subject=subject, token=token)
  /external/pcre/
pcre.h 364 /* When PCRE is compiled as a C++ library, the subject pointer type can be
423 PCRE_SPTR subject; /* The subject being matched */ member in struct:pcre_callout_block
424 int subject_length; /* The length of the subject */
426 int current_position; /* Where we currently are in the subject */
445 PCRE_SPTR16 subject; /* The subject being matched */ member in struct:pcre16_callout_block
446 int subject_length; /* The length of the subject */
448 int current_position; /* Where we currently are in the subject */
467 PCRE_SPTR32 subject; /* The subject being matched * member in struct:pcre32_callout_block
    [all...]
  /external/v8/src/
string-builder.h 193 ReplacementStringBuilder(Heap* heap, Handle<String> subject,
197 subject_(subject),
199 is_one_byte_(subject->IsOneByteRepresentation()) {
  /external/autotest/site_utils/
lab_inventory.py 741 def _send_email(arguments, tag, subject, recipients, body):
753 @param subject E-mail Subject: header line.
758 logging.debug('Generating email: "%s"', subject)
762 'Subject: %s' % subject,
775 gmail_lib.send_email(all_recipients, subject, body)
    [all...]
  /external/autotest/utils/
test_importer.py 306 subject='clear dependencies from')
320 subject='add dependency to %s' % test.name)
406 @param subject: (Optional) The type of log being written. Defaults to
409 subject = kwargs.get('subject', func.__name__)
412 logging.info("Would %s: %s", subject, content)
  /external/boringssl/src/crypto/x509/
t_req.c 112 if (BIO_printf(bio, " Subject:%c", mlch) <= 0 ||
113 X509_NAME_print_ex(bio, ri->subject, nmindent, nmflags) < 0 ||
119 if (BIO_write(bio, " Subject Public Key Info:\n", 33) <= 0 ||

Completed in 1763 milliseconds

1 2 3 4 5 6 78 91011>>