HomeSort by relevance Sort by last modified time
    Searched defs:label (Results 176 - 200 of 1990) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerItem.java 55 /** Displays the label associated with the timer. Tapping it presents an edit dialog. */
93 // Update the label if it changed.
94 final String label = timer.getLabel(); local
95 if (!TextUtils.equals(label, mLabelView.getText())) {
96 mLabelView.setText(label);
  /packages/apps/Dialer/java/com/android/dialer/speeddial/
SuggestionViewHolder.java 62 String label = getLabel(context.getResources(), cursor); local
64 TextUtils.isEmpty(label)
67 com.android.contacts.common.R.string.call_subject_type_and_number, label, number);
93 // Returns empty label instead of "custom" if the custom label is empty.
  /packages/apps/Dialer/java/com/android/incallui/contactgrid/
TopRow.java 50 @Nullable public final CharSequence label; field in class:TopRow.Info
54 public Info(@Nullable CharSequence label, @Nullable Drawable icon, boolean labelIsSingleLine) {
55 this.label = label;
64 CharSequence label = null; local
77 label = state.callSubject();
80 label = getLabelForIncoming(context, state);
84 label = TextUtils.concat(label, " ", spanDisplayNumber(primaryInfo.number()));
89 label = getLabelForVideoRequest(context, state)
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
HeaderCell.java 65 TextView label = (TextView) findViewById(R.id.label); local
66 label.setText(dimension.getLabelId());
69 setDataTypeNumber(label);
72 setDataTypeString(label);
116 private void setDataTypeNumber(View label) {
117 label.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_END);
121 private void setDataTypeString(View label) {
122 label.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_START);
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
SortHeaderBot.java 68 final String label = mContext.getString(labelId); local
71 result = mDropBot.sortBy(label, direction);
73 result = mColumnBot.sortBy(label, direction);
105 private boolean sortBy(String label, @SortDirection int direction) {
107 onView(withText(label)).perform(click());
115 withText(label)))
144 private boolean sortBy(String label, @SortDirection int direction) {
146 withChild(withText(label)),
  /packages/apps/Launcher3/src/com/android/launcher3/model/
WidgetItem.java 29 public final String label; field in class:WidgetItem
36 label = Utilities.trim(info.getLabel(pm));
46 label = Utilities.trim(info.getLabel());
68 int labelCompare = sCollator.compare(label, another.label);
73 // If the label is same, put the smaller widget before the larger widget. If the area is
  /packages/apps/Settings/src/com/android/settings/applications/
AppPermissionsPreferenceController.java 100 final String label = getPermissionGroupLabel(permission).toString().toLowerCase(); local
102 return label;
104 return mContext.getString(R.string.join_many_items_middle, currentSummary, label);
112 Log.e(TAG, "Error getting permissions label.", e);
  /packages/apps/Settings/src/com/android/settings/display/
VrDisplayPreferencePicker.java 81 public final String label; field in class:VrDisplayPreferencePicker.VrCandidateInfo
87 label = context.getString(resId);
92 return label;
  /packages/apps/Settings/src/com/android/settings/vpn2/
AppPreference.java 46 // Fetch icon and VPN label
47 String label = packageName; local
59 label = VpnConfig.getVpnLabel(userContext, mPackageName).toString();
62 // Use default app label and icon as fallback
70 mName = label;
  /packages/apps/Settings/src/com/android/settings/wallpaper/
WallpaperTypeSettings.java 74 CharSequence label = info.loadLabel(pm); local
75 if (label == null) label = info.activityInfo.packageName;
76 pref.setTitle(label);
110 CharSequence label = info.loadLabel(pm);
111 if (label == null) label = info.activityInfo.packageName;
114 data.title = label.toString();
  /packages/apps/Settings/tests/robotests/src/com/android/settings/accounts/
AccountHeaderPreferenceControllerTest.java 104 final CharSequence label = local
107 assertThat(label).isEqualTo(account.name);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
MasterCheckBoxPreferenceTest.java 182 final String label = "TestButton"; local
183 mPreference.setTitle(label);
187 assertThat(checkBox.getContentDescription()).isEqualTo(label);
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/query/
InstalledAppResultTask.java 76 final CharSequence label = info.loadLabel(mPackageManager); local
77 final int wordDiff = SearchQueryUtils.getWordDifference(label.toString(), mQuery);
  /packages/apps/TV/src/com/android/tv/ui/
InputBannerView.java 81 CharSequence label = input.loadLabel(getContext()); local
82 if (TextUtils.isEmpty(customLabel) || customLabel.equals(label)) {
83 mInputLabelTextView.setText(label);
87 mSecondaryInputLabelTextView.setText(label);
  /packages/services/Telephony/src/com/android/phone/settings/
AccountSelectionPreference.java 88 CharSequence label = account.getLabel(); local
89 if (label != null) {
90 label = pm.getUserBadgedLabel(label, mAccounts[i].getUserHandle());
94 mEntries[i] = (TextUtils.isEmpty(label) && isSimAccount)
96 : String.valueOf(label);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
EditTextRule.java 68 final String label = hasFocus ? "Clear Focus" : "Request Focus"; local
77 selectedNode.editXml(label, new INodeHandler() {
92 actions.add(RuleAction.createAction("_setfocus", label, onChange, //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
UpdateToolsPage.java 26 import org.eclipse.swt.widgets.Label;
42 Label label = new Label(container, SWT.WRAP); local
45 label.setLayoutData(layoutData);
46 label.setText(
  /system/core/fs_mgr/include_fstab/fstab/
fstab.h 50 char* label; member in struct:fstab_rec
  /test/vti/dashboard/src/main/java/com/android/vts/util/
PerformanceSummary.java 32 public final String label; field in class:PerformanceSummary
35 public PerformanceSummary(long startTime, long endTime, String label) {
39 this.label = label;
47 "<span class='date-label'>"
StatSummary.java 23 private String label; field in class:StatSummary
34 * <p>Sets the label, min, max, mean, sum of squared error, n, and mode as provided.
36 * @param label The (String) label to assign to the summary.
45 String label,
52 this.label = label;
64 * <p>Sets the label as provided. Initializes the mean, variance, and n (number of values seen)
67 * @param label The (String) label to assign to the summary
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
obj-evax.h 49 /* Label that designates this entry.
50 Note that a linkage entry can only be designated by one label.
51 Also, s_alpha_linkage force the creation of a label. */
52 symbolS *label; member in struct:alpha_linkage_fixups
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
EditorInfoTest.java 56 info.label = "label";
86 assertEquals(info.label.toString(), targetInfo.label.toString());
  /external/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapAttribute.java 42 import org.objectweb.asm.Label;
165 public StackMapFrame getFrame(Label label) {
168 if (frame.label == label) {
189 Label[] labels)
215 Label label = getLabel(offset, labels); local
234 attr.frames.add(new StackMapFrame(label, locals, stack));
243 Label[] labels
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
RunnerController.java 206 JLabel label = new JLabel(); local
210 label.setText(value.toString());
211 label.setIcon(ImageFactory.getSingleton().TESTSUITE);
216 label.setText(value.toString());
217 label.setIcon( node.hasFail ?
224 label.setIcon( (node.data.isPass())?
227 label.setText(value.toString());
234 return label;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 32 import org.eclipse.swt.widgets.Label;
59 * methods for creating typically UI (label and text, form text.)
111 * Creates a label widget.
116 * @param label The string for the label.
117 * @param tooltip An optional tooltip for the label and text. Can be null.
118 * @return The new created label
120 public Label createLabel(Composite parent, FormToolkit toolkit, String label,
122 return SectionHelper.createLabel(parent, toolkit, label, tooltip)
245 Label label = toolkit.createLabel(parent, label_text); local
266 Label label = toolkit.createLabel(parent, label_text); local
    [all...]

Completed in 1275 milliseconds

1 2 3 4 5 6 78 91011>>