/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/DeskClock/src/com/android/deskclock/data/ |
D | Timer.java | 103 private final String mLabel; field in Timer 117 mLabel = label; in Timer() 123 public String getLabel() { return mLabel; } in getLabel() 199 mLabel, mDeleteAfterUse); in start() 213 return new Timer(mId, PAUSED, mLength, mTotalLength, UNUSED, UNUSED, remainingTime, mLabel, in pause() 226 return new Timer(mId, EXPIRED, mLength, 0L, now(), wallClock(), remainingTime, mLabel, in expire() 239 return new Timer(mId, MISSED, mLength, 0L, now(), wallClock(), remainingTime, mLabel, in miss() 251 return new Timer(mId, RESET, mLength, mLength, UNUSED, UNUSED, mLength, mLabel, in reset() 270 remainingTime, mLabel, mDeleteAfterUse); in updateAfterReboot() 292 remainingTime, mLabel, mDeleteAfterUse); in updateAfterTimeSet() [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/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/ |
D | PhoneNumber.java | 39 private final String mLabel; field in PhoneNumber 99 mLabel = label; in PhoneNumber() 111 && Objects.equals(((PhoneNumber) obj).mLabel, mLabel) in equals() 117 return Objects.hash(mI18nPhoneNumber, mType, mLabel); in hashCode() 132 return Phone.getTypeLabel(res, mType, mLabel); in getReadableLabel() 203 return mLabel; in getLabel() 208 return getNumber() + " " + String.valueOf(mLabel); in toString() 219 dest.writeString(mLabel); in writeToParcel()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/ |
D | RunningState.java | 157 if (lhs.mLabel == rhs.mLabel) { 160 return lhs.mLabel != null ? lhs.mLabel.compareTo(rhs.mLabel) : -1; 164 if (DEBUG_COMPARE) Log.i(TAG, " Label " + lhs.mProcess.mLabel 165 + " with " + rhs.mProcess.mLabel); 190 if (lhs.mProcess.mLabel == rhs.mProcess.mLabel) { 193 if (lhs.mProcess.mLabel == null) return 1; 194 if (rhs.mProcess.mLabel == null) return -1; 195 return lhs.mProcess.mLabel.compareTo(rhs.mProcess.mLabel); 334 String mLabel; field in RunningState.UserState 344 String mLabel; field in RunningState.BaseItem [all …]
|
/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; 164 if (DEBUG_COMPARE) Log.i(TAG, " Label " + lhs.mProcess.mLabel 165 + " with " + rhs.mProcess.mLabel); 190 if (lhs.mProcess.mLabel == rhs.mProcess.mLabel) { 193 if (lhs.mProcess.mLabel == null) return 1; 194 if (rhs.mProcess.mLabel == null) return -1; 195 return lhs.mProcess.mLabel.compareTo(rhs.mProcess.mLabel); 334 String mLabel; field in RunningState.UserState 344 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/apps/TV/src/com/android/tv/menu/ |
D | PlayControlsButton.java | 36 private final TextView mLabel; field in PlayControlsButton 62 mLabel = (TextView) findViewById(R.id.label); in PlayControlsButton() 126 mLabel.setVisibility(View.GONE); in setLabel() 129 mLabel.setVisibility(View.VISIBLE); in setLabel() 130 if (!TextUtils.equals(mLabel.getText(), label)) { in setLabel() 131 mLabel.setText(label); in setLabel() 147 mLabel.setEnabled(enabled); in setEnabled()
|
/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/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/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/DeskClock/src/com/android/deskclock/ |
D | CircleButtonsLayout.java | 22 private TextView mLabel; field in CircleButtonsLayout 50 if (mLabel == null) { in remeasureViews() 52 mLabel = (TextView) findViewById(R.id.timer_label); in remeasureViews() 70 if (mLabel != null) { in remeasureViews() 71 MarginLayoutParams labelParams = (MarginLayoutParams) mLabel.getLayoutParams(); in remeasureViews() 134 mLabel.setMaxWidth((int) w); in remeasureViews()
|
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
D | AlarmInstance.java | 101 values.put(LABEL, instance.mLabel); in createContentValues() 293 public String mLabel; field in AlarmInstance 307 mLabel = ""; in AlarmInstance() 320 this.mLabel = instance.mLabel; in AlarmInstance() 335 mLabel = c.getString(Alarm.INSTANCE_LABEL_INDEX); in AlarmInstance() 344 mLabel = c.getString(LABEL_INDEX); in AlarmInstance() 369 return mLabel.isEmpty() ? context.getString(R.string.default_label) : mLabel; in getLabelOrDefault() 469 ", mLabel=" + mLabel + in toString()
|
/packages/apps/ThemePicker/src/com/android/customization/model/theme/custom/ |
D | ThemeComponentOption.java | 101 private final String mLabel; field in ThemeComponentOption.FontOption 108 mLabel = label; in FontOption() 122 view.setContentDescription(mLabel); in bindThumbnailTile() 180 private String mLabel; field in ThemeComponentOption.IconOption 190 view.setContentDescription(mLabel); in bindThumbnailTile() 246 mLabel = label; in setLabel() 298 private String mLabel; field in ThemeComponentOption.ColorOption 303 mLabel = label; in ColorOption() 313 view.setContentDescription(mLabel); in bindThumbnailTile() 411 private final String mLabel; field in ThemeComponentOption.ShapeOption [all …]
|
/packages/apps/PermissionController/src/com/android/packageinstaller/permission/model/ |
D | PermissionGroup.java | 31 private final CharSequence mLabel; field in PermissionGroup 41 mLabel = label; in PermissionGroup() 57 return mLabel; in getLabel() 87 return mLabel.toString().compareTo(another.mLabel.toString()); in compareTo()
|
D | PermissionApps.java | 58 private CharSequence mLabel; field in PermissionApps 161 return mLabel; in getLabel() 334 mLabel = info.loadLabel(mPm); in loadGroupInfo() 353 private String mLabel; field in PermissionApps.PermissionApp 361 mLabel = label; in PermissionApp() 375 return mLabel; in getLabel() 428 if (mInfo.packageName.equals(mLabel) || mIcon == null) { in loadLabelAndIcon() 430 mLabel = appData.first; in loadLabelAndIcon() 437 final int result = mLabel.compareTo(another.mLabel); in compareTo()
|
/packages/apps/Launcher3/src/com/android/launcher3/popup/ |
D | SystemShortcut.java | 43 private final CharSequence mLabel; field in SystemShortcut 52 mLabel = null; in SystemShortcut() 59 mLabel = label; in SystemShortcut() 70 mLabel = other.mLabel; in SystemShortcut() 91 if (mLabel != null) { in setIconAndLabelFor() 92 labelView.setText(mLabel); in setIconAndLabelFor()
|
/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/Launcher3/SecondaryDisplayLauncher/src/com/android/launcher3/ |
D | AppEntry.java | 28 private String mLabel; field in AppEntry 33 mLabel = info.loadLabel(packageManager).toString(); in AppEntry() 41 return mLabel; in getLabel() 56 return mLabel; in toString()
|
/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/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/PermissionController/src/com/android/packageinstaller/auto/ |
D | AutoSettingsFrameFragment.java | 41 private CharSequence mLabel; field in AutoSettingsFrameFragment 68 mLabel = label; in setHeaderLabel() 74 return mLabel; in getHeaderLabel() 79 mLabelView.setText(mLabel); in updateHeaderLabel()
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/selector/ |
D | AlarmSelection.java | 21 private final String mLabel; field in AlarmSelection 29 mLabel = label; in AlarmSelection() 34 return mLabel; in getLabel()
|
/packages/apps/PermissionController/src/com/android/packageinstaller/permission/ui/handheld/ |
D | SettingsWithLargeHeader.java | 44 protected CharSequence mLabel; field in SettingsWithLargeHeader 78 mLabel = label; in setHeader() 105 appIcon.setContentDescription(mLabel); in updateHeader() 109 appName.setText(mLabel); in updateHeader()
|
/packages/apps/Car/LensPicker/src/com/android/support/car/lenspicker/ |
D | LensPickerItem.java | 27 private final String mLabel; field in LensPickerItem 33 mLabel = label; in LensPickerItem() 49 return mLabel; in getLabel()
|
/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()
|