HomeSort by relevance Sort by last modified time
    Searched full:field (Results 1 - 25 of 5019) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/035-enum/
expected.txt 1 found field CRAWLING
  /frameworks/base/docs/html/sdk/api_diff/6/
missingSinces.txt 1 NO DOC BLOCK: android.os.Build.VERSION_CODES Field ECLAIR_0_1
2 NO DOC BLOCK: android.R.attr Field quickContactBadgeStyleSmallWindowLarge
3 NO DOC BLOCK: android.R.attr Field quickContactBadgeStyleSmallWindowMedium
4 NO DOC BLOCK: android.R.attr Field quickContactBadgeStyleSmallWindowSmall
5 NO DOC BLOCK: android.R.attr Field quickContactBadgeStyleWindowLarge
6 NO DOC BLOCK: android.R.attr Field quickContactBadgeStyleWindowMedium
7 NO DOC BLOCK: android.R.attr Field quickContactBadgeStyleWindowSmall
  /dalvik/tests/073-mismatched-field/
info.txt 1 Test behavior when an instance field is overlapped (through separate
2 compilation) by a static field. The VM is expected to detect the conflict
3 and throw an IncompatibleClassChangeError when the field is accessed.
  /bionic/libc/kernel/arch-x86/asm/
pda.h 47 #define pda_offset(field) offsetof(struct x8664_pda, field)
49 #define pda_to_op(op,field,val) do { typedef typeof(_proxy_pda.field) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(_proxy_pda.field)) { case 2: asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; case 4: asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i" (pda_offset(field))); break; case 8: asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; default: __bad_pda_field(); } } (…)
    [all...]
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
pda.h 47 #define pda_offset(field) offsetof(struct x8664_pda, field)
49 #define pda_to_op(op,field,val) do { typedef typeof(_proxy_pda.field) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(_proxy_pda.field)) { case 2: asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; case 4: asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i" (pda_offset(field))); break; case 8: asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; default: __bad_pda_field(); } } (…)
    [all...]
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
pda.h 47 #define pda_offset(field) offsetof(struct x8664_pda, field)
49 #define pda_to_op(op,field,val) do { typedef typeof(_proxy_pda.field) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(_proxy_pda.field)) { case 2: asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; case 4: asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i" (pda_offset(field))); break; case 8: asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; default: __bad_pda_field(); } } (…)
    [all...]
  /dalvik/tests/035-enum/src/
Main.java 3 import java.lang.reflect.Field;
12 Field field; local
14 field = Shubbery.class.getDeclaredField("CRAWLING");
19 System.out.println("found field " + field.getName());
20 System.out.println(" synthetic? " + field.isSynthetic());
21 System.out.println(" enum? " + field.isEnumConstant());
  /external/qemu/
sys-tree.h 86 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
87 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
92 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
93 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
94 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
98 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
99 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field);
    [all...]
sys-queue.h 95 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
96 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
97 (listelm)->field.le_next->field.le_prev = \
98 &(elm)->field.le_next; \
99 (listelm)->field.le_next = (elm); \
100 (elm)->field.le_prev = &(listelm)->field.le_next; \
103 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
DataFormatFieldTest.java 35 import java.text.DateFormat.Field;
38 @TestTargetClass(DateFormat.Field.class)
44 method = "Field",
49 MyField field = new MyField("day of month", Calendar.ERA); local
51 assertEquals("field has wrong name", "day of month", field.getName());
52 assertEquals("field has wrong Calendar field number", Calendar.ERA,
53 field.getCalendarField());
55 DateFormat.Field realField = DateFormat.Fiel
88 MyField field = new MyField("a field", Calendar.DAY_OF_WEEK); local
110 MyField field = new MyField("day of month", Calendar.ERA); local
224 MyField field; local
    [all...]
Support_SimpleDateFormat.java 23 import java.text.DateFormat.Field;
73 // test if field positions are set correctly for these fields occuring
75 t_FormatWithField(0, format, date, null, Field.ERA, 0, 2);
76 t_FormatWithField(1, format, date, null, Field.YEAR, 15, 17);
77 t_FormatWithField(2, format, date, null, Field.MONTH, 26, 27);
78 t_FormatWithField(3, format, date, null, Field.DAY_OF_MONTH, 45, 47);
79 t_FormatWithField(4, format, date, null, Field.HOUR_OF_DAY1, 55, 57);
80 t_FormatWithField(5, format, date, null, Field.HOUR_OF_DAY0, 65, 67);
81 t_FormatWithField(6, format, date, null, Field.HOUR1, 75, 76);
82 t_FormatWithField(7, format, date, null, Field.MINUTE, 84, 86)
    [all...]
  /dalvik/tests/069-field-type/src/
Holder.java 3 * Simple class with one field.
  /packages/apps/Email/src/org/apache/james/mime4j/field/
DefaultFieldParser.java 16 package org.apache.james.mime4j.field;
21 setFieldParser(Field.CONTENT_TRANSFER_ENCODING, new ContentTransferEncodingField.Parser());
22 setFieldParser(Field.CONTENT_TYPE, new ContentTypeField.Parser());
25 setFieldParser(Field.DATE, dateTimeParser);
26 setFieldParser(Field.RESENT_DATE, dateTimeParser);
29 setFieldParser(Field.FROM, mailboxListParser);
30 setFieldParser(Field.RESENT_FROM, mailboxListParser);
33 setFieldParser(Field.SENDER, mailboxParser);
34 setFieldParser(Field.RESENT_SENDER, mailboxParser);
37 setFieldParser(Field.TO, addressListParser);
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/4/
missingSinces.txt 109 NO DOC BLOCK: android.provider.Settings.Secure Field ACCESSIBILITY_ENABLED
110 NO DOC BLOCK: android.content.Context Field ACCESSIBILITY_SERVICE
111 NO DOC BLOCK: android.content.Intent Field ACTION_BATTERY_OKAY
112 NO DOC BLOCK: android.content.Intent Field ACTION_POWER_CONNECTED
113 NO DOC BLOCK: android.content.Intent Field ACTION_POWER_DISCONNECTED
114 NO DOC BLOCK: android.content.Intent Field ACTION_POWER_USAGE_SUMMARY
115 NO DOC BLOCK: android.content.Intent Field ACTION_SEND_MULTIPLE
116 NO DOC BLOCK: android.content.Intent Field ACTION_SHUTDOWN
117 NO DOC BLOCK: android.R.attr Field allowBackup
118 NO DOC BLOCK: android.R.anim Field anticipate_interpolato
    [all...]
  /external/kernel-headers/original/asm-x86/
pda.h 58 #define pda_offset(field) offsetof(struct x8664_pda, field)
60 #define pda_to_op(op,field,val) do { \
61 typedef typeof(_proxy_pda.field) T__; \
63 switch (sizeof(_proxy_pda.field)) { \
66 "+m" (_proxy_pda.field) : \
68 "i"(pda_offset(field))); \
72 "+m" (_proxy_pda.field) : \
74 "i" (pda_offset(field))); \
78 "+m" (_proxy_pda.field) :
    [all...]
  /external/webkit/WebCore/manual-tests/resources/
TestApplet.java 5 public int field; field in class:TestApplet
9 field = MAGIC_NUMBER;
  /bionic/libc/include/sys/
queue.h 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
  /ndk/build/platforms/android-8/arch-arm/usr/include/sys/
queue.h 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
  /ndk/build/platforms/android-8/arch-x86/usr/include/sys/
queue.h 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
  /external/ipsec-tools/src/include-glibc/sys/
queue.h 129 #define SLIST_FOREACH(var, head, field) \
132 (var) = SLIST_NEXT((var), field))
138 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
139 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
140 SLIST_NEXT((slistelm), field) = (elm); \
143 #define SLIST_INSERT_HEAD(head, elm, field) do { \
144 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
148 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_DecimalFormat.java 47 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY,
49 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER,
52 NumberFormat.Field.GROUPING_SEPARATOR, 3, 4);
54 NumberFormat.Field.DECIMAL_SEPARATOR, 11, 12);
55 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION,
59 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0,
61 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT,
64 NumberFormat.Field.EXPONENT_SIGN, 0, 0);
66 NumberFormat.Field.EXPONENT_SYMBOL, 0, 0);
67 t_FormatWithField(9, format, number, text, NumberFormat.Field.PERCENT
    [all...]
Support_SimpleDateFormat.java 23 import java.text.DateFormat.Field;
70 // test if field positions are set correctly for these fields occuring
72 t_FormatWithField(0, format, date, null, Field.ERA, 0, 2);
73 t_FormatWithField(1, format, date, null, Field.YEAR, 6, 8);
74 t_FormatWithField(2, format, date, null, Field.MONTH, 17, 18);
75 t_FormatWithField(3, format, date, null, Field.DAY_OF_MONTH, 36, 38);
76 t_FormatWithField(4, format, date, null, Field.HOUR_OF_DAY1, 46, 48);
77 t_FormatWithField(5, format, date, null, Field.HOUR_OF_DAY0, 56, 58);
78 t_FormatWithField(6, format, date, null, Field.HOUR1, 66, 67);
79 t_FormatWithField(7, format, date, null, Field.MINUTE, 75, 77)
    [all...]
  /frameworks/base/api/
8.xml 37 <field name="ACCESS_CHECKIN_PROPERTIES"
47 </field>
48 <field name="ACCESS_COARSE_LOCATION"
58 </field>
59 <field name="ACCESS_FINE_LOCATION"
69 </field>
70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS"
80 </field>
81 <field name="ACCESS_MOCK_LOCATION"
91 </field>
    [all...]
current.xml 37 <field name="ACCESS_CHECKIN_PROPERTIES"
47 </field>
48 <field name="ACCESS_COARSE_LOCATION"
58 </field>
59 <field name="ACCESS_FINE_LOCATION"
69 </field>
70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS"
80 </field>
81 <field name="ACCESS_MOCK_LOCATION"
91 </field>
    [all...]
7.xml 37 <field name="ACCESS_CHECKIN_PROPERTIES"
47 </field>
48 <field name="ACCESS_COARSE_LOCATION"
58 </field>
59 <field name="ACCESS_FINE_LOCATION"
69 </field>
70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS"
80 </field>
81 <field name="ACCESS_MOCK_LOCATION"
91 </field>
    [all...]

Completed in 1682 milliseconds

1 2 3 4 5 6 7 8 91011>>