HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 51 - 75 of 1512) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_CommonDataKinds_EmailTest.java 39 assertCustomTypeLabel("Custom Label");
46 String label = mResources.getString(res); local
47 assertEquals(label, Email.getTypeLabel(mResources, type, ""));
50 private void assertCustomTypeLabel(String label) {
53 assertEquals(label, Email.getTypeLabel(mResources, Email.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_OrganizationTest.java 38 assertCustomTypeLabel("Custom Label");
45 String label = mResources.getString(res); local
46 assertEquals(label, Organization.getTypeLabel(mResources, type, ""));
49 private void assertCustomTypeLabel(String label) {
52 assertEquals(label, Organization.getTypeLabel(mResources, Im.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_SipAddressTest.java 38 assertCustomTypeLabel("Custom Label");
45 String label = mResources.getString(res); local
46 assertEquals(label, SipAddress.getTypeLabel(mResources, type, ""));
49 private void assertCustomTypeLabel(String label) {
52 assertEquals(label, SipAddress.getTypeLabel(mResources, SipAddress.TYPE_CUSTOM, label));
ContactsContract_CommonDataKinds_StructuredPostalTest.java 38 assertCustomTypeLabel("Custom Label");
45 String label = mResources.getString(res); local
46 assertEquals(label, StructuredPostal.getTypeLabel(mResources, type, ""));
49 private void assertCustomTypeLabel(String label) {
52 assertEquals(label, StructuredPostal.getTypeLabel(mResources,
53 StructuredPostal.TYPE_CUSTOM, label));
Contacts_OrganizationsTest.java 25 String label = "label"; local
27 Organizations.TYPE_CUSTOM, label).toString();
28 assertEquals(label, display);
33 Organizations.TYPE_OTHER, label).toString();
37 Organizations.TYPE_WORK, label).toString();
Contacts_PhonesTest.java 25 CharSequence label = "label"; local
27 Phones.TYPE_CUSTOM, label).toString();
28 assertEquals(label, display);
33 Phones.TYPE_HOME, label).toString();
37 Phones.TYPE_MOBILE, label).toString();
41 Phones.TYPE_WORK, label).toString();
45 Phones.TYPE_FAX_WORK, label).toString();
49 Phones.TYPE_FAX_HOME, label).toString();
53 Phones.TYPE_PAGER, label).toString()
62 CharSequence label = "label"; local
    [all...]
ContactsContract_CommonDataKinds_ImTest.java 44 assertCustomProtocolLabel("Custom Label");
52 assertCustomTypeLabel("Custom Label");
59 String label = mResources.getString(res); local
60 assertEquals(label, Im.getProtocolLabel(mResources, type, ""));
63 private void assertCustomProtocolLabel(String label) {
66 assertEquals(label, Im.getProtocolLabel(mResources, Im.PROTOCOL_CUSTOM, label));
73 String label = mResources.getString(res); local
74 assertEquals(label, Im.getTypeLabel(mResources, type, ""));
77 private void assertCustomTypeLabel(String label) {
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLLabelElement/script-tests/
label-control.js 1 description('Test that label.control references the correct form control, or null if there is no associated control.');
3 debug("Find a control that is the first descendent in a label");
4 document.write("<label id='test1'><input id='inputId1'></label>");
7 debug("Find a control based on a label with valid 'for' attribute");
8 document.write("<label id='test2' for='inputId2'></label><input id='inputId2' type='number'>");
12 debug("Find a control in p element in label");
13 document.write("<label id='test3'><p><input id='inputId3' type='date'></p></label>");
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
BlockAddresses.java 32 * block (indexed by basic block label) */
36 * of each basic block (indexed by basic block label) */
41 * label) */
71 * Gets the instance for the start of the block with the given label.
73 * @param label {@code non-null;} the label of the block in question
76 public CodeAddress getStart(int label) {
77 return starts[label];
92 * the given label.
94 * @param label {@code non-null;} the label of the block in questio
132 int label = one.getLabel(); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 32 * block (indexed by basic block label) */
36 * of each basic block (indexed by basic block label) */
41 * label) */
71 * Gets the instance for the start of the block with the given label.
73 * @param label {@code non-null;} the label of the block in question
76 public CodeAddress getStart(int label) {
77 return starts[label];
92 * the given label.
94 * @param label {@code non-null;} the label of the block in questio
132 int label = one.getLabel(); local
    [all...]
  /external/bluetooth/bluedroid/stack/include/
avdtc_api.h 90 AVDT_API extern void AVDTC_DiscoverRsp(BD_ADDR bd_addr, UINT8 label,
102 AVDT_API extern void AVDTC_GetCapRsp(BD_ADDR bd_addr, UINT8 label, tAVDT_CFG *p_cap);
113 AVDT_API extern void AVDTC_GetAllCapRsp(BD_ADDR bd_addr, UINT8 label, tAVDT_CFG *p_cap);
135 AVDT_API extern void AVDTC_GetConfigRsp(UINT8 handle, UINT8 label, tAVDT_CFG *p_cfg);
157 AVDT_API extern void AVDTC_OpenRsp(UINT8 handle, UINT8 label);
168 AVDT_API extern void AVDTC_StartRsp(UINT8 *p_handles, UINT8 num_handles, UINT8 label);
179 AVDT_API extern void AVDTC_CloseRsp(UINT8 handle, UINT8 label);
190 AVDT_API extern void AVDTC_SuspendRsp(UINT8 *p_handles, UINT8 num_handles, UINT8 label);
212 AVDT_API extern void AVDTC_AbortRsp(UINT8 handle, UINT8 label);
223 AVDT_API extern void AVDTC_Rej(UINT8 handle, BD_ADDR bd_addr, UINT8 cmd, UINT8 label,
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
BlockAddresses.java 32 * block (indexed by basic block label) */
36 * of each basic block (indexed by basic block label) */
41 * label) */
71 * Gets the instance for the start of the block with the given label.
73 * @param label {@code non-null;} the label of the block in question
76 public CodeAddress getStart(int label) {
77 return starts[label];
92 * the given label.
94 * @param label {@code non-null;} the label of the block in questio
132 int label = one.getLabel(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
AccordionControl.java 57 * heavier gradient during mouse-overs. It also uses a bold label along with the eclipse
192 * produce the heading label
217 final CLabel label = new CLabel(this, SWT.SHADOW_OUT); local
218 label.setText(header.toString().replace("&", "&&")); //$NON-NLS-1$ //$NON-NLS-2$
219 updateBackground(label, false);
223 label.setFont(labelFont);
224 label.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
225 setHeader(header, label);
226 label.addMouseListener(new MouseAdapter() {
230 toggle(label, true, mSingle)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteBlock.java 27 /** {@code >= 0;} label for this block */
28 private final int label; field in class:ByteBlock
45 * @param label {@code >= 0;} target label for this block
55 public ByteBlock(int label, int start, int end, IntList successors,
57 if (label < 0) {
58 throw new IllegalArgumentException("label < 0");
86 this.label = label;
96 return '{' + Hex.u2(label) + ": " + Hex.u2(start) + ".."
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java 27 /** {@code >= 0;} label for this block */
28 private final int label; field in class:ByteBlock
45 * @param label {@code >= 0;} target label for this block
55 public ByteBlock(int label, int start, int end, IntList successors,
57 if (label < 0) {
58 throw new IllegalArgumentException("label < 0");
86 this.label = label;
96 return '{' + Hex.u2(label) + ": " + Hex.u2(start) + ".."
    [all...]
ByteBlockList.java 50 * Gets the block with the given label.
52 * @param label the label to look for
53 * @return {@code non-null;} the block with the given label
55 public ByteBlock labelToBlock(int label) {
56 int idx = indexOfLabel(label);
59 throw new IllegalArgumentException("no such label: "
60 + Hex.u2(label));
  /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/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/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 25 #include <selinux/label.h>

Completed in 254 milliseconds

1 23 4 5 6 7 8 91011>>