HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 176 - 200 of 2621) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/openssl/crypto/bn/asm/x86/
mul.pl 26 &jz(&label("mw_finish"));
48 &jz(&label("mw_finish"));
49 &jmp(&label("mw_loop"));
54 &jnz(&label("mw_finish2"));
55 &jmp(&label("mw_end"));
69 &jz(&label("mw_end")) if ($i != 7-1);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
OffsetInstructionFormatMethodItem.java 41 protected LabelMethodItem label; field in class:OffsetInstructionFormatMethodItem
47 label = new LabelMethodItem(codeAddress + instruction.getTargetAddressOffset(), getLabelPrefix());
48 label = labelCache.internLabel(label);
53 label.writeTo(writer);
57 return label;
  /external/chromium/chrome/browser/resources/
keyboard_overlay_data.js 11 "label": "glyph_power",
18 "label": "esc",
107 "label": "backspace",
114 "label": "tab",
203 "label": "enter",
210 "label": "ctrl",
300 "label": "shift",
380 "label": "shift",
390 "label": "alt",
396 "label": "glyph_back"
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
validation_message_bubble_delegate.cc 10 #include "ui/views/controls/label.h"
38 views::Label* label = new views::Label(main_text); local
39 label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
40 label->SetFont(bundle.GetFont(ResourceBundle::MediumFont));
41 label->set_directionality_mode(views::Label::AUTO_DETECT_DIRECTIONALITY);
45 int label_width = label->GetPreferredSize().width();
46 label->SetMultiLine(true)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
genopcode.asm 154 jc short label
155 jc label
156 label:
157 jz label
158 jz near label
159 loop label
160 jcxz label
161 jecxz label
162 call label
163 call [label]
    [all...]
  /external/e2fsprogs/resize/
sim_progress.c 19 char *label; member in struct:ext2_sim_progress
32 fputs(prog->label, prog->f);
33 width = prog->labelwidth - strlen(prog->label);
78 const char *label,
90 retval = ext2fs_get_mem(strlen(label)+1, &prog->label);
95 strcpy(prog->label, label);
112 if (prog->label)
113 ext2fs_free_mem(&prog->label);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_ContactMethodsTest.java 55 String label = "label"; local
57 ContactMethods.TYPE_CUSTOM, label).toString();
58 assertEquals(label, display);
63 ContactMethods.TYPE_HOME, label).toString();
67 ContactMethods.TYPE_OTHER, label).toString();
71 ContactMethods.TYPE_WORK, label).toString();
76 ContactMethods.TYPE_CUSTOM, label).toString();
80 ContactMethods.TYPE_CUSTOM, label).toString();
84 ContactMethods.TYPE_CUSTOM, label).toString()
    [all...]
ContactsContract_CommonDataKinds_PhoneTest.java 55 assertCustomTypeLabel("Custom Label");
62 String label = mResources.getString(res); local
63 assertEquals(label, Phone.getTypeLabel(mResources, type, ""));
66 private void assertCustomTypeLabel(String label) {
69 assertEquals(label, Phone.getTypeLabel(mResources, Phone.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_RelationTest.java 49 assertCustomTypeLabel("Custom Label");
56 String label = mResources.getString(res); local
57 assertEquals(label, Relation.getTypeLabel(mResources, type, ""));
60 private void assertCustomTypeLabel(String label) {
63 assertEquals(label, Relation.getTypeLabel(mResources, Relation.TYPE_CUSTOM, label));
  /external/chromium_org/chrome/browser/resources/options/
subpages_tab_controls.css 21 * bold, we actually put two labels inside each tab: an inactive label and an
22 * active label. Only one is visible at a time, but the bold label is used to
25 .subpages-nav-tabs .active-tab-label,
26 .subpages-nav-tabs .tab-label:hover {
30 .subpages-nav-tabs .tab-label {
36 html[dir=rtl] .subpages-nav-tabs .tab-label {
40 .subpages-nav-tabs .active-tab-label,
41 .subpages-nav-tabs .active-tab .tab-label {
48 .subpages-nav-tabs .active-tab .active-tab-label {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
streamcollection.h 62 virtual MediaStreamInterface* find(const std::string& label) {
65 if ((*it)->label().compare(label) == 0) {
97 if ((*it)->label().compare(stream->label()) == 0)
106 if ((*it)->label().compare(remove_stream->label()) == 0) {
  /external/e2fsprogs/misc/
e2label.c 2 * e2label.c - Print or change the volume label on an ext2 fs
80 char label[VOLNAMSZ+1]; local
83 strncpy(label, sb.s_volume_name, VOLNAMSZ);
84 label[VOLNAMSZ] = 0;
85 printf("%s\n", label);
88 static void change_label (char *dev, char *label)
94 strncpy(sb.s_volume_name, label, VOLNAMSZ);
95 if (strlen(label) > VOLNAMSZ)
96 fprintf(stderr, _("Warning: label too long, truncating.\n"));
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86asm.pl 134 # label management
135 $lbdecor="L"; # local label decoration, set by package
136 $label="000";
138 sub ::islabel # see is argument is a known label
140 foreach $i (values %label) { return $i if ($i eq $_[0]); }
141 $label{$_[0]}; # can be undef
144 sub ::label # instantiate a function-scope label
145 { if (!defined($label{$_[0]}))
146 { $label{$_[0]}="${lbdecor}${label}${_[0]}"; $label++;
    [all...]
  /external/openssl/crypto/perlasm/
x86asm.pl 134 # label management
135 $lbdecor="L"; # local label decoration, set by package
136 $label="000";
138 sub ::islabel # see is argument is a known label
140 foreach $i (values %label) { return $i if ($i eq $_[0]); }
141 $label{$_[0]}; # can be undef
144 sub ::label # instantiate a function-scope label
145 { if (!defined($label{$_[0]}))
146 { $label{$_[0]}="${lbdecor}${label}${_[0]}"; $label++;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
bn-586.pl 37 &jnc(&label("maw_non_sse2"));
44 &jmp(&label("maw_sse2_entry"));
107 &jz(&label("maw_sse2_exit"));
110 &jnz(&label("maw_sse2_unrolled"));
123 &jnz(&label("maw_sse2_loop"));
157 &jz(&label("maw_finish"));
179 &jnz(&label("maw_loop"));
184 &jnz(&label("maw_finish2")); # helps branch prediction
185 &jmp(&label("maw_end"));
200 &jz(&label("maw_end")) if ($i != 7-1)
    [all...]
  /external/openssl/crypto/bn/asm/
bn-586.pl 37 &jnc(&label("maw_non_sse2"));
44 &jmp(&label("maw_sse2_entry"));
107 &jz(&label("maw_sse2_exit"));
110 &jnz(&label("maw_sse2_unrolled"));
123 &jnz(&label("maw_sse2_loop"));
157 &jz(&label("maw_finish"));
179 &jnz(&label("maw_loop"));
184 &jnz(&label("maw_finish2")); # helps branch prediction
185 &jmp(&label("maw_end"));
200 &jz(&label("maw_end")) if ($i != 7-1)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
pgen.py 42 for label, next in state.arcs.iteritems():
43 arcs.append((self.make_label(c, label), dfa.index(next)))
55 for label in rawfirst:
56 ilabel = self.make_label(c, label)
61 def make_label(self, c, label):
64 if label[0].isalpha():
66 if label in c.symbol2number:
68 if label in c.symbol2label:
69 return c.symbol2label[label]
71 c.labels.append((c.symbol2number[label], None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
pgen.py 42 for label, next in state.arcs.iteritems():
43 arcs.append((self.make_label(c, label), dfa.index(next)))
55 for label in rawfirst:
56 ilabel = self.make_label(c, label)
61 def make_label(self, c, label):
64 if label[0].isalpha():
66 if label in c.symbol2number:
68 if label in c.symbol2label:
69 return c.symbol2label[label]
71 c.labels.append((c.symbol2number[label], None)
    [all...]
  /external/chromium/webkit/glue/
form_field.cc 39 // TODO(jhawkins): Extract the field label. For now we just use the field
41 label = name;
66 FormField::FormField(const string16& label,
72 : label(label),
86 return (label == field.label &&
97 return (label == field.label &&
106 << UTF16ToUTF8(field.label)
    [all...]
  /external/chromium_org/content/renderer/media/
media_stream_dispatcher.h 55 // Stop a started stream. Label is the label provided in OnStreamGenerated.
56 virtual void StopStream(const std::string& label);
83 // Close a started device. |label| is provided in OnDeviceOpened.
84 void CloseDevice(const std::string& label);
86 // Check if the label is a valid stream.
87 virtual bool IsStream(const std::string& label);
88 // Get the video session_id given a label. The label identifies a stream.
90 virtual int video_session_id(const std::string& label, int index)
    [all...]
  /external/chromium_org/third_party/skia/include/views/
SkOSMenu.h 56 Item(const char label[], SkOSMenu::Type type, const char slotName[],
121 int appendItem(const char label[], Type type, const char slotName[],
130 int appendAction(const char label[], SkEventSinkID target);
131 int appendList(const char label[], const char slotName[],
133 int appendSlider(const char label[], const char slotName[],
136 int appendSwitch(const char label[], const char slotName[],
138 int appendTriState(const char label[], const char slotName[],
140 int appendTextField(const char label[], const char slotName[],
158 * Returns true if an action with the given label is found, false otherwise
160 static bool FindAction(const SkEvent& evt, const char label[]);
    [all...]
  /external/skia/include/views/
SkOSMenu.h 56 Item(const char label[], SkOSMenu::Type type, const char slotName[],
121 int appendItem(const char label[], Type type, const char slotName[],
130 int appendAction(const char label[], SkEventSinkID target);
131 int appendList(const char label[], const char slotName[],
133 int appendSlider(const char label[], const char slotName[],
136 int appendSwitch(const char label[], const char slotName[],
138 int appendTriState(const char label[], const char slotName[],
140 int appendTextField(const char label[], const char slotName[],
158 * Returns true if an action with the given label is found, false otherwise
160 static bool FindAction(const SkEvent& evt, const char label[]);
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
DateSorterTest.java 49 String label = dateSorter.getLabel(i); local
50 assertNotNull(label);
51 assertTrue(label.length() > 0);
52 // label must be unique
53 assertFalse(set.contains(label));
54 set.add(label);
55 // cannot assert actual label contents, since resources are not public
  /dalvik/dx/junit-tests/com/android/dx/util/
IntListTest.java 31 assertTrue(label(sz, i), contains); method
33 assertFalse(label(sz, i), contains); method
36 assertFalse(label(sz, -1), list.contains(-1)); method
37 assertFalse(label(sz, sz * 2), list.contains(sz * 2)); method
61 private static String label(int n, int m) { method in class:IntListTest
  /external/chromium_org/content/browser/renderer_host/media/
device_request_message_filter.h 34 const std::string& label, const StreamDeviceInfoArray& audio_devices,
36 virtual void StreamGenerationFailed(const std::string& label) OVERRIDE;
37 virtual void StopGeneratedStream(const std::string& label) OVERRIDE;
38 virtual void DeviceOpened(const std::string& label,
41 virtual void DevicesEnumerated(const std::string& label,

Completed in 838 milliseconds

1 2 3 4 5 6 78 91011>>