/external/clang/test/Index/ |
in-class-init.cpp | 2 int field = 2; member in struct:S 6 // CHECK: 2:7: FieldDecl=field:2:7 (Definition) Extent=[2:3 - 2:16]
|
/external/clang/test/CodeGen/ |
2005-03-05-OffsetOfHack.c | 4 unsigned long int field[0]; member in struct:s 8 (((char *) &((struct s *) 0)->field[0]) - (char *) 0)
|
/external/clang/test/CodeGenCXX/ |
pr11676.cpp | 15 union U { int field; } u = U(); member in union:U 16 (void)U().field;
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_field_unittest.cc | 17 // Returns a FormFieldData object corresponding to a <select> field populated 34 AutofillField field; local 35 ASSERT_EQ(NO_SERVER_DATA, field.server_type()); 36 ASSERT_EQ(UNKNOWN_TYPE, field.heuristic_type()); 39 EXPECT_EQ(UNKNOWN_TYPE, field.Type().GetStorableType()); 42 field.set_heuristic_type(NAME_FIRST); 43 EXPECT_EQ(NAME_FIRST, field.Type().GetStorableType()); 44 EXPECT_EQ(NAME, field.Type().group()); 47 field.set_server_type(ADDRESS_BILLING_LINE1); 48 EXPECT_EQ(ADDRESS_HOME_LINE1, field.Type().GetStorableType()) 58 AutofillField field; local 70 AutofillField field; local 95 AutofillField field; local 117 AutofillField field; local 336 AutofillField field; local 353 AutofillField field; local 363 AutofillField field; local [all...] |
form_structure_unittest.cc | 70 FormFieldData field; local 71 field.label = ASCIIToUTF16("username"); 72 field.name = ASCIIToUTF16("username"); 73 field.form_control_type = "text"; 74 form.fields.push_back(field); 76 field.label = ASCIIToUTF16("password"); 77 field.name = ASCIIToUTF16("password"); 78 field.form_control_type = "password"; 79 form.fields.push_back(field); 81 field.label = base::string16() 103 FormFieldData field; local 161 FormFieldData field; local 236 FormFieldData field; local 321 FormFieldData field; local 390 FormFieldData field; local 431 FormFieldData field; local 475 FormFieldData field; local 523 FormFieldData field; local 587 FormFieldData field; local 631 FormFieldData field; local 661 FormFieldData field; local 698 FormFieldData field; local 776 FormFieldData field; local 839 FormFieldData field; local 905 FormFieldData field; local 960 FormFieldData field; local 1023 FormFieldData field; local 1064 FormFieldData field; local 1108 FormFieldData field; local 1151 FormFieldData field; local 1185 FormFieldData field; local 1220 FormFieldData field; local 1292 FormFieldData field; local 1340 FormFieldData field; local 1389 FormFieldData field; local 1444 FormFieldData field; local 1567 FormFieldData field; local 1725 FormFieldData field; local 1849 FormFieldData field; local 2103 FormFieldData field; local 2209 FormFieldData field; local 2280 FormFieldData field; local 2311 FormFieldData field; local [all...] |
/external/chromium/chrome/browser/autofill/ |
autofill_field_unittest.cc | 14 AutofillField field; local 15 ASSERT_EQ(NO_SERVER_DATA, field.server_type()); 16 ASSERT_EQ(UNKNOWN_TYPE, field.heuristic_type()); 19 EXPECT_EQ(UNKNOWN_TYPE, field.type()); 22 field.set_heuristic_type(NAME_FIRST); 23 EXPECT_EQ(NAME_FIRST, field.type()); 26 field.set_server_type(ADDRESS_BILLING_LINE1); 27 EXPECT_EQ(ADDRESS_BILLING_LINE1, field.type()); 30 field.set_server_type(NO_SERVER_DATA); 31 EXPECT_EQ(NAME_FIRST, field.type()) 35 AutofillField field; local 47 AutofillField field; local 72 AutofillField field; local [all...] |
form_field_unittest.cc | 13 AutofillField field; local 16 EXPECT_TRUE(FormField::Match(&field, string16(), true)); 19 field.label = ASCIIToUTF16("a"); 20 EXPECT_TRUE(FormField::Match(&field, string16(), true)); 23 field.label = ASCIIToUTF16(""); 24 EXPECT_TRUE(FormField::Match(&field, ASCIIToUTF16("^$"), true)); 27 field.label = ASCIIToUTF16("a"); 28 EXPECT_FALSE(FormField::Match(&field, ASCIIToUTF16("^$"), true)); 31 field.label = string16(); 32 EXPECT_FALSE(FormField::Match(&field, ASCIIToUTF16("a"), true)) [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
pda.h | 57 #define pda_offset(field) offsetof(struct x8664_pda, field) 59 #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...] |
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
pda.h | 57 #define pda_offset(field) offsetof(struct x8664_pda, field) 59 #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...] |
/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...] |
/prebuilts/ndk/4/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...] |
/prebuilts/ndk/4/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...] |
/prebuilts/ndk/6/platforms/android-9/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...] |
/prebuilts/ndk/7/platforms/android-14/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...] |
/prebuilts/ndk/7/platforms/android-9/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...] |
/prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/ |
pda.h | 57 #define pda_offset(field) offsetof(struct x8664_pda, field) 59 #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...] |
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/ |
pda.h | 57 #define pda_offset(field) offsetof(struct x8664_pda, field) 59 #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...] |
/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/asm/ |
pda.h | 57 #define pda_offset(field) offsetof(struct x8664_pda, field) 59 #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...] |
/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/asm/ |
pda.h | 57 #define pda_offset(field) offsetof(struct x8664_pda, field) 59 #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...] |
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/ |
pda.h | 57 #define pda_offset(field) offsetof(struct x8664_pda, field) 59 #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...] |
/external/qemu/ |
qemu-queue.h | 103 #define QLIST_INSERT_AFTER(listelm, elm, field) do { \ 104 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \ 105 (listelm)->field.le_next->field.le_prev = \ 106 &(elm)->field.le_next; \ 107 (listelm)->field.le_next = (elm); \ 108 (elm)->field.le_prev = &(listelm)->field.le_next; \ 111 #define QLIST_INSERT_BEFORE(listelm, elm, field) do { [all...] |
/external/mockito/src/org/mockito/internal/util/reflection/ |
FieldSetter.java | 7 import java.lang.reflect.Field;
12 private final Field field;
field in class:FieldSetter 14 public FieldSetter(Object target, Field field) {
16 this.field = field;
21 changer.enableAccess(field);
23 field.set(target, value);
25 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e); [all...] |
/external/openssh/openbsd-compat/ |
sys-queue.h | 198 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) 200 #define SLIST_FOREACH(var, head, field) \ 203 (var) = SLIST_NEXT(var, field)) 205 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ 208 (varp) = &SLIST_NEXT((var), field)) 217 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ 218 (elm)->field.sle_next = (slistelm)->field.sle_next; \ 219 (slistelm)->field.sle_next = (elm); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
compat-queue.h | 127 #define SLIST_FOREACH(var, head, field) \ 130 (var) = SLIST_NEXT((var), field)) 132 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ 134 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \ 137 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ 140 (varp) = &SLIST_NEXT((var), field)) 146 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ 147 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \ 148 SLIST_NEXT((slistelm), field) = (elm); [all...] |
/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...] |