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

<<31323334353637383940>>

  /external/openssl/crypto/modes/asm/
ghash-x86.pl 152 &jmp (&label("x86_loop"));
177 &js (&label("x86_break"));
179 &jmp (&label("x86_loop"));
322 &jb (&label("x86_outer_loop"));
417 &call (&label("pic_point"));
420 &lea ("eax",&DWP(&label("rem_4bit")."-".&label("pic_point"),"eax"));
443 &call (&label("pic_point"));
446 &lea ("eax",&DWP(&label("rem_4bit")."-".&label("pic_point"),"eax"))
    [all...]
  /external/qemu/
qemu-char.h 72 char *label; member in struct:CharDriverState
79 QemuOpts *qemu_chr_parse_compat(const char *label, const char *filename);
82 CharDriverState *qemu_chr_open(const char *label, const char *filename, void (*init)(struct CharDriverState *s));
  /frameworks/base/core/java/android/content/pm/
LabeledIntent.java 25 * A special subclass of Intent that can have a custom label/icon
35 * Create a labeled intent from the given intent, supplying the label
39 * @param sourcePackage The package in which the label and icon live.
40 * @param labelRes Resource containing the label, or 0 if none.
54 * label and icon resource for it.
57 * @param sourcePackage The package in which the label and icon live.
58 * @param nonLocalizedLabel Concrete text to use for the label.
71 * Create a labeled intent with no intent data but supplying the label
74 * @param sourcePackage The package in which the label and icon live.
75 * @param labelRes Resource containing the label, or 0 if none
139 CharSequence label = pm.getText(mSourcePackage, mLabelRes, null); local
    [all...]
PermissionInfo.java 176 * @param pm A PackageManager from which the label can be loaded; usually
187 CharSequence label = pm.getText(packageName, descriptionRes, null); local
188 if (label != null) {
189 return label;
  /packages/apps/Contacts/src/com/android/contacts/list/
LegacyPhoneNumberListAdapter.java 41 Phones.LABEL, // 2
100 CharSequence label = null; local
106 label = Phone.getTypeLabel(getContext().getResources(), type, customLabel);
108 view.setLabel(label);
LegacyPostalAddressListAdapter.java 41 ContactMethods.LABEL, // 2
102 CharSequence label = null; local
108 label = StructuredPostal.getTypeLabel(getContext().getResources(), type, customLabel);
110 view.setLabel(label);
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 153 String label = labels.get(i); local
167 items.add(new PickAdapter.Item(this, label, icon));
216 CharSequence label; field in class:ActivityPicker.PickAdapter.Item
223 * Create a list item from given label and icon.
225 Item(Context context, CharSequence label, Drawable icon) {
226 this.label = label;
235 label = resolveInfo.loadLabel(pm);
236 if (label == null && resolveInfo.activityInfo != null) {
237 label = resolveInfo.activityInfo.name
    [all...]
  /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/editors/layout/gle2/
LintTooltip.java 30 import org.eclipse.swt.widgets.Label;
64 Label icon = new Label(this, SWT.NONE);
69 Label label = new Label(this, SWT.WRAP); local
71 label.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1));
84 label.setText(String.format("%1$s: %2$s", id, message));
  /bionic/libc/arch-arm/bionic/
strcmp.a15.S 133 .macro m_cbz reg label
135 cbz \reg, \label
138 beq \label
142 .macro m_cbnz reg label
144 cbnz \reg, \label
147 bne \label
160 .macro magic_compare_and_branch w1 w2 label
161 /* Macro to compare registers w1 and w2 and conditionally branch to label. */
166 bne \label
224 magic_compare_and_branch w1=r2, w2=r4, label=return_2
    [all...]
  /external/openfst/src/include/fst/
replace-util.h 44 void Replace(const vector<pair<typename Arc::Label, const Fst<Arc>* > >&,
45 MutableFst<Arc> *, typename Arc::Label, bool);
49 // user provides a set of Label, Fst pairs at construction. These are
51 // and doing RTN connection and specific Fst replacement by label or
57 typedef typename Arc::Label Label;
61 typedef pair<Label, const Fst<Arc>*> FstPair;
62 typedef pair<Label, MutableFst<Arc>*> MutableFstPair;
63 typedef unordered_map<Label, Label> NonTerminalHash
203 Label label = fst_pairs[i].first; local
226 Label label = fst_pairs[i].first; local
439 Label label = nonterminal_array_[arc.nextstate]; local
462 Label label = nonterminal_array_[arc.nextstate]; local
468 Label label = nonterminal_array_[s]; local
526 Label label = nonterminal_array_[i]; local
540 Label label = nonterminal_array_[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
networkLogView.css 277 .network-timeline-grid .resources-dividers-label-bar {
282 .network-graph-label {
299 .network-graph-side:hover .network-graph-label {
303 .network-graph-label:empty {
307 .network-graph-label.waiting {
311 .network-graph-label.waiting-right {
315 .network-graph-label.before {
322 .network-graph-label.before::after {
328 .network-graph-label.after {
335 .network-graph-label.after::before
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
menu_gtk.cc 308 const std::string& label) {
309 std::string converted_label = gfx::ConvertAcceleratorsFromWindowsStyle(label);
310 GtkWidget* menu_item = BuildMenuItemWithLabel(label, command_id);
315 const std::string& label,
317 std::string converted_label = gfx::ConvertAcceleratorsFromWindowsStyle(label);
323 const std::string& label) {
324 std::string converted_label = gfx::ConvertAcceleratorsFromWindowsStyle(label);
407 GtkWidget* MenuGtk::BuildMenuItemWithImage(const std::string& label,
410 gtk_image_menu_item_new_with_mnemonic(label.c_str());
415 GtkWidget* MenuGtk::BuildMenuItemWithImage(const std::string& label,
442 std::string label = local
741 std::string label = local
800 std::string label = local
    [all...]
collected_cookies_gtk.cc 92 GtkWidget* label = gtk_label_new( local
94 gtk_box_pack_start(GTK_BOX(dialog_), label, TRUE, TRUE, 0); local
101 label = gtk_label_new(
104 gtk_widget_show(label);
105 gtk_notebook_insert_page(GTK_NOTEBOOK(notebook_), allowed_pane, label, local
109 label = gtk_label_new(
112 gtk_widget_show(label);
113 gtk_notebook_insert_page(GTK_NOTEBOOK(notebook_), blocked_pane, label, local
166 GtkWidget* label = gtk_label_new( local
169 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5)
170 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), label, FALSE, FALSE, local
241 GtkWidget* label = gtk_label_new( local
249 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), label, TRUE, TRUE, local
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Matrix.h 38 void print(const char* label);
  /development/apps/Development/src/com/android/development/
ShowActivity.java 59 mLabel = (TextView)findViewById(R.id.label);
84 CharSequence label = mActivityInfo.loadLabel(pm); local
85 mLabel.setText("\"" + (label != null ? label : "") + "\"");
  /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("");
  /external/chromium/chrome/browser/autofill/
autofill_common_test.h 21 void CreateTestFormField(const char* label,
  /external/chromium/chrome/browser/chromeos/login/
update_view.h 12 class Label;
43 // Shows label with instructions for user to do a manual reboot.
47 // Shows label for "Preparing updates" state.
50 // Whether curtain window with throbber and label in the center should
58 // Creates Label control and adds it as a child.
59 void InitLabel(views::Label** label);
68 views::Label* installing_updates_label_;
69 views::Label* preparing_updates_label_;
70 views::Label* reboot_label_
    [all...]
  /external/chromium/chrome/browser/ui/views/location_bar/
icon_label_bubble_view.h 21 class Label;
27 // a label. We use this as a base for the classes that handle the EV bubble and
37 void SetLabel(const std::wstring& label);
60 views::Label* label_;
  /external/chromium/net/base/
net_log.h 41 #define EVENT_TYPE(label) TYPE_ ## label,
56 #define SOURCE_TYPE(label, value) SOURCE_ ## label = value,
  /external/chromium_org/ash/system/chromeos/network/
network_icon.h 52 // Returns the label for |network| based on |icon_type|. |network| can be NULL.
61 // Gets the correct icon and label for |icon_type|. Also sets |animating|
65 base::string16* label,
  /external/chromium_org/ash/system/tray/
tray_item_more.h 13 class Label;
32 void SetLabel(const base::string16& label);
37 // Replaces the default icon (on the left of the label), and allows a custom
54 views::Label* label_;
  /external/chromium_org/ash/system/
tray_caps_lock.cc 20 #include "ui/views/controls/label.h"
30 : text_label_(new views::Label),
31 shortcut_label_(new views::Label) {
53 // Updates the label text and the shortcut text.
106 views::Label* text_label_;
107 views::Label* shortcut_label_;
158 views::Label* label = new views::Label(bundle.GetLocalizedString(string_id)); local
159 label->SetMultiLine(true)
    [all...]
  /external/chromium_org/chrome/browser/resources/
gesture_config.css 47 .row-label {
54 html[dir=rtl] .row-label {

Completed in 523 milliseconds

<<31323334353637383940>>