Searched refs:mLabel (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/core/java/android/hardware/input/
H A DKeyboardLayout.java30 private final String mLabel; field in class:KeyboardLayout
46 mLabel = label;
53 mLabel = source.readString();
74 return mLabel;
94 dest.writeString(mLabel);
105 result = mLabel.compareToIgnoreCase(another.mLabel);
116 return mLabel;
118 return mLabel + " - " + mCollection;
/frameworks/base/core/java/android/view/inputmethod/
H A DCompletionInfo.java55 private final CharSequence mLabel; field in class:CompletionInfo
70 mLabel = null;
91 mLabel = label;
98 mLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
131 return mLabel;
137 + "\" id=" + mId + " label=" + mLabel + "}";
150 TextUtils.writeToParcel(mLabel, dest, flags);
/frameworks/base/core/java/android/util/
H A DTimingLogger.java57 private String mLabel; field in class:TimingLogger
90 mLabel = label;
136 Log.d(mTag, mLabel + ": begin");
144 Log.d(mTag, mLabel + ": " + (now - prev) + " ms, " + splitLabel);
146 Log.d(mTag, mLabel + ": end, " + (now - first) + " ms");
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DControlButtonPresenterSelector.java61 TextView mLabel; field in class:ControlButtonPresenterSelector.ActionViewHolder
67 mLabel = (TextView) view.findViewById(R.id.label);
91 if (vh.mLabel != null) {
93 vh.mLabel.setText(action.getLabel1());
95 vh.mLabel.setText(null);
111 if (vh.mLabel != null) {
112 vh.mLabel.setText(null);
/frameworks/base/core/java/android/content/
H A DClipDescription.java62 final CharSequence mLabel; field in class:ClipDescription
75 mLabel = label;
83 mLabel = o.mLabel;
117 return mLabel;
212 if (mLabel != null) {
218 b.append(mLabel);
231 TextUtils.writeToParcel(mLabel, dest, flags);
236 mLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
H A DUndoManager.java739 private CharSequence mLabel; field in class:UndoManager.UndoState
753 mLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(p);
770 TextUtils.writeToParcel(mLabel, p, 0);
785 mLabel = label;
789 if (mLabel != null) {
790 mLabel = label;
795 return mLabel;
/frameworks/base/telecomm/java/android/telecom/
H A DStatusHints.java39 private final CharSequence mLabel; field in class:StatusHints
46 mLabel = label;
62 return mLabel;
96 out.writeCharSequence(mLabel);
114 mLabel = in.readCharSequence();
150 return Objects.hashCode(mPackageName) + Objects.hashCode(mLabel) + mIconResId +
H A DPhoneAccount.java155 private final CharSequence mLabel; field in class:PhoneAccount
172 private CharSequence mLabel; field in class:PhoneAccount.Builder
181 this.mLabel = label;
200 mLabel = phoneAccount.getLabel();
381 mLabel,
409 mLabel = label;
489 return mLabel;
668 out.writeCharSequence(mLabel);
712 mLabel = in.readCharSequence();
/frameworks/base/core/java/android/app/
H A DRemoteInput.java74 private final CharSequence mLabel; field in class:RemoteInput
82 this.mLabel = label;
100 return mLabel;
132 private CharSequence mLabel; field in class:RemoteInput.Builder
154 mLabel = Notification.safeCharSequence(label);
227 return new RemoteInput(mResultKey, mLabel, mChoices, mFlags, mExtras);
233 mLabel = in.readCharSequence();
294 out.writeCharSequence(mLabel);
H A DActivityManager.java529 private String mLabel; field in class:ActivityManager.TaskDescription
546 mLabel = label;
587 mLabel = td.mLabel;
602 mLabel = label;
639 return mLabel;
683 if (mLabel != null) {
684 out.attribute(null, ATTR_TASKDESCRIPTIONLABEL, mLabel);
712 if (mLabel == null) {
716 dest.writeString(mLabel);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DTaskDescription.java35 private CharSequence mLabel; // application package label field in class:TaskDescription
76 return mLabel;
80 mLabel = label;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileView.java61 private TextView mLabel; field in class:QSTileView
115 FontSizeUtils.updateFontSize(mLabel, R.dimen.qs_tile_text_size);
125 if (mLabel != null) {
126 labelText = mLabel.getText();
127 removeView(mLabel);
128 mLabel = null;
132 labelDescription = mLabel.getContentDescription();
158 mLabel = new TextView(mContext);
159 mLabel.setId(android.R.id.title);
160 mLabel
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DRemoteInput.java38 private final CharSequence mLabel; field in class:RemoteInput
46 this.mLabel = label;
64 return mLabel;
96 private CharSequence mLabel; field in class:RemoteInput.Builder
118 mLabel = label;
176 return new RemoteInput(mResultKey, mLabel, mChoices, mAllowFreeFormInput, mExtras);
/frameworks/base/core/java/android/print/
H A DPrintJobInfo.java129 private String mLabel; field in class:PrintJobInfo
178 mLabel = other.mLabel;
196 mLabel = parcel.readString();
244 return mLabel;
255 mLabel = label;
599 parcel.writeString(mLabel);
619 builder.append("label: ").append(mLabel);
H A DPrintAttributes.java714 public final String mLabel; field in class:PrintAttributes.MediaSize
761 mLabel = null;
796 mLabel = label;
811 mLabel = label;
847 return mLabel;
890 return new MediaSize(mId, mLabel, mPackageName,
907 return new MediaSize(mId, mLabel, mPackageName,
915 parcel.writeString(mLabel);
967 builder.append(", label: ").append(mLabel);
998 private final String mLabel; field in class:PrintAttributes.Resolution
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerInfo.java47 private final int mLabel; field in class:SpellCheckerInfo
131 mLabel = label;
140 mLabel = source.readInt();
178 dest.writeInt(mLabel);
208 if (mLabel == 0 || pm == null) return "";
209 return pm.getText(getPackageName(), mLabel, mService.serviceInfo.applicationInfo);
/frameworks/base/core/tests/coretests/src/android/util/
H A DInternalSelectionView.java63 private String mLabel = null; field in class:InternalSelectionView
68 mLabel = label;
101 return mLabel;
276 if (mLabel != null) {
277 return mLabel;
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DToggleSlider.java45 private TextView mLabel; field in class:ToggleSlider
73 mLabel = (TextView) findViewById(R.id.label);
74 mLabel.setText(a.getString(R.styleable.ToggleSlider_text));
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java147 private EntryLabel mLabel; field in class:VCardEntryTests.MockEntryElementIterator
159 assertNull(mLabel);
167 assertNull(mLabel);
177 assertNull(mLabel);
178 mLabel = label;
185 assertNotNull(mLabel);
186 mLabel = null;
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DAutomaticActivity.java123 mLabel = label;
134 final String mLabel; field in class:AutomaticActivity.TestResult
190 return lhs.mLabel.compareTo(rhs.mLabel);
200 Log.d(LOG_TAG, String.format("%2.4f : %s", t.getAverage(), t.mLabel));
/frameworks/base/core/java/android/widget/
H A DAppSecurityPermissions.java84 CharSequence mLabel; field in class:AppSecurityPermissions.MyPermissionGroupInfo
116 CharSequence mLabel; field in class:AppSecurityPermissions.MyPermissionInfo
167 CharSequence label = perm.mLabel;
196 builder.setTitle(mGroup.mLabel);
592 return sCollator.compare(a.mLabel, b.mLabel);
601 return sCollator.compare(a.mLabel, b.mLabel);
607 if (pInfo.mLabel == null) {
608 pInfo.mLabel
[all...]
H A DTabHost.java595 private final CharSequence mLabel; field in class:TabHost.LabelIndicatorStrategy
598 mLabel = label;
610 tv.setText(mLabel);
627 private final CharSequence mLabel; field in class:TabHost.LabelAndIconIndicatorStrategy
631 mLabel = label;
648 final boolean bindIcon = !exclusive || TextUtils.isEmpty(mLabel);
650 tv.setText(mLabel);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java305 private final String mLabel; field in class:VCardEntry.PhoneData
315 mLabel = label;
329 builder.withValue(Phone.LABEL, mLabel);
354 && TextUtils.equals(mLabel, phoneData.mLabel)
362 hash = hash * 31 + (mLabel != null ? mLabel.hashCode() : 0);
370 mLabel, mIsPrimary);
387 return mLabel;
399 private final String mLabel; field in class:VCardEntry.EmailData
497 private final String mLabel; field in class:VCardEntry.PostalData
1350 private final String mLabel; field in class:VCardEntry.SipData
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvInputInfo.java126 private String mLabel; field in class:TvInputInfo
255 input.mLabel = label;
414 if (TextUtils.isEmpty(mLabel)) {
417 return mLabel;
504 dest.writeString(mLabel);
577 mLabel = in.readString();
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java3432 private final CharSequence mLabel; field in class:AccessibilityNodeInfo.AccessibilityAction
3457 mLabel = label;
3476 return mLabel;
3503 return "AccessibilityAction: " + getActionSymbolicName(mActionId) + " - " + mLabel;

Completed in 6429 milliseconds

12