/packages/apps/Settings/src/com/android/settings/applications/ |
D | RunningState.java | 160 if (lhs.mLabel == rhs.mLabel) { 163 return lhs.mLabel != null ? lhs.mLabel.compareTo(rhs.mLabel) : -1; 167 if (DEBUG_COMPARE) Log.i(TAG, " Label " + lhs.mProcess.mLabel 168 + " with " + rhs.mProcess.mLabel); 193 if (lhs.mProcess.mLabel == rhs.mProcess.mLabel) { 196 if (lhs.mProcess.mLabel == null) return 1; 197 if (rhs.mProcess.mLabel == null) return -1; 198 return lhs.mProcess.mLabel.compareTo(rhs.mProcess.mLabel); 301 String mLabel; field in RunningState.UserState 311 String mLabel; field in RunningState.BaseItem [all …]
|
D | AppOpsState.java | 221 private String mLabel; field in AppOpsState.AppEntry 249 return mLabel; in getLabel() 277 return mLabel; in toString() 281 if (mLabel == null || !mMounted) { in loadLabel() 284 mLabel = mInfo.packageName; in loadLabel() 288 mLabel = label != null ? label.toString() : mInfo.packageName; in loadLabel()
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
D | ExpectedKeyVisual.java | 103 private final String mLabel; field in ExpectedKeyVisual.Label 105 Label(final String label) { mLabel = label; } in Label() 110 mLabel, true /* needsToUpperCase */, locale)); in toUpperCase() 115 return new CasePreservedLabel(mLabel); in preserveCase() 120 return mLabel.equals(text); in equalsTo() 125 return mLabel.equals(key.getLabel()); in equalsTo() 130 return mLabel.equals(moreKeySpec.mLabel); in equalsTo() 135 return output.equalsTo(mLabel); in equalsTo() 140 return (visual instanceof Label) && mLabel.equals(((Label)visual).mLabel); in equalsTo() 145 return mLabel; in toString()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | LabeledEditorView.java | 70 private Spinner mLabel; field in LabeledEditorView 132 mLabel = (Spinner) findViewById(R.id.spinner); in onFinishInflate() 134 mLabel.setId(View.NO_ID); in onFinishInflate() 135 mLabel.setOnItemSelectedListener(mSpinnerListener); in onFinishInflate() 195 if (row == 0 && mLabel != null) { in getBaseline() 196 return mLabel.getBaseline(); in getBaseline() 206 mLabel.setEnabled(!mReadOnly && isEnabled()); in setupLabelButton() 207 mLabel.setVisibility(View.VISIBLE); in setupLabelButton() 209 mLabel.setVisibility(View.GONE); in setupLabelButton() 255 mLabel.setEnabled(!mReadOnly && enabled); in setEnabled() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | Key.java | 56 private final String mLabel; field in Key 210 mLabel = label; in Key() 322 mLabel = params.mId.mCustomActionLabel; in Key() 327 mLabel = new StringBuilder().appendCodePoint(code).toString(); in Key() 329 mLabel = StringUtils.toUpperCaseOfStringForLocale( in Key() 342 && !TextUtils.isEmpty(mLabel)) { in Key() 343 if (StringUtils.codePointCount(mLabel) == 1) { in Key() 349 mCode = mLabel.codePointAt(0); in Key() 354 outputText = mLabel; in Key() 385 mLabel = key.mLabel; in Key() [all …]
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerObj.java | 52 public String mLabel; field in TimerObj 97 editor.putString(PREF_LABEL + id, mLabel); in writeToSharedPref() 115 mLabel = prefs.getString(key, ""); in readFromSharedPref() 162 dest.writeString(mLabel); in writeToParcel() 172 mLabel = p.readString(); in TimerObj() 189 mLabel = label != null ? label : ""; in TimerObj() 199 mLabel = ""; in init() 221 return (mLabel == null || mLabel.length() == 0) ? context.getString( in getLabelOrDefault() 223 : mLabel; in getLabelOrDefault()
|
D | TimerItemFragment.java | 114 if (TextUtils.isEmpty(mTimerObj.mLabel)) { in onActivityCreated() 118 labelText.setText(mTimerObj.mLabel); in onActivityCreated() 144 LabelDialogFragment.newInstance(t, t.mLabel, getParentFragment().getTag()); in onLabelPressed()
|
D | TimerFullScreenFragment.java | 255 if (o.mLabel.equals("")) { in getView() 259 labelText.setText(o.mLabel); in getView() 873 LabelDialogFragment.newInstance(t, t.mLabel, getTag()); in onLabelPressed()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | MoreKeySpec.java | 45 public final String mLabel; field in MoreKeySpec 53 mLabel = StringUtils.toUpperCaseOfStringForLocale( in MoreKeySpec() 61 mOutputText = mLabel; in MoreKeySpec() 72 return new Key(mLabel, mIconId, mCode, mOutputText, null /* hintLabel */, labelFlags, in buildKey() 82 hashCode = hashCode * 31 + (mLabel == null ? 0 : mLabel.hashCode()); in hashCode() 94 && TextUtils.equals(mLabel, other.mLabel) in equals() 102 final String label = (mIconId == KeyboardIconsSet.ICON_UNDEFINED ? mLabel in toString()
|
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
D | AlarmInstance.java | 107 values.put(LABEL, instance.mLabel); in createContentValues() 251 public String mLabel; field in AlarmInstance 265 mLabel = ""; in AlarmInstance() 278 mLabel = c.getString(LABEL_INDEX); in AlarmInstance() 295 return mLabel.isEmpty() ? context.getString(R.string.default_label) : mLabel; in getLabelOrDefault() 398 ", mLabel=" + mLabel + in toString()
|
/packages/apps/Mms/src/com/android/mms/data/ |
D | Contact.java | 85 private String mLabel; field in Contact 121 mLabel = ""; in init() 133 (mLabel != null ? mLabel : "null"), in toString() 284 return mLabel; in getLabel() 710 String oldLabel = emptyIfNull(orig.mLabel); in contactChanged() 711 String newLabel = emptyIfNull(newContactData.mLabel); in contactChanged() 742 c.mLabel = entry.mLabel; in updateContact() 925 contact.mLabel = cursor.getString(PHONE_LABEL_COLUMN); in fillPhoneTypeContact()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/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/DeskClock/src/com/android/deskclock/ |
D | CircleButtonsLayout.java | 26 private FrameLayout mLabel; field in CircleButtonsLayout 70 mLabel = (FrameLayout) findViewById(mLabelId); in remeasureViews() 88 if (mLabel != null) { in remeasureViews() 90 MarginLayoutParams labelParams = (MarginLayoutParams) mLabel.getLayoutParams(); in remeasureViews()
|
D | AlarmUtils.java | 47 return !instance.mLabel.isEmpty() ? alarmTimeStr + " - " + instance.mLabel in getAlarmText()
|
/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/ContactsCommon/src/com/android/contacts/common/util/ |
D | StopWatch.java | 30 private final String mLabel; field in StopWatch 36 mLabel = label; in StopWatch() 69 sb.append(mLabel); in stopAndLog()
|
/packages/apps/Mms/src/com/android/mms/ui/ |
D | EditSlideDurationActivity.java | 44 private TextView mLabel; field in EditSlideDurationActivity 80 mLabel = (TextView) findViewById(R.id.label); in onCreate() 81 …mLabel.setText(getString(R.string.duration_selector_title) + " " + (mCurSlide + 1) + "/" + mTotal); in onCreate()
|
/packages/apps/Browser/src/com/android/browser/search/ |
D | DefaultSearchEngine.java | 39 private final CharSequence mLabel; field in DefaultSearchEngine 43 mLabel = loadLabel(context, mSearchable.getSearchActivity()); in DefaultSearchEngine() 80 return mLabel; in getLabel()
|
/packages/services/Telephony/tests/src/com/android/phone/tests/ |
D | OtaspTestActivity.java | 45 private TextView mLabel; field in OtaspTestActivity 64 mLabel = (TextView) findViewById(R.id.label1); in onCreate() 65 mLabel.setText("OTA Test Activity"); in onCreate()
|
D | CallDialTest.java | 46 private TextView mLabel; field in CallDialTest 58 mLabel = (TextView) findViewById(R.id.label1); in onCreate()
|
/packages/apps/Browser/src/com/android/browser/ |
D | AddBookmarkPage.java | 1029 private String mLabel; field in AddBookmarkPage.BookmarkAccount 1040 mLabel = accountName; in BookmarkAccount() 1041 if (TextUtils.isEmpty(mLabel)) { in BookmarkAccount() 1042 mLabel = context.getString(R.string.local_bookmarks); in BookmarkAccount() 1048 return mLabel; in toString()
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
D | InstallAppProgress.java | 74 private CharSequence mLabel; field in InstallAppProgress 189 String dlgText = getString(R.string.out_of_space_dlg_text, mLabel); in onCreateDialog() 250 mLabel = as.label;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/interactions/ |
D | ImportExportDialogFragment.java | 110 result.setText(getItem(position).mLabel); in onCreateDialog() 296 public final CharSequence mLabel; field in ImportExportDialogFragment.AdapterEntry 301 mLabel = label; in AdapterEntry()
|
/packages/apps/Settings/src/com/android/settings/voice/ |
D | VoiceInputPreference.java | 40 private final CharSequence mLabel; field in VoiceInputPreference 76 mLabel = info.label; in VoiceInputPreference()
|
/packages/apps/Settings/src/com/android/settings/ |
D | TrustedCredentialsSettings.java | 89 private final int mLabel; field in TrustedCredentialsSettings.Tab 99 mLabel = label; in Tab() 215 .setIndicator(getActivity().getString(tab.mLabel)) in addTab()
|