HomeSort by relevance Sort by last modified time
    Searched defs:label (Results 151 - 175 of 1399) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupDeletionDialogFragment.java 34 private static final String ARG_LABEL = "label";
37 public static void show(FragmentManager fragmentManager, long groupId, String label,
42 args.putString(ARG_LABEL, label);
50 String label = getArguments().getString(ARG_LABEL); local
51 String message = getActivity().getString(R.string.delete_group_dialog_message, label);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerItem.java 45 /** Displays the label associated with the timer. Tapping it presents an edit dialog. */
67 // This layout positions dynamically positions the label and reset buttons.
82 // Update the label if it changed.
83 final String label = timer.getLabel(); local
84 if (!TextUtils.equals(label, mLabelView.getText())) {
85 mLabelView.setText(label);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ContactInfo.java 40 public String label; field in class:ContactInfo
87 if (!TextUtils.equals(label, other.label)) return false;
102 .add("type", type).add("label", 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/TV/src/com/android/tv/ui/
InputBannerView.java 79 CharSequence label = input.loadLabel(getContext()); local
80 if (TextUtils.isEmpty(customLabel) || customLabel.equals(label)) {
81 mInputLabelTextView.setText(label);
85 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(
TemplateTestPage.java 30 import org.eclipse.swt.widgets.Label;
57 Label label = new Label(container, SWT.NONE); local
58 label.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
59 label.setText("Template Location:");
77 new Label(container, SWT.NONE);
  /system/connectivity/shill/
pending_activation_store.cc 65 string label; local
68 label = "ICCID";
71 label = "MEID";
76 return "[" + label + "=" + identifier + "]";
  /toolchain/binutils/binutils-2.25/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/tests/view/src/android/view/inputmethod/cts/
EditorInfoTest.java 44 info.label = "label";
73 assertEquals(info.label.toString(), targetInfo.label.toString());
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 41 import org.eclipse.swt.widgets.Label;
76 * Creates a label widget and an associated text field.
87 Label label = toolkit.createLabel(parent, desc.getUiName()); local
88 label.setLayoutData(new TableWrapData(TableWrapData.LEFT, TableWrapData.MIDDLE));
89 SectionHelper.addControlTooltip(label, DescriptorsUtils.formatTooltip(desc.getTooltip()));
227 Label label = new Label(composite, SWT.NONE); local
228 label.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false))
    [all...]
UiListAttributeNode.java 39 import org.eclipse.swt.widgets.Label;
60 * Creates a label widget and an associated text field.
70 Label label = toolkit.createLabel(parent, desc.getUiName()); local
71 label.setLayoutData(new TableWrapData(TableWrapData.LEFT, TableWrapData.MIDDLE));
72 SectionHelper.addControlTooltip(label, DescriptorsUtils.formatTooltip(desc.getTooltip()));
UiResourceAttributeNode.java 56 import org.eclipse.swt.widgets.Label;
102 * Creates a label widget and an associated text field.
113 Label label = toolkit.createLabel(parent, desc.getUiName()); local
114 label.setLayoutData(new TableWrapData(TableWrapData.LEFT, TableWrapData.MIDDLE));
115 SectionHelper.addControlTooltip(label, DescriptorsUtils.formatTooltip(desc.getTooltip()));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ProjectCheckPage.java 43 import org.eclipse.swt.widgets.Label;
89 Label label = new Label(projectComposite, SWT.NONE); local
90 label.setLayoutData(gd = new GridData(GridData.FILL_HORIZONTAL));
92 label.setText("Select the project to export:");
94 new Label(projectComposite, SWT.NONE).setText("Project:");
198 Label label = new Label(mErrorComposite, SWT.NONE) local
219 Label label = new Label(parent, SWT.NONE); local
239 Label label = new Label(parent, SWT.NONE); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 37 import org.eclipse.swt.widgets.Label;
87 // label before configuration selector
88 Label label = new Label(composite, SWT.NONE); local
89 label.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 2, 1));
90 label.setText("Optional: Choose a specific configuration to limit the XML to:");
105 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL);
109 Label folderLabel = new Label(composite, SWT.NONE)
    [all...]
  /art/compiler/utils/
assembler_thumb_test.cc 700 Label l1;
705 Label l2;
711 Label l3;
717 Label l4;
724 Label l5;
738 Label l1;
744 Label l2;
750 Label l3;
756 Label l4;
763 Label l5
1289 Label label; local
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64_test.cc 216 mips64::Mips64Label label; local
217 (Base::GetAssembler()->*f)(mips64::A0, &label);
222 __ Bind(&label);
227 (Base::GetAssembler()->*f)(mips64::A1, &label);
245 mips64::Mips64Label label; local
246 (Base::GetAssembler()->*f)(mips64::A0, mips64::A1, &label);
251 __ Bind(&label);
256 (Base::GetAssembler()->*f)(mips64::A2, mips64::A3, &label);
735 mips64::Mips64Label label; local
736 __ Bc1eqz(mips64::F0, &label);
761 mips64::Mips64Label label; local
787 mips64::Mips64Label label; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
UserRestrictions.java 142 return context.getString(item.label);
172 .putExtra(PolicyTransparencyTestActivity.EXTRA_TITLE, context.getString(item.label))
178 final int label; field in class:UserRestrictions.UserRestrictionItem
181 public UserRestrictionItem(int label, int userAction, String intentAction) {
182 this.label = label;
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlock.java 28 /** {@code >= 0;} target label for this block */
29 private final int label; field in class:BasicBlock
50 * @param label {@code >= 0;} target label for this block
59 public BasicBlock(int label, InsnList insns, IntList successors,
61 if (label < 0) {
62 throw new IllegalArgumentException("label < 0");
109 this.label = label;
138 * Gets the target label of this block
    [all...]
RopMethod.java 30 /** {@code >= 0;} label for the block which starts the method */
35 * label
49 * @param firstLabel {@code >= 0;} the label of the first block to execute
77 * Gets the label for the first block in the method that this list
80 * @return {@code >= 0;} the first-block label
88 * an exception if there is no block with the given label.
90 * @param label {@code >= 0;} the label of the block in question
93 public IntList labelToPredecessors(int label) {
98 IntList result = predecessors[label];
163 int label = one.getLabel(); local
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 137 int label = bb.getLabel(); local
141 System.out.println("\tn" + Hex.u2(label) + " -> returns;");
143 System.out.println("\tn" + Hex.u2(label) + " -> n"
146 System.out.print("\tn" + Hex.u2(label) + " -> {");
157 System.out.println("\tn" + Hex.u2(label) + " -> n"
159 + " [label=\"primary\"];");

Completed in 77 milliseconds

1 2 3 4 5 67 8 91011>>