Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/preference/
H A DProgressBarPreference.kt42 val title: String
76 title = model.title,
91 title = model.title,
104 title: String,
111 title = title,
124 title: String,
139 title = title,
153 title: String,
161 SettingsTitle(title)
H A DSliderPreference.kt44 val title: String
97 title = model.title,
110 title: String,
120 title = title,
144 title = "Alarm Volume",
161 title = "Media Volume",
176 title = "Display Text",
H A DPreference.kt34 val title: String,
44 override val title: String = this@SimplePreferenceMacro.title
54 title = this@SimplePreferenceMacro.title,
67 val title: String
121 title = model.title,
H A DSwitchPreference.kt50 val title: String
98 title = model.title,
110 title: String,
136 title = title,
162 title = "Use Dark theme",
167 title = "Use Dark theme",
173 title = "Use Dark theme",
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/domain/model/
H A DBiometricPromptRequestTest.kt22 val title = "what" regex
29 promptInfo(title = title, subtitle = subtitle, description = description),
35 assertThat(request.title).isEqualTo(title)
46 val title = "what" regex
55 title = title,
67 credentialTitle = title,
78 credentialTitle = title,
89 assertThat(request.title).isEqualTo(title)
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/scaffold/
H A DSettingsScaffold.kt48 title: String,
52 ActivityTitle(title)
56 topBar = { SettingsTopAppBar(title, scrollBehavior, actions) },
70 internal fun ActivityTitle(title: String) {
73 context.getActivity()?.title = title
87 SettingsScaffold(title = "Display") { paddingValues ->
90 override val title = "Item 1"
93 override val title = "Item 2"
H A DCustomizedAppBar.kt86 title: @Composable () -> Unit,
91 title = title,
106 title: String,
113 title = { Title(title = title, maxLines = 3) },
117 smallTitle = { Title(title = title, maxLines = 1) },
131 text = title,
219 title: @Composable () -> Unit,
247 title = title,
272 title: @Composable () -> Unit,
380 title = {
[all …]
H A DRegularScaffold.kt41 title: String,
45 SettingsScaffold(title, actions) { paddingValues ->
58 RegularScaffold(title = "Display") {
60 override val title = "Item 1"
63 override val title = "Item 2"
/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/widget/
H A DMainSwitchBarTest.java56 final String title = "title"; in setTitle_shouldUpdateTitle() local
58 mBar.setTitle(title); in setTitle_shouldUpdateTitle()
61 assertThat(textView.getText()).isEqualTo(title); in setTitle_shouldUpdateTitle()
66 final String title = "title"; in setTitle_switchShouldNotHasContentDescription() local
68 mBar.setTitle(title); in setTitle_switchShouldNotHasContentDescription()
105 final String title = "title"; in setTitle_shouldSetCorrectLineBreakStyle() local
107 mBar.setTitle(title); in setTitle_shouldSetCorrectLineBreakStyle()
/aosp14/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java71 public final String title; field in StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { in Entry() argument
76 this.title = title; in Entry()
87 String title = null; in readEntry() local
96 title = readTitle(parser); in readEntry()
105 return new Entry(title, summary, link); in readEntry()
111 String title = readText(parser); in readTitle() local
113 return title; in readTitle()
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/location/
H A DInjectedSetting.java51 public final String title; field in InjectedSetting
77 this.title = builder.mTitle; in InjectedSetting()
89 ", label=" + title + in toString()
115 && Objects.equals(title, that.title) in equals()
126 result = 31 * result + title.hashCode(); in hashCode()
153 public Builder setTitle(String title) { in setTitle() argument
154 mTitle = title; in setTitle()
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/slice/provider/
H A DDemo.kt32 fun createDemoBrowseSlice(sliceUri: Uri, title: String, summary: String): Slice? {
34 return createDemoSlice(sliceUri, title, summary, intent)
37 fun createDemoActionSlice(sliceUri: Uri, title: String, summary: String): Slice? {
39 return createDemoSlice(sliceUri, title, summary, intent)
42 fun createDemoSlice(sliceUri: Uri, title: String, summary: String, intent: PendingIntent): Slice? {
48 setTitle(title)
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/debug/
H A DDebugActivity.kt115 HomeScaffold(title = "Settings Debug") {
121 override val title = "List All Entries (${allEntry.size})"
125 override val title = "List All Slices (${allSliceEntry.size})"
135 RegularScaffold(title = "All Pages (${allPageWithEntry.size})") {
151 RegularScaffold(title = "All Entries (${allEntry.size})") {
162 RegularScaffold(title = "All Slices (${allSliceEntry.size})") {
175 RegularScaffold(title = "Page - ${page.debugBrief()}") {
181 override val title = "open page"
196 RegularScaffold(title = "Entry - ${entry.debugBrief()}") {
198 override val title = "open entry"
[all …]
/aosp14/frameworks/base/packages/SettingsLib/Spa/gallery/src/com/android/settingslib/spa/gallery/ui/
H A DCategoryPage.kt46 override val title = TITLE
50 .setSearchDataFn { EntrySearchData(title = TITLE) }
61 .setMacro { SimplePreferenceMacro(title = "Preference 1", summary = "Summary 1") }
66 .setMacro { SimplePreferenceMacro(title = "Preference 2", summary = "Summary 2") }
71 .setMacro { SimplePreferenceMacro(title = "Preference 2", summary = "Summary 3") }
77 .setMacro { SimplePreferenceMacro(title = "Preference 4", summary = "Summary 4") }
86 RegularScaffold(title = getTitle(arguments)) {
/aosp14/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
H A DCompanionVendorHelperDialogFragment.java125 final CharSequence title; in onViewCreated() local
130 title = getHtmlFromResources(getContext(), R.string.helper_title_app_streaming); in onViewCreated()
132 getContext(), R.string.helper_summary_app_streaming, title, displayName); in onViewCreated()
136 title = getHtmlFromResources(getContext(), R.string.helper_title_computer); in onViewCreated()
138 getContext(), R.string.helper_summary_computer, title, displayName); in onViewCreated()
142 title = appLabel; in onViewCreated()
144 getContext(), R.string.helper_summary_nearby_device_streaming, title, in onViewCreated()
152 mTitle.setText(title); in onViewCreated()
/aosp14/frameworks/base/core/java/android/telephony/
H A DSubscriptionPlan.java87 private CharSequence title; field in SubscriptionPlan
103 title = source.readCharSequence(); in SubscriptionPlan()
120 dest.writeCharSequence(title); in writeToParcel()
133 .append(" title=").append(title) in toString()
145 return Objects.hash(cycleRule, title, summary, dataLimitBytes, dataLimitBehavior, in hashCode()
154 && Objects.equals(title, other.title) in equals()
184 return title; in getTitle()
313 public Builder setTitle(@Nullable CharSequence title) { in setTitle() argument
314 plan.title = title; in setTitle()
/aosp14/frameworks/base/packages/SettingsLib/Spa/gallery/src/com/android/settingslib/spa/gallery/preference/
H A DPreferencePage.kt93 SimplePreferenceMacro(title = SIMPLE_PREFERENCE_TITLE)
103 title = SIMPLE_PREFERENCE_TITLE,
118 title = DISABLE_PREFERENCE_TITLE,
131 EntrySearchData(title = ASYNC_PREFERENCE_TITLE)
138 override val title = ASYNC_PREFERENCE_TITLE
148 title = ASYNC_PREFERENCE_TITLE,
185 title = MANUAL_UPDATE_PREFERENCE_TITLE,
223 title = AUTO_UPDATE_PREFERENCE_TITLE,
255 override val title: String =
270 title = PAGE_TITLE,
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
H A DBiometricNotificationUtils.java67 final String title = in showReEnrollmentNotification() local
80 showNotificationHelper(context, name, title, content, pendingIntent, FACE_RE_ENROLL_CHANNEL, in showReEnrollmentNotification()
92 final String title = in showFaceEnrollNotification() local
104 showNotificationHelper(context, name, title, content, pendingIntent, FACE_ENROLL_CHANNEL, in showFaceEnrollNotification()
116 final String title = in showFingerprintEnrollNotification() local
128 showNotificationHelper(context, name, title, content, pendingIntent, in showFingerprintEnrollNotification()
151 final String title = in showBadCalibrationNotification() local
163 showNotificationHelper(context, name, title, content, pendingIntent, in showBadCalibrationNotification()
168 private static void showNotificationHelper(Context context, String name, String title, in showNotificationHelper() argument
177 .setContentTitle(title) in showNotificationHelper()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/domain/model/
H A DBiometricPromptRequest.kt14 val title: String,
28 title = info.title?.toString() ?: "",
44 title = (info.deviceCredentialTitle ?: info.title)?.toString() ?: "",
/aosp14/frameworks/base/tests/SilkFX/src/com/android/test/silkfx/app/
H A DCommonDemoActivity.kt39 val title = extras.getString(EXTRA_TITLE, "SilkFX") regex
40 window.setTitle(title)
49 actionBar?.title = title
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DStorageNotification.java234 final CharSequence title = in updateMissingPrivateVolumes() local
245 .setContentTitle(title) in updateMissingPrivateVolumes()
274 .setContentTitle(title) in onDiskScannedInternal()
382 final CharSequence title = mContext.getString( in onVolumeChecking() local
458 final CharSequence title = mContext.getString( in onVolumeEjecting() local
471 final CharSequence title = mContext.getString( in onVolumeUnmountable() local
523 final CharSequence title; in onMoveProgress() local
548 .setContentTitle(title) in onMoveProgress()
575 final CharSequence title; in onMoveFinished() local
599 .setContentTitle(title) in onMoveFinished()
[all …]
/aosp14/frameworks/base/core/tests/batterystatstests/BatteryStatsViewer/src/com/android/frameworks/core/batterystatsviewer/
H A DBatteryStatsViewerActivity.java82 mTitleView = findViewById(android.R.id.title); in onCreate()
250 titleTextView = itemView.findViewById(R.id.title); in ViewHolder()
283 setTitleIconAndBackground(viewHolder, entry.title, in onBindViewHolder()
289 setTitleIconAndBackground(viewHolder, entry.title, in onBindViewHolder()
303 setTitleIconAndBackground(viewHolder, entry.title, in onBindViewHolder()
317 setTitleIconAndBackground(viewHolder, entry.title, in onBindViewHolder()
324 setTitleIconAndBackground(viewHolder, entry.title, in onBindViewHolder()
330 setTitleIconAndBackground(viewHolder, entry.title, in onBindViewHolder()
336 setTitleIconAndBackground(viewHolder, entry.title, in onBindViewHolder()
343 setTitleIconAndBackground(viewHolder, entry.title, in onBindViewHolder()
[all …]
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
H A DBubbleDataRepositoryTest.kt48 title = null,
60 title = "title",
71 title = null,
85 title = null,
97 title = "title",
108 title = null,
119 title = "title",
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/ui/
H A DText.kt38 fun SettingsTitle(title: State<String>, useMediumWeight: Boolean = false) {
39 SettingsTitle(title.value, useMediumWeight)
43 fun SettingsTitle(title: String, useMediumWeight: Boolean = false) {
45 text = title,
81 fun PlaceholderTitle(title: String) {
87 text = title,
/aosp14/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java253 TextView title; field in PreferenceActivity.HeaderAdapter.HeaderViewHolder
278 holder.title = (TextView) view.findViewById(com.android.internal.R.id.title); in getView()
348 public CharSequence title; field in PreferenceActivity.Header
431 return title; in getTitle()
1174 setTitle(title); in showBreadCrumbs()
1188 setTitle(title); in showBreadCrumbs()
1194 setTitle(title); in showBreadCrumbs()
1229 if (title == null) title = header.getTitle(getResources()); in showBreadCrumbs()
1230 if (title == null) title = getTitle(); in showBreadCrumbs()
1320 if (cur.title.equals(oh.title)) { in findBestMatchingHeader()
[all …]

12345678910>>...18