HomeSort by relevance Sort by last modified time
    Searched refs:field (Results 26 - 50 of 5630) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/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/r11/platforms/android-19/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/r11/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/clang/test/Modules/Inputs/undefined-type-fixit/
public1.h 4 struct use_this1 { int field; }; member in struct:use_this1
public2.h 4 struct use_this2 { int field; }; member in struct:use_this2
public2sub.h 4 struct use_this2sub { int field; }; member in struct:use_this2sub
  /external/kernel-headers/original/uapi/asm-mips/asm/
bitfield.h 15 #define __BITFIELD_FIELD(field, more) \
16 field; \
21 #define __BITFIELD_FIELD(field, more) \
23 field;
  /external/r8/src/test/examples/memberrebinding2/subpackage/
PackagePrivateClass.java 10 public int field; field in class:PackagePrivateClass
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
FieldProperty.java 18 import java.lang.reflect.Field;
25 * a field, without going through accessor methods (setX, getX). The field may
30 private final Field field; field in class:FieldProperty
32 public FieldProperty(Field field) {
33 super(field.getName(), field.getType(), field.getGenericType())
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
PublicFinalTestVo.java 19 public PublicFinalTestVo(int field) {
20 myField = field;
  /external/libchrome/base/json/
json_value_converter.cc 11 const base::Value& value, int* field) const {
12 return value.GetAsInteger(field);
16 const base::Value& value, std::string* field) const {
17 return value.GetAsString(field);
21 const base::Value& value, string16* field) const {
22 return value.GetAsString(field);
26 const base::Value& value, double* field) const {
27 return value.GetAsDouble(field);
31 const base::Value& value, bool* field) const {
32 return value.GetAsBoolean(field);
    [all...]
  /libcore/ojluni/src/main/java/java/time/temporal/
TemporalAccessor.java 106 * Checks if the specified field is supported.
108 * This checks if the date-time can be queried for the specified field.
114 * If the field is supported, then true must be returned, otherwise false must be returned.
116 * If the field is not a {@code ChronoField}, then the result of this method
123 * @param field the field to check, null returns false
124 * @return true if this date-time can be queried for the field, false if not
126 boolean isSupported(TemporalField field);
129 * Gets the range of valid values for the specified field.
134 * If the date-time cannot return the range, because the field is unsupported or fo
    [all...]
  /external/autotest/frontend/migrations/
004_add_indexes.py 10 def get_index_name(table, field):
11 return table + '_' + field
15 for table, field in INDEXES:
17 (get_index_name(table, field), table, field))
21 for table, field in INDEXES:
23 (get_index_name(table, field), table))
007_indexes_on_acl_tables.py 8 def get_index_name(table, field):
9 return table + '_' + field
13 for table, field in INDEXES:
15 (get_index_name(table, field), table, field))
19 for table, field in INDEXES:
21 (get_index_name(table, field), table))
  /external/mockito/src/test/java/org/mockito/internal/util/reflection/
SuperTypesLastSorterTest.java 5 import java.lang.reflect.Field;
17 private static Comparator<Field> cmp = new Comparator<Field>() {
18 public int compare(Field o1, Field o2) {
23 List<Field> l = sortSuperTypesLast(Arrays.asList(o1, o2));
51 assertThat(cmp.compare(field("objectA"), field("objectB"))).isEqualTo(-1);
52 assertThat(cmp.compare(field("objectB"), field("objectA"))).isEqualTo(1)
134 private Field field(String field) throws NoSuchFieldException { method in class:SuperTypesLastSorterTest
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/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...]
  /bionic/libc/include/sys/
queue.h 107 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
108 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
109 (listelm)->field.le_next->field.le_prev = \
110 &(elm)->field.le_next; \
111 (listelm)->field.le_next = (elm); \
112 (elm)->field.le_prev = &(listelm)->field.le_next; \
115 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
  /development/ndk/platforms/android-21/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...]
  /development/ndk/platforms/android-9/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...]
  /prebuilts/ndk/r10/platforms/android-12/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...]
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/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...]
  /prebuilts/ndk/r10/platforms/android-12/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...]
  /prebuilts/ndk/r10/platforms/android-13/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...]

Completed in 1097 milliseconds

12 3 4 5 6 7 8 91011>>