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

1 2 3 4 5 6 7 8 91011>>

  /art/test/084-class-init/src/
Exploder.java 22 public static final Object FIELD = new AssertThrower();
  /external/elfutils/src/backends/
linux-core-note.c 49 #define FIELD(type, name) type name __attribute__ ((aligned (ALIGN_##type)))
53 FIELD (INT, si_signo);
54 FIELD (INT, si_code);
55 FIELD (INT, si_errno);
60 FIELD (ULONG, tv_sec);
61 FIELD (ULONG, tv_usec);
67 # define TIMEVAL_FIELD(name) FIELD (time, ULONG, name, 'T'|0x80, .count = 2)
69 # define TIMEVAL_FIELD(name) FIELD (time, ULONG, name, 'T', .count = 2)
76 FIELD (SHORT, pr_cursig);
77 FIELD (ULONG, pr_sigpend)
    [all...]
  /external/jmonkeyengine/engine/src/core/checkers/quals/
Unused.java 3 import static java.lang.annotation.ElementType.FIELD;
7 * Declares that the field may not be accessed if the receiver is of the
14 * Consider a class, {@code Table}, with a locking field, {@code lock}. The
16 * running in a local thread, the {@code lock} field ought not to be used.
36 @Target({FIELD})
39 * The field that is annotated with @Unused may not be accessed via a
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
form.h 61 short pmin; /* index of first field on page */
62 short pmax; /* index of last field on page */
63 short smin; /* index of top leftmost field on page */
64 short smax; /* index of bottom rightmost field on page */
68 * FIELD *
79 int maxgrow; /* maximum field growth */
84 short index; /* into form -> field */
91 struct fieldnode * link; /* linked field chain */
93 struct typenode * type; /* field type */
95 FIELD_CELL * buf; /* field buffers *
128 FIELD ** field; \/* field [maxfield] *\/ member in struct:formnode
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
form.h 61 short pmin; /* index of first field on page */
62 short pmax; /* index of last field on page */
63 short smin; /* index of top leftmost field on page */
64 short smax; /* index of bottom rightmost field on page */
68 * FIELD *
79 int maxgrow; /* maximum field growth */
84 short index; /* into form -> field */
91 struct fieldnode * link; /* linked field chain */
93 struct typenode * type; /* field type */
95 FIELD_CELL * buf; /* field buffers *
149 FIELD ** field; \/* field [maxfield] *\/ member in struct:formnode
    [all...]
  /art/test/005-annotations/src/android/test/anno/
AnnoSimpleField.java 5 @Target(ElementType.FIELD)
AnnoFancyField.java 5 @Target(ElementType.FIELD)
  /external/clang/test/CodeGenCXX/
2004-06-08-LateTemplateInstantiation.cpp 6 int FIELD;
  /external/mockito/src/org/mockito/
Captor.java 38 @Target(ElementType.FIELD)
InjectMocks.java 11 import static java.lang.annotation.ElementType.FIELD;
15 * Mark a field on which injection should be performed.
40 * <li><strong>Field injection</strong>; mocks will first be resolved by type,
41 * then, if there is several property of the same type, by the match of the field name and the mock name.
76 * In the above example the field ArticleManager annotated with &#064;InjectMocks can have
86 * <p>So on the field that needs injection, for example constructor injection will happen here :</p>
109 * <p>Field injection will be used here :</p>
152 @Target(FIELD)
Spy.java 9 import static java.lang.annotation.ElementType.FIELD;
13 * Allows shorthand wrapping of field instances in an spy object.
40 * <strong>The field annotated with &#064;Spy can be initialized by Mockito if a zero argument constructor
44 * <strong>The field annotated with &#064;Spy can be initialized explicitly at declaration point.
103 @Target(FIELD)
Mock.java 11 import static java.lang.annotation.ElementType.FIELD;
15 * Mark a field as a mock.
21 * <li>Makes the verification error easier to read because the <b>field name</b> is used to identify the mock.</li>
61 @Target(FIELD)
  /libcore/luni/src/main/java/java/lang/annotation/
ElementType.java 33 * Field declaration.
35 FIELD,
  /external/proguard/examples/annotations/src/proguard/annotation/
Keep.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
KeepName.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
  /frameworks/base/core/java/android/annotation/
RequiresPermission.java 23 import static java.lang.annotation.ElementType.FIELD;
58 @Target({ANNOTATION_TYPE,METHOD,CONSTRUCTOR,FIELD})
92 @Target(FIELD)
100 @Target(FIELD)
NonNull.java 21 import static java.lang.annotation.ElementType.FIELD;
27 * Denotes that a parameter, field or method return value can never be null.
34 @Target({METHOD, PARAMETER, FIELD})
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GenerateFieldPort.java 26 @Target(ElementType.FIELD)
GenerateFinalPort.java 26 @Target(ElementType.FIELD)
GenerateProgramPort.java 26 @Target(ElementType.FIELD)
GenerateProgramPorts.java 26 @Target(ElementType.FIELD)
  /frameworks/support/annotations/src/android/support/annotation/
RequiresPermission.java 23 import static java.lang.annotation.ElementType.FIELD;
58 @Target({ANNOTATION_TYPE,METHOD,CONSTRUCTOR,FIELD})
92 @Target(FIELD)
100 @Target(FIELD)
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/src/proguard/annotation/
Keep.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
KeepName.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
  /external/guava/guava/src/com/google/common/collect/
GwtTransient.java 19 import static java.lang.annotation.ElementType.FIELD;
36 @Target(FIELD)

Completed in 606 milliseconds

1 2 3 4 5 6 7 8 91011>>