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

/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/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/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.java116 private final CharSequence mLabel; field in class:PhoneAccount
126 private CharSequence mLabel; field in class:PhoneAccount.Builder
132 this.mLabel = label;
147 mLabel = phoneAccount.getLabel();
225 mLabel,
245 mLabel = label;
322 return mLabel;
416 out.writeCharSequence(mLabel);
442 mLabel = in.readCharSequence();
/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/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/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/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/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/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.java522 private String mLabel; field in class:ActivityManager.TaskDescription
539 mLabel = label;
580 mLabel = td.mLabel;
595 mLabel = label;
632 return mLabel;
676 if (mLabel != null) {
677 out.attribute(null, ATTR_TASKDESCRIPTIONLABEL, mLabel);
705 if (mLabel == null) {
709 dest.writeString(mLabel);
[all...]
/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/qs/
H A DQSTileView.java58 private TextView mLabel; field in class:QSTileView
109 FontSizeUtils.updateFontSize(mLabel, R.dimen.qs_tile_text_size);
119 if (mLabel != null) {
120 labelText = mLabel.getText();
121 removeView(mLabel);
122 mLabel = null;
126 labelDescription = mLabel.getContentDescription();
151 mLabel = new TextView(mContext);
152 mLabel.setId(android.R.id.title);
153 mLabel
[all...]
/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/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/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/base/media/java/android/media/tv/
H A DTvInputInfo.java126 private String mLabel; field in class:TvInputInfo
252 input.mLabel = label;
411 if (TextUtils.isEmpty(mLabel)) {
414 return mLabel;
501 dest.writeString(mLabel);
574 mLabel = in.readString();
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java82 private CharSequence mLabel; field in class:Keyboard
/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/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java3306 private final CharSequence mLabel; field in class:AccessibilityNodeInfo.AccessibilityAction
3331 mLabel = label;
3350 return mLabel;
3377 return "AccessibilityAction: " + getActionSymbolicName(mActionId) + " - " + mLabel;

Completed in 784 milliseconds