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

1 2 3 4 56 7 8 91011>>

  /external/openssl/crypto/perlasm/
cbc.pl 99 &jz(&label("decrypt"));
105 &jz(&label("encrypt_finish"));
142 &jnz(&label("encrypt_loop"));
148 &jz(&label("finish"));
149 &call(&label("PIC_point"));
152 &lea("ecx",&DWP(&label("cbc_enc_jmp_table")."-".&label("PIC_point"),"edx"));
157 #&mov($count,&DWP(&label("cbc_enc_jmp_table"),"",$count,4));
169 &jmp(&label("ejend"));
199 &jmp(&label("finish"))
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTabSpec.java 23 private CharSequence label; field in class:ShadowTabSpec
48 return this.label.toString();
60 return label.toString();
69 public TabHost.TabSpec setIndicator(CharSequence label) {
70 this.label = label;
75 public TabHost.TabSpec setIndicator(CharSequence label, Drawable icon) {
76 this.label = label;
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlockList.java 49 * Gets the block with the given label.
51 * @param label the label to look for
52 * @return {@code non-null;} the block with the given label
54 public ByteBlock labelToBlock(int label) {
55 int idx = indexOfLabel(label);
58 throw new IllegalArgumentException("no such label: "
59 + Hex.u2(label));
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
dot.stg 55 edge(src,target,label,arrowhead) ::= <<
56 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
59 action_edge(src,target,label,arrowhead) ::= <<
60 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
63 epsilon_edge(src,target,label,arrowhead) ::= <<
64 <src> -> <target> [fontname="Times-Italic", label = "e"];
  /external/chromium_org/ui/views/controls/menu/
menu.h 151 // label The text label shown.
154 const string16& label,
158 const string16& label,
164 const string16& label);
165 Menu* AddSubMenu(int index, int item_id, const string16& label);
172 const string16& label,
176 const string16& label,
179 // This is a convenience for standard text label menu items where the label
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
AST.stg 77 <ruleDescriptor.tokenLabels:{it | <ASTLabelType> <it.label.text>_tree;}; separator="\n">
78 <ruleDescriptor.tokenListLabels:{it | <ASTLabelType> <it.label.text>_tree;}; separator="\n">
93 <ruleDescriptor.tokenLabels:{it | <it.label.text>_tree = NULL;}; separator="\n">
94 <ruleDescriptor.tokenListLabels:{it | <it.label.text>_tree = NULL;}; separator="\n">
109 /** a rule label including default value */
110 ruleLabelInitVal(label) ::= <<
112 <label.label.text>.tree = NULL;
141 tokenRefTrack(token,label,elementIndex,terminalOptions) ::= <<
143 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) { <endif>CREATE_stream_<token>; stream_<token>->add(stream_<token>, <label>, NULL);<if(backtracking)> }<endif><\n
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTTreeParser.stg 33 * no label, label, list label (label/no-label handled together)
37 * Each combination has its own template except that label/no label
123 if ( _first_<enclosingTreeLevel>==nil ) _first_<enclosingTreeLevel> = <root.el.label>.tree;
125 if ( _first_<enclosingTreeLevel>==nil ) _first_<enclosingTreeLevel> = <root.el.label>;
152 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTTreeParser.stg 36 * no label, label, list label (label/no-label handled together)
40 * Each combination has its own template except that label/no label
80 if (_first_<enclosingTreeLevel> == null) _first_<enclosingTreeLevel> = <root.el.label>.Tree;
82 if (_first_<enclosingTreeLevel> == null) _first_<enclosingTreeLevel> = <root.el.label>;
109 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTTreeParser.stg 37 * no label, label, list label (label/no-label handled together)
41 * Each combination has its own template except that label/no label
81 if (_first_<enclosingTreeLevel> == null) _first_<enclosingTreeLevel> = <root.el.label>.Tree;
83 if (_first_<enclosingTreeLevel> == null) _first_<enclosingTreeLevel> = <root.el.label>;
110 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/util/
BitsTest.java 23 assertEquals(label(0), 0, Bits.makeBitSet(0).length);
26 assertEquals(label(i), 1, Bits.makeBitSet(i).length); method
30 assertEquals(label(i), 2, Bits.makeBitSet(i).length); method
38 assertEquals(label(i), expect, Bits.makeBitSet(i).length); method
48 assertEquals(label(i), expect * 32, method
57 assertFalse(label(i), Bits.get(bits, i)); method
68 assertTrue(label(i), Bits.get(bits, i)); method
81 assertTrue(label(i), Bits.get(bits, i) == expect); method
98 assertEquals(label(1), 0x41, bits[0]);
99 assertEquals(label(2), 0xfffffbf7, bits[1])
126 assertTrue(label(i), Bits.get(bits, i) == expect); method
141 assertTrue(label(i), Bits.get(bits, i) == expect); method
159 assertTrue(label(i), Bits.get(bits, i) == expect); method
165 assertTrue(label(i), Bits.isEmpty(new int[i])); method
178 assertFalse(label(i), Bits.isEmpty(bits)); method
184 assertEquals(label(i), 0, Bits.bitCount(new int[i])); method
208 assertEquals(label(i), count, Bits.bitCount(bits)); method
216 assertFalse(label(i), Bits.anyInRange(bits, 0, i)); method
224 assertFalse(label(i), Bits.anyInRange(bits, i, 100)); method
232 assertFalse(label(i), Bits.anyInRange(bits, i, 100 - i)); method
243 assertTrue(label(i), Bits.anyInRange(bits, 0, i)); method
254 assertTrue(label(i), Bits.anyInRange(bits, i, 100)); method
265 assertTrue(label(i), Bits.anyInRange(bits, i, 100 - i)); method
273 assertEquals(label(i), -1, Bits.findFirst(bits, i)); method
284 assertEquals(label(i), i, Bits.findFirst(bits, i)); method
300 assertEquals(label(i), i + 5, Bits.findFirst(bits, i)); method
306 assertEquals(label(i), -1, Bits.findFirst(0, i)); method
312 assertEquals(label(i), i, Bits.findFirst(-1, i)); method
318 assertEquals(label(i), -1, Bits.findFirst((1 << i) >>> 1, i)); method
324 assertEquals(label(i), i, Bits.findFirst(1 << i, i)); method
330 assertEquals(label(i), i + 1, Bits.findFirst(1 << (i + 1), i)); method
338 assertEquals(label(i), i, Bits.findFirst(value, i)); method
342 private static String label(int n) { method in class:BitsTest
    [all...]
  /bionic/libc/kernel/common/linux/netfilter/
xt_IDLETIMER.h 30 char label[MAX_IDLETIMER_LABEL_SIZE]; member in struct:idletimer_tg_info
  /bootable/recovery/updater/
updater.h 24 #include <selinux/label.h>
  /external/chromium/webkit/glue/
webmenuitem.cc 17 : label(item.label),
27 : label(item.label),
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
pointer_handler.cc 72 std::string label; local
74 label = has_mouse_ ? "pointerOverlayTitleTouchpadMouse" :
77 label = has_mouse_ ? "pointerOverlayTitleMouseOnly" : "";
79 base::StringValue val(label);
  /external/chromium_org/chromeos/ime/
input_method_property.cc 19 label(in_label),
35 label == other.label &&
47 << ", label=" << label
  /external/chromium_org/components/autofill/core/browser/
form_field_unittest.cc 22 field.label = ASCIIToUTF16("a");
27 field.label = base::string16();
32 field.label = ASCIIToUTF16("a");
37 field.label = base::string16();
42 field.label = ASCIIToUTF16("head_tail");
49 field.label = ASCIIToUTF16("head_tail");
56 field.label = ASCIIToUTF16("head_tail");
65 field.label = ASCIIToUTF16("m.i.");
71 field.label = ASCIIToUTF16("mXiX");
78 field.label = ASCIIToUTF16("headtail")
    [all...]
  /external/chromium_org/content/renderer/media/
mock_media_stream_dispatcher.h 30 virtual void StopStream(const std::string& label) OVERRIDE;
31 virtual bool IsStream(const std::string& label) OVERRIDE;
32 virtual int video_session_id(const std::string& label, int index) OVERRIDE;
33 virtual int audio_session_id(const std::string& label, int index) OVERRIDE;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
RTCPeerConnectionSyncObserver.h 44 - (void)expectAddStream:(NSString *)label;
45 - (void)expectRemoveStream:(NSString *)label;
  /external/doclava/res/assets/templates/
jd_lists.cs 5 { label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>",
lists.cs 3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
  /external/iptables/include/linux/netfilter/
xt_IDLETIMER.h 44 char label[MAX_IDLETIMER_LABEL_SIZE]; member in struct:idletimer_tg_info
  /external/kernel-headers/original/linux/netfilter/
xt_IDLETIMER.h 44 char label[MAX_IDLETIMER_LABEL_SIZE]; member in struct:idletimer_tg_info
  /external/openfst/src/include/fst/
arcfilter.h 74 typedef typename A::Label Label;
82 Label label = match_input_ ? arc.ilabel : arc.olabel; local
83 bool match = labels_.Find(label) != labels_.End();
87 void AddLabel(Label label) {
88 labels_.Insert(label);
92 CompactSet<Label, kNoLabel> labels_;
  /external/wpa_supplicant_8/src/eap_common/
eap_peap_common.h 13 const char *label, const u8 *seed, size_t seed_len,
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
stringquery.h 21 StringQuery(QString label);

Completed in 413 milliseconds

1 2 3 4 56 7 8 91011>>