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

1 2 3 4 5 6 7 891011>>

  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
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);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
UserRestrictions.java 193 return context.getString(item.label);
236 .putExtra(PolicyTransparencyTestActivity.EXTRA_TITLE, context.getString(item.label))
289 final int label; field in class:UserRestrictions.UserRestrictionItem
292 public UserRestrictionItem(int label, int userAction, String intentAction) {
293 this.label = label;
  /cts/tests/autofillservice/src/android/autofillservice/cts/
WebViewActivity.java 157 private UiObject2 getLabel(UiBot uiBot, String label) throws Exception {
158 return uiBot.assertShownByText(label, Timeouts.WEBVIEW_TIMEOUT);
162 // First get the label..
163 final UiObject2 label = getLabel(uiBot, contentDescription); local
166 final UiObject2 parent = label.getParent();
169 if (label.equals(previous)) {
178 uiBot.dumpScreen("getInput() for label " + label + "failed");
179 throw new IllegalStateException("could not find username (label=" + label + ")")
    [all...]
  /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 144 int label = bb.getLabel(); local
148 System.out.println("\tn" + Hex.u2(label) + " -> returns;");
150 System.out.println("\tn" + Hex.u2(label) + " -> n"
153 System.out.print("\tn" + Hex.u2(label) + " -> {");
164 System.out.println("\tn" + Hex.u2(label) + " -> n"
166 + " [label=\"primary\"];");
  /dalvik/dx/src/com/android/dx/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 29 /** {@code >= 0;} label for the block which starts the method */
34 * label
48 * @param firstLabel {@code >= 0;} the label of the first block to execute
76 * Gets the label for the first block in the method that this list
79 * @return {@code >= 0;} the first-block label
87 * an exception if there is no block with the given label.
89 * @param label {@code >= 0;} the label of the block in question
92 public IntList labelToPredecessors(int label) {
97 IntList result = predecessors[label];
162 int label = one.getLabel(); local
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
BackgroundPickers.java 63 TextView label = (TextView) picker.findViewById(R.id.bg_picker_label); local
64 label.setText(String.format(res.getString(R.string.bg_picker_label), i+1));
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
BackgroundPickers.java 63 TextView label = (TextView) picker.findViewById(R.id.bg_picker_label); local
64 label.setText(String.format(res.getString(R.string.bg_picker_label), i+1));
  /development/apps/Development/src/com/android/development/
Details.java 87 TextView label = makeView(cd.key, true, 12); local
90 mLinearLayout.addView(label, lazy());
InstrumentationList.java 99 CharSequence label = info.loadLabel(mPM); local
100 text.setText(label != null ? label : info.name);
ShowActivity.java 59 mLabel = (TextView)findViewById(R.id.label);
84 CharSequence label = mActivityInfo.loadLabel(pm); local
85 mLabel.setText("\"" + (label != null ? label : "") + "\"");
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 84 String label = labelSeq != null local
88 if (prefixWithSlash.length() == 0 || label.startsWith(prefixWithSlash)) {
90 String[] labelPath = label.split("/");
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
AppNavHomeActivity.java 64 String label = labelSeq != null ? labelSeq.toString() : info.activityInfo.name; local
69 SampleInfo sample = new SampleInfo(label, target);
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
BackgroundPickers.java 63 TextView label = (TextView) picker.findViewById(R.id.bg_picker_label); local
64 label.setText(String.format(res.getString(R.string.bg_picker_label), i+1));
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorLEDController.java 80 TextView label = (TextView) g.getChildAt(0); local
88 label.setOnClickListener(leftLabelListener);
102 label.setText(ssb);
105 label.setText("");
  /device/google/wahoo/power-libperfmgr/
power-helper.h 89 const char *label; member in struct:stat_pair
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
grammar.h 12 /* A label of an arc */
17 } label; typedef in typeref:struct:__anon4334
19 #define EMPTY 0 /* Label number 0 is by definition the empty label */
25 label *ll_label;
31 short a_lbl; /* Label of this arc */
42 int s_lower; /* Lowest label index */
43 int s_upper; /* Highest label index */
79 char *PyGrammar_LabelRepr(label *lb);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
grammar.h 12 /* A label of an arc */
17 } label; typedef in typeref:struct:__anon4641
19 #define EMPTY 0 /* Label number 0 is by definition the empty label */
25 label *ll_label;
31 short a_lbl; /* Label of this arc */
42 int s_lower; /* Lowest label index */
43 int s_upper; /* Highest label index */
79 char *PyGrammar_LabelRepr(label *lb);

Completed in 864 milliseconds

1 2 3 4 5 6 7 891011>>