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

1 2 3 4 5 6 7 8 91011>>

  /art/test/636-wrong-static-access/src/
Holder.java 18 public static int field = 42; field in class:Holder
  /art/test/636-wrong-static-access/src2/
Holder.java 18 public int field = 42; field in class:Holder
  /external/annotation-tools/scene-lib/src/annotations/field/
package-info.java 2 * <code>annotations.field</code> provides classes that store the types of
5 package annotations.field;
ScalarAFT.java 1 package annotations.field;
6 * language's prohibition of multidimensional arrays as annotation field types.
  /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]
  /hardware/intel/img/psb_video/src/hwdefs/
mem_io.h 93 This macro is used to extract a field from a packed memory based structure.
97 @Input field: The name of the field to be extracted.
99 @Return IMG_UINT32: The value of the field - right aligned.
102 IMG_UINT32 MEMIO_READ_FIELD(IMG_VOID * vpMem, field);
111 This macro is used to extract the value of a field in a table in a packed
116 @Input field: The name of the field to be extracted.
118 @Input ui32TabIndex: The table index of the field to be extracted.
120 @Return IMG_UINT32: The value of the field - right aligned
    [all...]
  /bionic/libc/kernel/uapi/asm-mips/asm/
bitfield.h 21 #define __BITFIELD_FIELD(field,more) more field;
  /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)
  /libcore/libart/src/main/java/java/lang/invoke/
FieldVarHandle.java 19 import java.lang.reflect.Field;
29 private FieldVarHandle(Field field, Class<?> declaringClass) {
30 super(field.getType(), Modifier.isFinal(field.getModifiers()), declaringClass);
31 artField = field.getArtField();
34 private FieldVarHandle(Field field) {
35 super(field.getType(), Modifier.isFinal(field.getModifiers()))
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/temporal/
MockFieldValue.java 69 * Mock simple date-time with one field-value.
73 private final TemporalField field; field in class:MockFieldValue
76 public MockFieldValue(TemporalField field, long value) {
77 this.field = field;
82 public boolean isSupported(TemporalField field) {
83 return field != null && field.equals(this.field);
87 public ValueRange range(TemporalField field) {
    [all...]
  /external/annotation-tools/annotation-file-utilities/tests/
FieldSimple.java 4 private Integer field; field in class:FieldSimple
FieldSimpleArray.java 4 Integer[] field; field in class:FieldSimpleArray
  /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 16 #define __BITFIELD_FIELD(field, more) \
17 field; \
22 #define __BITFIELD_FIELD(field, more) \
24 field;
  /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))
118_add_hqe_indices.py 11 def get_index_name(table, field):
12 """Formats the index name from a |table| and |field|."""
13 return table + '_' + field
18 for table, field in INDICES:
20 (get_index_name(table, field), table, field))
25 for table, field in INDICES:
27 (get_index_name(table, field), table))
  /external/mockito/src/test/java/org/mockito/internal/util/reflection/
SuperTypesLastSorterTest.java 9 import java.lang.reflect.Field;
21 private static Comparator<Field> cmp = new Comparator<Field>() {
22 public int compare(Field o1, Field o2) {
27 List<Field> l = sortSuperTypesLast(Arrays.asList(o1, o2));
55 assertThat(cmp.compare(field("objectA"), field("objectB"))).isEqualTo(-1);
56 assertThat(cmp.compare(field("objectB"), field("objectA"))).isEqualTo(1)
138 private Field field(String field) throws NoSuchFieldException { method in class:SuperTypesLastSorterTest
    [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...]

Completed in 430 milliseconds

1 2 3 4 5 6 7 8 91011>>