HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 201 - 225 of 622) 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/wizards/newproject/
NewTestProjectCreationPage.java 68 import org.eclipse.swt.widgets.Label;
127 private Label mLocationLabel;
156 private Label mTestTargetPackageLabel;
373 * [label: "Project Name"] [text field]
388 // new project label
390 Label label = new Label(group, SWT.NONE); local
391 label.setText("Test Project Name:");
392 label.setFont(parent.getFont())
499 Label label = new Label(group, SWT.NONE); local
551 Label label = new Label(group, SWT.NONE); local
638 Label label = new Label(group, SWT.NONE); local
    [all...]
  /external/openssl/crypto/sha/asm/
sha512-sse2.pl 167 &call (&label("pic_point")); # make it PIC!
170 &lea ($K512,&DWP(&label("K512")."-".&label("pic_point"),$K512));
230 &jl (&label("_1st_loop"));
231 &je (&label("_1st_looplet")); # playing similar trick on 2nd loop
288 &jl (&label("_2nd_loop"));
309 &jnz (&label("_chunk_loop"));
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 157 JLabel label = new JLabel(); local
158 label.setForeground(Color.WHITE);
159 label.setText("Zoom: ");
160 label.putClientProperty("JComponent.sizeVariant", "small");
161 status.add(label, new GridBagConstraints(0, 0, 1, 1, 0.0f, 0.0f,
165 label = new JLabel();
166 label.setForeground(Color.WHITE);
167 label.setText("100%");
168 label.putClientProperty("JComponent.sizeVariant", "small");
169 status.add(label, new GridBagConstraints(1, 0, 1, 1, 0.0f, 0.0f
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 121 final StringBuffer label = new StringBuffer (101); local
123 label.append ("[");
124 label.append (IAppConstants.APP_NAME);
125 label.append (" v"); label.append (IAppConstants.APP_VERSION_WITH_BUILD_ID_AND_TAG);
126 label.append (" report, generated ");
127 label.append (new Date (EMMAProperties.getTimeStamp ()));
128 label.append ("]");
130 m_out.write (label.toString ());
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 117 final StringBuffer label = new StringBuffer (101); local
119 label.append ("<!-- ");
120 label.append (IAppConstants.APP_NAME);
121 label.append (" v"); label.append (IAppConstants.APP_VERSION_WITH_BUILD_ID_AND_TAG);
122 label.append (" report, generated ");
123 label.append (new Date (EMMAProperties.getTimeStamp ()));
124 label.append (" -->");
126 m_out.write (label.toString ());
  /external/srec/srec/crec/
srec_results.c 283 int srec_nbest_get_result(void* rec_void, int n, char* label, int label_len, asr_int32_t* cost, int whether_strip_slot_markers)
293 *label = 0;
315 *label = 0;
318 strcpy(label + return_len, p);
322 if (label[return_len-2] == IMPORTED_RULES_DELIM)
324 label[return_len-2] = 0;
336 strcpy(label + return_len, et);
343 strcpy(label + return_len, " ");
346 *(label + return_len) = 0;
  /packages/apps/Contacts/src/com/android/contacts/
CallDetailActivity.java 86 PhoneLookup.LABEL,
231 entry.label = callLabel;
287 public String label = null; field in class:CallDetailActivity.ViewEntry
338 boolean labelEmpty = TextUtils.isEmpty(entry.label) || numberEmpty;
344 TextView label = (TextView) convertView.findViewById(R.id.label); local
346 label.setVisibility(View.GONE);
348 label.setText(entry.label);
349 label.setVisibility(View.VISIBLE)
    [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\"];");
  /development/apps/Development/src/com/android/development/
PackageBrowser.java 47 String label; field in class:PackageBrowser.MyPackageInfo
63 info.label = info.info.applicationInfo.loadLabel(getPackageManager()).toString();
78 name.setText(info.label);
99 return collator.compare(a.label, b.label);
InstrumentationList.java 98 CharSequence label = info.loadLabel(mPM); local
99 text.setText(label != null ? label : info.name);
  /external/v8/src/x64/
regexp-macro-assembler-x64.h 44 virtual void Bind(Label* label);
45 virtual void CheckAtStart(Label* on_at_start);
46 virtual void CheckCharacter(uint32_t c, Label* on_equal);
49 Label* on_equal);
50 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
51 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
54 Label* on_failure,
58 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
59 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
  /external/webkit/WebCore/page/mac/
FrameMac.mm 101 String label = [labels objectAtIndex:i];
105 if (label.length() != 0) {
106 startsWithWordChar = wordRegExp.match(label.substring(0, 1)) >= 0;
107 endsWithWordChar = wordRegExp.match(label.substring(label.length() - 1, 1)) >= 0;
112 // Search for word boundaries only if label starts/ends with "word characters".
117 pattern.append(label);
239 // previous element, we still might need to search the row above us for a label.
516 NSString *label = region.label;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
AppWidgetPickActivity.java 175 CharSequence label = info.label; local
186 PickAdapter.Item item = new PickAdapter.Item(this, label, icon);
211 // Sort all items together by label
215 return mCollator.compare(lhs.label, rhs.label);
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
BookmarkPicker.java 234 CharSequence label = info.loadLabel(getPackageManager()); local
235 if (label == null) label = info.activityInfo.name;
236 return label != null ? label.toString() : null;
274 * returns a shortcut intent for going directly to this label.
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdCreationDialog.java 64 import org.eclipse.swt.widgets.Label;
121 private Label mStatusIcon;
122 private Label mStatusLabel;
231 Label label = new Label(parent, SWT.NONE); local
232 label.setText("Name:");
234 label.setToolTipText(tooltip);
241 label = new Label(parent, SWT.NONE)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 82 String label = labelSeq != null local
86 if (prefix.length() == 0 || label.startsWith(prefix)) {
88 String[] labelPath = label.split("/");
  /external/v8/src/arm/
regexp-macro-assembler-arm.h 51 virtual void Bind(Label* label);
52 virtual void CheckAtStart(Label* on_at_start);
53 virtual void CheckCharacter(uint32_t c, Label* on_equal);
56 Label* on_equal);
57 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
58 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
61 Label* on_failure,
65 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
66 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.h 50 virtual void Bind(Label* label);
51 virtual void CheckAtStart(Label* on_at_start);
52 virtual void CheckCharacter(uint32_t c, Label* on_equal);
55 Label* on_equal);
56 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
57 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
60 Label* on_failure,
64 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
65 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
assembler-ia32-inl.h 168 Immediate::Immediate(Label* internal_offset) {
223 Label* label = reinterpret_cast<Label*>(x.x_); local
224 emit_code_relative_offset(label);
232 void Assembler::emit_code_relative_offset(Label* label) {
233 if (label->is_bound()) {
235 pos = label->pos() + Code::kHeaderSize - kHeapObjectTag;
238 emit_disp(label, Displacement::CODE_RELATIVE)
    [all...]
  /external/v8/src/
regexp-macro-assembler.h 36 Label* on_match;
68 // stack by an earlier PushBacktrack(Label*).
70 virtual void Bind(Label* label) = 0;
71 virtual void CheckAtStart(Label* on_at_start) = 0;
74 virtual void CheckCharacter(uint32_t c, Label* on_equal) = 0;
79 Label* on_equal) = 0;
80 virtual void CheckCharacterGT(uc16 limit, Label* on_greater) = 0;
81 virtual void CheckCharacterLT(uc16 limit, Label* on_less) = 0;
83 // fail to match then goto the on_failure label. If check_eos is set the
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageItemInfo.java 33 * a label, icon, and meta-data. This class is not intended
52 * component's label. From the "label" attribute or, if not set, 0.
91 * Retrieve the current textual label associated with this item. This
92 * will call back on the given PackageManager to load the label from
95 * @param pm A PackageManager from which the label can be loaded; usually
98 * @return Returns a CharSequence containing the item's label. If the
99 * item does not have a label, its name is returned.
106 CharSequence label = pm.getText(packageName, labelRes, getApplicationInfo()); local
107 if (label != null)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 457 private void verifyIterationBundle(Bundle iteration, String label) {
460 assertEquals(label, iteration.getString(PerformanceCollector.METRIC_KEY_LABEL));
500 public void writeBeginSnapshot(String label) {
501 snapshotLabel = label;
508 public void writeStartTiming(String label) {
509 timingLabel = label;
516 public void writeMeasurement(String label, long value) {
517 timingResults.putLong(label, value);
520 public void writeMeasurement(String label, float value) {
521 timingResults.putFloat(label, value)
    [all...]
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
AccountPreferenceBase.java 149 * Gets the label associated with a particular account type. If none found, return null.
151 * @return a CharSequence for the label or null if one cannot be found.
154 CharSequence label = null; local
160 label = authContext.getResources().getText(desc.labelId);
162 Log.w(TAG, "No label for account type " + ", type " + accountType);
165 return label;
  /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...]
  /bionic/libc/arch-sh/include/machine/
asm.h 123 * 1: CALL r0 ! each call site needs a label
188 #define PIC_PROLOGUE(label)
189 #define PIC_PROLOGUE_NOSAVE(label)

Completed in 2598 milliseconds

1 2 3 4 5 6 7 891011>>