/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/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 …]
|
D | AppOpsState.java | 232 private String mLabel; field in AppOpsState.AppEntry 260 return mLabel; in getLabel() 288 return mLabel; in toString() 292 if (mLabel == null || !mMounted) { in loadLabel() 295 mLabel = mInfo.packageName; in loadLabel() 299 mLabel = label != null ? label.toString() : mInfo.packageName; in loadLabel()
|
/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/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/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/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/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/PackageInstaller/src/com/android/packageinstaller/permission/model/ |
D | PermissionApps.java | 51 private CharSequence mLabel; field in PermissionApps 149 return mLabel; in getLabel() 300 mLabel = info.loadLabel(mPm); in loadGroupInfo() 312 private final String mLabel; field in PermissionApps.PermissionApp 320 mLabel = label; in PermissionApp() 334 return mLabel; in getLabel() 387 final int result = mLabel.compareTo(another.mLabel); in compareTo()
|
D | PermissionGroup.java | 24 private final CharSequence mLabel; field in PermissionGroup 33 mLabel = label; in PermissionGroup() 48 return mLabel; in getLabel() 71 return mLabel.toString().compareTo(another.mLabel.toString()); in compareTo()
|
/packages/apps/TV/src/com/android/tv/menu/ |
D | PlayControlsButton.java | 37 private final TextView mLabel; field in PlayControlsButton 60 mLabel = (TextView) findViewById(R.id.label); in PlayControlsButton() 116 mLabel.setVisibility(View.GONE); in setLabel() 119 mLabel.setVisibility(View.VISIBLE); in setLabel() 120 mLabel.setText(label); in setLabel() 135 mLabel.setEnabled(enabled); in setEnabled()
|
/packages/apps/Settings/src/com/android/settings/datausage/ |
D | AppDataUsage.java | 86 private CharSequence mLabel; field in AppDataUsage 152 mLabel = info.loadLabel(pm); in onCreate() 194 mLabel = getContext().getString(R.string.data_usage_uninstalled_apps_users); in onCreate() 196 mLabel = getContext().getString(R.string.tether_settings_title_all); in onCreate() 203 mLabel = Utils.getUserLabel(getActivity(), info); in onCreate() 205 mLabel = getContext().getString(R.string.data_usage_uninstalled_apps_users); in onCreate() 343 .setLabel(mLabel) in onViewCreated()
|
/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/Dialer/java/com/android/contacts/common/list/ |
D | DirectoryPartition.java | 40 private String mLabel; field in DirectoryPartition 133 return mLabel; in getLabel() 137 mLabel = label; in setLabel() 163 + mLabel in toString()
|
/packages/apps/Settings/src/com/android/settings/widget/ |
D | SwitchBar.java | 65 private String mLabel; field in SwitchBar 106 mLabel = getResources().getString(R.string.switch_off_text); in SwitchBar() 143 mLabel = getResources() in setTextViewLabel() 155 mTextView.setText(mLabel); in updateText() 158 final SpannableStringBuilder ssb = new SpannableStringBuilder(mLabel).append('\n'); in updateText()
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
D | UninstallUninstalling.java | 55 private String mLabel; field in UninstallUninstalling 66 mLabel = getIntent().getStringExtra(EXTRA_APP_LABEL); in onCreate() 147 Toast.makeText(this, getString(R.string.uninstall_failed_app, mLabel), in onResult() 171 ((UninstallUninstalling) getActivity()).mLabel)); in onCreateDialog()
|
/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/Settings/src/com/android/settings/fuelgauge/ |
D | HighPowerDetail.java | 49 private CharSequence mLabel; field in HighPowerDetail 67 mLabel = pm.getApplicationInfo(mPackageName, 0).loadLabel(pm); in onCreate() 69 mLabel = mPackageName; in onCreate() 91 .setTitle(mLabel) in onCreateDialog()
|
/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/vpn2/ |
D | AppDialog.java | 41 private final String mLabel; field in AppDialog 48 mLabel = label; in AppDialog() 57 setTitle(mLabel); in onCreate()
|
/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/Dialer/java/com/android/contacts/common/util/ |
D | StopWatch.java | 25 private final String mLabel; field in StopWatch 31 mLabel = label; in StopWatch() 65 sb.append(mLabel); in stopAndLog()
|
/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()
|