/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
D | ExpectedKeyVisual.java | 97 return mIconId == moreKeySpec.mIconId && moreKeySpec.mLabel == null; in hasSameKeyVisual() 120 private final String mLabel; field in ExpectedKeyVisual.Label 123 mLabel = label; in Label() 133 return mLabel; in getLabel() 138 return new Label(StringUtils.toTitleCaseOfKeyLabel(mLabel, locale)); in toUpperCase() 143 return new CasePreservedLabel(mLabel); in preserveCase() 148 return mLabel.equals(text); in hasSameKeyVisual() 155 return mLabel.equals(key.getLabel()) in hasSameKeyVisual() 164 return mLabel.equals(moreKeySpec.mLabel) in hasSameKeyVisual() 170 return output.hasSameKeyOutput(mLabel); in hasSameKeyVisual() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | LabeledEditorView.java | 71 private Spinner mLabel; field in LabeledEditorView 138 mLabel = (Spinner) findViewById(R.id.spinner); in onFinishInflate() 140 mLabel.setId(View.NO_ID); in onFinishInflate() 141 mLabel.setOnItemSelectedListener(mSpinnerListener); in onFinishInflate() 142 ViewSelectedFilter.suppressViewSelectedEvent(mLabel); in onFinishInflate() 207 if (row == 0 && mLabel != null) { in getBaseline() 208 return mLabel.getBaseline(); in getBaseline() 218 mLabel.setEnabled(!mReadOnly && isEnabled()); in setupLabelButton() 219 mLabel.setVisibility(View.VISIBLE); in setupLabelButton() 221 mLabel.setVisibility(View.GONE); in setupLabelButton() [all …]
|
/packages/modules/Permission/framework-s/java/android/safetycenter/ |
D | SafetyCenterIssue.java | 410 @NonNull private final CharSequence mLabel; field in SafetyCenterIssue.Action 424 mLabel = label; in Action() 440 return mLabel; in getLabel() 482 && TextUtils.equals(mLabel, action.mLabel) in equals() 492 mId, mLabel, mSuccessMessage, mWillResolve, mInFlight, mPendingIntent); in hashCode() 501 + mLabel in toString() 521 TextUtils.writeToParcel(mLabel, dest, flags); in writeToParcel() 532 @NonNull private CharSequence mLabel; field in SafetyCenterIssue.Action.Builder 550 mLabel = requireNonNull(label); in Builder() 564 mLabel = requireNonNull(label); in setLabel() [all …]
|
D | SafetySourceIssue.java | 354 @NonNull private final CharSequence mLabel; field in SafetySourceIssue.Action 366 mLabel = label; in Action() 387 return mLabel; in getLabel() 427 TextUtils.writeToParcel(mLabel, dest, flags); in writeToParcel() 439 && TextUtils.equals(mLabel, that.mLabel) in equals() 447 return Objects.hash(mId, mLabel, mPendingIntent, mWillResolve, mSuccessMessage); in hashCode() 456 + mLabel in toString() 470 @NonNull private final CharSequence mLabel; field in SafetySourceIssue.Action.Builder 481 mLabel = requireNonNull(label); in Builder() 510 return new Action(mId, mLabel, mPendingIntent, mWillResolve, mSuccessMessage); in build()
|
/packages/apps/Settings/src/com/android/settings/localepicker/ |
D | LocaleDragCell.java | 32 private TextView mLabel; field in LocaleDragCell 45 mLabel = (TextView) findViewById(R.id.label); in onFinishInflate() 66 mLabel.setVisibility(INVISIBLE); in setShowCheckbox() 69 mLabel.setVisibility(VISIBLE); in setShowCheckbox() 91 mLabel.setText(labelText); in setLabelAndDescription() 93 mLabel.setContentDescription(description); in setLabelAndDescription()
|
/packages/apps/TV/src/com/android/tv/menu/ |
D | PlayControlsButton.java | 37 private final TextView mLabel; field in PlayControlsButton 63 mLabel = (TextView) findViewById(R.id.label); in PlayControlsButton() 127 mLabel.setVisibility(View.GONE); in setLabel() 130 mLabel.setVisibility(View.VISIBLE); in setLabel() 131 if (!TextUtils.equals(mLabel.getText(), label)) { in setLabel() 132 mLabel.setText(label); in setLabel() 148 mLabel.setEnabled(enabled); in setEnabled()
|
/packages/apps/Settings/src/com/android/settings/applications/ |
D | RunningState.java | 157 if (lhs.mLabel == rhs.mLabel) { 160 return lhs.mLabel != null ? lhs.mLabel.compareTo(rhs.mLabel) : -1; 165 Log.i(TAG, " Label " + lhs.mProcess.mLabel 166 + " with " + rhs.mProcess.mLabel); 195 if (lhs.mProcess.mLabel == rhs.mProcess.mLabel) { 198 if (lhs.mProcess.mLabel == null) return 1; 199 if (rhs.mProcess.mLabel == null) return -1; 200 return lhs.mProcess.mLabel.compareTo(rhs.mProcess.mLabel); 340 String mLabel; field in RunningState.UserState 350 String mLabel; field in RunningState.BaseItem [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | Key.java | 59 private final String mLabel; field in Key 229 mLabel = label; in Key() 345 mLabel = params.mId.mCustomActionLabel; in Key() 350 mLabel = new StringBuilder().appendCodePoint(code).toString(); in Key() 353 mLabel = needsToUpcase in Key() 372 && !TextUtils.isEmpty(mLabel)) { in Key() 373 if (StringUtils.codePointCount(mLabel) == 1) { in Key() 379 mCode = mLabel.codePointAt(0); in Key() 384 outputText = mLabel; in Key() 421 mLabel = key.mLabel; in Key() [all …]
|
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/model/legacy/ |
D | PermissionGroup.java | 34 private final CharSequence mLabel; field in PermissionGroup 44 mLabel = label; in PermissionGroup() 60 return mLabel; in getLabel() 90 return mLabel.toString().compareTo(another.mLabel.toString()); in compareTo()
|
D | PermissionApps.java | 65 private CharSequence mLabel; field in PermissionApps 165 return mLabel; in getLabel() 346 mLabel = info.loadLabel(mPm); in loadGroupInfo() 365 private String mLabel; field in PermissionApps.PermissionApp 375 mLabel = label; in PermissionApp() 390 return mLabel; in getLabel() 449 if (mInfo.packageName.equals(mLabel) || mIcon == null) { in loadAppData() 451 mLabel = appData.getLabel(); in loadAppData() 459 final int result = mLabel.compareTo(another.mLabel); in compareTo() 520 private final String mLabel; field in PermissionApps.AppDataCache.AppData [all …]
|
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/auto/ |
D | AutoSettingsFrameFragment.java | 41 private CharSequence mLabel; field in AutoSettingsFrameFragment 62 mLabel = label; in setHeaderLabel() 65 getPreferenceScreen().setTitle(mLabel); in setHeaderLabel() 72 return mLabel; in getHeaderLabel() 77 mToolbar.setTitle(mLabel); in updateHeaderLabel()
|
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
D | AlarmInstance.kt | 51 var mLabel: String? = null variable in com.android.deskclock.provider.AlarmInstance 72 mLabel = "" 85 mLabel = instance.mLabel 100 mLabel = c.getString(Alarm.INSTANCE_LABEL_INDEX) 109 mLabel = c.getString(LABEL_INDEX) 133 return if (mLabel.isNullOrEmpty()) context.getString(R.string.default_label) else mLabel!! in getLabelOrDefault() 233 ", mLabel=" + mLabel + in toString() 306 values.put(AlarmSettingColumns.LABEL, instance.mLabel) in createContentValues()
|
/packages/services/Car/tests/MultiDisplaySecondaryHomeTestLauncher/src/com/android/car/multidisplay/launcher/ |
D | AppEntry.java | 28 private String mLabel; field in AppEntry 33 mLabel = info.loadLabel(packageManager).toString(); in AppEntry() 41 return mLabel; in getLabel() 58 return mLabel; in toString()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | MoreKeySpec.java | 50 public final String mLabel; field in MoreKeySpec 61 mLabel = needsToUpperCase ? StringUtils.toTitleCaseOfKeyLabel(label, locale) : label; in MoreKeySpec() 69 mOutputText = mLabel; in MoreKeySpec() 82 return new Key(mLabel, mIconId, mCode, mOutputText, null /* hintLabel */, labelFlags, in buildKey() 92 final String label = mLabel; in hashCode() 108 && TextUtils.equals(mLabel, other.mLabel) in equals() 116 final String label = (mIconId == KeyboardIconsSet.ICON_UNDEFINED ? mLabel in toString()
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
D | DirectoryPartition.java | 43 private String mLabel; field in DirectoryPartition 146 return mLabel; in getLabel() 150 mLabel = label; in setLabel() 164 ", mLabel='" + mLabel + '\'' + in toString()
|
/packages/apps/ThemePicker/src/com/android/customization/model/theme/custom/ |
D | ThemeComponentOption.java | 108 private final String mLabel; field in ThemeComponentOption.FontOption 115 mLabel = label; in FontOption() 129 view.setContentDescription(mLabel); in bindThumbnailTile() 208 private String mLabel; field in ThemeComponentOption.IconOption 219 view.setContentDescription(mLabel); in bindThumbnailTile() 279 mLabel = label; in setLabel() 331 private String mLabel; field in ThemeComponentOption.ColorOption 336 mLabel = label; in ColorOption() 359 view.setContentDescription(mLabel); in bindThumbnailTile() 467 private final String mLabel; field in ThemeComponentOption.ShapeOption [all …]
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | CircleButtonsLayout.kt | 42 private var mLabel: TextView? = null variable 62 if (mLabel == null) { in remeasureViews() 64 mLabel = findViewById<View>(R.id.timer_label) as TextView in remeasureViews() 81 mLabel?.let { in remeasureViews()
|
/packages/apps/Settings/src/com/android/settings/utils/ |
D | CandidateInfoExtra.java | 24 private final CharSequence mLabel; field in CandidateInfoExtra 31 mLabel = label; in CandidateInfoExtra() 38 return mLabel; in loadLabel()
|
/packages/apps/Settings/src/com/android/settings/security/trustagent/ |
D | TrustAgentInfo.java | 23 private final CharSequence mLabel; field in TrustAgentInfo 28 mLabel = label; in TrustAgentInfo() 34 return mLabel; in getLabel()
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
D | AppDialog.java | 42 private final String mLabel; field in AppDialog 49 mLabel = label; in AppDialog() 58 setTitle(mLabel); in onCreate()
|
/packages/apps/Dialer/java/com/android/contacts/common/util/ |
D | StopWatch.java | 25 private final String mLabel; field in StopWatch 31 mLabel = label; in StopWatch() 60 sb.append(mLabel); in stopAndLog()
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/ |
D | CorpusView.java | 37 private TextView mLabel; field in CorpusView 56 mLabel = (TextView) findViewById(R.id.source_label); in onFinishInflate() 60 mLabel.setText(label); in setLabel()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | StopWatch.java | 30 private final String mLabel; field in StopWatch 36 mLabel = label; in StopWatch() 69 sb.append(mLabel); in stopAndLog()
|
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/handheld/ |
D | SettingsWithLargeHeader.java | 51 protected CharSequence mLabel; field in SettingsWithLargeHeader 92 mLabel = label; in setHeader() 121 appIcon.setContentDescription(mLabel); in updateHeader() 125 appName.setText(mLabel); in updateHeader()
|
D | SettingsWithHeader.java | 39 protected CharSequence mLabel; field in SettingsWithHeader 59 mLabel = label; in setHeader() 71 appName.setText(mLabel); in updateHeader()
|