HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 976 - 1000 of 2711) sorted by null

<<31323334353637383940>>

  /external/v8/src/ia32/
regexp-macro-assembler-ia32.h 53 virtual void Bind(Label* label);
54 virtual void CheckAtStart(Label* on_at_start);
55 virtual void CheckCharacter(uint32_t c, Label* on_equal);
58 Label* on_equal);
59 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
60 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
63 Label* on_failure,
67 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
68 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
  /external/v8/src/mips/
regexp-macro-assembler-mips.h 56 virtual void Bind(Label* label);
57 virtual void CheckAtStart(Label* on_at_start);
58 virtual void CheckCharacter(uint32_t c, Label* on_equal);
61 Label* on_equal);
62 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
63 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
66 Label* on_failure,
70 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
71 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
  /external/v8/src/
regexp-macro-assembler.h 38 Label* on_match;
71 // stack by an earlier PushBacktrack(Label*).
73 virtual void Bind(Label* label) = 0;
74 virtual void CheckAtStart(Label* on_at_start) = 0;
77 virtual void CheckCharacter(unsigned c, Label* on_equal) = 0;
82 Label* on_equal) = 0;
83 virtual void CheckCharacterGT(uc16 limit, Label* on_greater) = 0;
84 virtual void CheckCharacterLT(uc16 limit, Label* on_less) = 0;
86 // fail to match then goto the on_failure label. If check_eos is set the
    [all...]
  /frameworks/base/core/java/android/content/
ClipData.java 44 * For display to the user, it also has a label and iconic representation.</p>
616 * @param label Label to show to the user describing this clip.
620 public ClipData(CharSequence label, String[] mimeTypes, Item item) {
621 mClipDescription = new ClipDescription(label, mimeTypes);
662 * @param label User-visible label for the clip data.
666 static public ClipData newPlainText(CharSequence label, CharSequence text) {
668 return new ClipData(label, MIMETYPES_TEXT_PLAIN, item);
675 * @param label User-visible label for the clip data
    [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.
100 * Retrieve the current textual label associated with this item. This
101 * will call back on the given PackageManager to load the label from
104 * @param pm A PackageManager from which the label can be loaded; usually
107 * @return Returns a CharSequence containing the item's label. If the
108 * item does not have a label, its name is returned.
115 CharSequence label = pm.getText(packageName, labelRes, getApplicationInfo()); local
116 if (label != null)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 454 private void verifyIterationBundle(Bundle iteration, String label) {
457 assertEquals(label, iteration.getString(PerformanceCollector.METRIC_KEY_LABEL));
497 public void writeBeginSnapshot(String label) {
498 snapshotLabel = label;
505 public void writeStartTiming(String label) {
506 timingLabel = label;
513 public void writeMeasurement(String label, long value) {
514 timingResults.putLong(label, value);
517 public void writeMeasurement(String label, float value) {
518 timingResults.putFloat(label, value)
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
ThirdPartyWallpaperPickerListAdapter.java 132 TextView label = (TextView) view.findViewById(R.id.wallpaper_item_label); local
133 label.setText(info.loadLabel(mPackageManager));
136 label.setCompoundDrawables(null, icon, null, null);
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
TapAgainDialog.java 80 CharSequence label = serviceInfo.loadLabel(pm); local
81 if (label == null) {
84 description = label.toString();
  /packages/apps/Settings/src/com/android/settings/
AppWidgetPickActivity.java 97 CharSequence label = info.label; local
134 PickAdapter.Item item = new PickAdapter.Item(context, label, icon);
  /packages/apps/Settings/src/com/android/settings/accounts/
AuthenticatorHelper.java 90 * Gets the label associated with a particular account type. If none found, return null.
92 * @return a CharSequence for the label or null if one cannot be found.
95 CharSequence label = null; local
100 label = authContext.getResources().getText(desc.labelId);
102 Log.w(TAG, "No label name for account type " + accountType);
104 Log.w(TAG, "No label icon for account type " + accountType);
107 return label;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
UsagePermissionPage.java 31 import org.eclipse.swt.widgets.Label;
66 Label label = new Label(container, SWT.WRAP); local
69 label.setLayoutData(gd_lblByChoosingTo);
70 label.setText(SdkStatsPermissionDialog.BODY_TEXT);
72 Label blankLine = new Label(container, SWT.NONE);
74 Label questionLabel = new Label(container, 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);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatFileSystem.java 144 * Returns the volume label of this file system.
146 * @return the volume label
161 * Sets the volume label for this file system.
163 * @param label the new volume label, may be {@code null}
167 public void setVolumeLabel(String label)
173 rootDirStore.setLabel(label);
176 ((Fat16BootSector)bs).setVolumeLabel(label);
  /external/chromium/chrome/browser/first_run/
try_chrome_dialog_view.cc 145 views::Label* label = new views::Label(heading); local
146 label->SetFont(rb.GetFont(ResourceBundle::MediumBoldFont));
147 label->SetMultiLine(true);
148 label->SizeToFit(200);
149 label->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
150 layout->AddView(label);
  /external/chromium_org/ash/system/session_length_limit/
tray_session_length_limit.cc 32 #include "ui/views/controls/label.h"
53 views::Label* CreateAndSetupLabel() {
54 views::Label* label = new views::Label; local
55 label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
56 SetupLabelForTray(label);
57 gfx::Font font = label->font();
58 label->SetFont(font.DeriveFont(0, font.GetStyle() & ~gfx::Font::BOLD));
59 return label;
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
CertificateViewer.java 159 private void addSectionTitle(LinearLayout certificateView, String label) {
160 TextView title = addLabel(certificateView, label);
164 private void addItem(LinearLayout certificateView, String label, String value) {
167 addLabel(certificateView, label);
171 private TextView addLabel(LinearLayout certificateView, String label) {
174 t.setText(label);
  /external/chromium_org/chrome/browser/resources/options/chromeos/
bluetooth.css 26 #bluetooth-options .button-strip #bluetooth-scanning-label {
31 #bluetooth-scanning-label {
55 .bluetooth-empty-list-label {
  /external/chromium_org/chrome/browser/resources/options/
manage_profile_overlay.css 80 .name-label-container {
117 #create-profile-managed-not-signed-in-label,
118 #create-profile-managed-account-details-out-of-date-label {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
FilterBar.js 193 this._regexLabel = this._filterElement.createChild("label");
361 * @param {string} label
363 addBit: function(name, label)
367 typeFilterElement.createTextChild(label);
411 * @param {!Array.<{value: *, label: string, title: string}>} options
423 option.text = filterOption.label;
551 var label = this._filterElement.createChild("label");
552 var checkBorder = label.createChild("div", "checkbox-filter-checkbox");
555 var typeElement = label.createChild("span", "type")
    [all...]
  /external/chromium_org/tools/perf/page_sets/mse_cases/
startup_test.js 40 { label: 'Page Load Total',
44 { label: 'body.onload Delay',
48 { label: 'Test Total',
52 { label: 'MediaSource opening',
61 bars.push({ label: 'XHR',
65 bars.push({ label: 'Append',
74 bars.push({label: 'Post Append Delay', start: maxAppendEndTime, end: timestamps.testEndTime, color: '#B0B0B0' });
97 var text = bar.label + ' (' + (bar.end - bar.start).toFixed(3) + ' ms)';
132 var label = bar.label.toLowerCase().replace(/\s+|\./g, '_')
    [all...]
  /external/chromium_org/ui/views/controls/menu/
menu_model_adapter.cc 62 string16 label, sublabel, minor_text; local
70 label = model->GetLabelAt(model_index);
76 label = model->GetLabelAt(model_index);
82 label = model->GetLabelAt(model_index);
93 label = model->GetLabelAt(model_index);
106 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...]
  /sdk/emulator/mksdcard/
mksdcard.c 30 * usage: mksdcard [-l label] <size> <filename>
113 boot_sector_init( Bytes boot, Bytes info, Wide disk_size, const char* label )
121 if (label == NULL)
122 label = "SDCARD";
151 strncpy( (char*)boot + 0x47, label, 11 ); /* Volume Label */
210 fprintf(stderr, "usage: mksdcard [-l label] <size> <file>\n\n");
227 const char* label = NULL; local
244 label = arg;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentArguments.java 60 static MyFragment newInstance(CharSequence label) {
63 b.putCharSequence("label", label);
91 mLabel = args.getCharSequence("label", mLabel);
102 ((TextView)tv).setText(mLabel != null ? mLabel : "(no label)");
  /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);

Completed in 1576 milliseconds

<<31323334353637383940>>