Searched defs:subject (Results 1 - 10 of 10) sorted by relevance

/frameworks/native/services/vr/performanced/
H A Dstring_trim.h11 // Trims whitespace from the left side of |subject| and returns the result as a
13 inline std::string LeftTrim(std::string subject) { argument
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) { argument
23 subject
32 Trim(std::string subject) argument
[all...]
/frameworks/support/car/src/main/java/androidx/car/widget/
H A DMinTouchTargetHelper.java55 private TouchTargetSubject(@NonNull View subject) { argument
56 mSubjectView = subject;
60 * Sets the minimum touch target size in pixels for the subject view. Calling this method
81 // The TouchDelegate needs to be set after the subject view has been laid out in
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListWithMailMessages.java77 public MailMessage(String subject, String body) { argument
78 this(subject, body, false);
82 public MailMessage(String subject, String body, boolean focusable) { argument
83 mSubject = subject;
92 public void setSubject(String subject) { argument
93 this.mSubject = subject;
135 TextView subject = (TextView) messageUi.findViewById(R.id.subject);
136 subject.setText(message.getSubject());
/frameworks/base/keystore/java/android/security/
H A DKeyPairGeneratorSpec.java50 * The KeyPair generator will create a self-signed certificate with the subject
193 * Gets the subject distinguished name to be used on the X.509 certificate
372 * Sets the subject used for the self-signed certificate of the
376 public Builder setSubject(@NonNull X500Principal subject) { argument
377 if (subject == null) {
378 throw new NullPointerException("subject == null");
380 mSubjectDN = subject;
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DShareCompat.java561 * Set a subject heading for this share; useful for sharing via email.
563 * @param subject Subject heading for this share
567 public IntentBuilder setSubject(String subject) { argument
568 mIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
815 * Get a subject heading for this share; useful when sharing via email.
817 * @return The subject heading for this share or null if one was not supplied.
/frameworks/base/keystore/java/android/security/keystore/
H A DKeyGenParameterSpec.java73 * support storing key pairs without a certificate. The subject, serial number, and validity dates
392 * Returns the subject distinguished name to be used on the X.509 certificate that will be put
845 * Sets the subject used for the self-signed certificate of the generated key pair.
847 * <p>By default, the subject is {@code CN=fake}.
850 public Builder setCertificateSubject(@NonNull X500Principal subject) { argument
851 if (subject == null) {
852 throw new NullPointerException("subject == null");
854 mCertificateSubject = subject;
/frameworks/base/packages/Shell/tests/src/com/android/shell/
H A DBugreportReceiverTest.java796 * @param name expected subject
804 String screenshotContent, int id, int pid, String subject,
816 assertEquals("wrong subject", subject, extras.getString(Intent.EXTRA_SUBJECT));
803 assertActionSendMultiple(Bundle extras, String bugreportContent, String screenshotContent, int id, int pid, String subject, String name, String title, String description, int numberScreenshots, boolean renamedScreenshots) argument
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1411 * specify a verb that takes a subject, use {@link #addRule(int, int)}.
1441 * @param subject the ID of another view to use as an anchor, or a
1448 public void addRule(int verb, int subject) { argument
1452 && mInitialRules[verb] != 0 && subject == 0) {
1456 mRules[verb] = subject;
1457 mInitialRules[verb] = subject;
/frameworks/base/telephony/java/android/provider/
H A DTelephony.java206 * The subject of the message, if present.
209 public static final String SUBJECT = "subject";
336 * @param subject the pseudo-subject of the message
344 Uri uri, String address, String body, String subject,
347 resolver, uri, address, body, subject, date, read, deliveryReport, -1L);
357 * @param subject the psuedo-subject of the message
366 Uri uri, String address, String body, String subject,
368 return addMessageToUri(subId, resolver, uri, address, body, subject,
343 addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport) argument
365 addMessageToUri(int subId, ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport) argument
387 addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) argument
411 addMessageToUri(int subId, ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) argument
527 addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean read) argument
547 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date, boolean read) argument
587 addMessage(ContentResolver resolver, String address, String body, String subject, Long date) argument
605 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date) argument
632 addMessage(ContentResolver resolver, String address, String body, String subject, Long date) argument
650 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date) argument
696 addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument
717 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java9306 // Apps that target O+ are always subject to background check
15682 * @param subject line related to the error, null if absent
15689 ActivityRecord parent, String subject,
15729 if (subject != null) {
15730 sb.append("Subject: ").append(subject).append("\n");
15687 addErrorToDropBox(String eventType, ProcessRecord process, String processName, ActivityRecord activity, ActivityRecord parent, String subject, final String report, final File dataFile, final ApplicationErrorReport.CrashInfo crashInfo) argument
[all...]

Completed in 259 milliseconds