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

1 2 3 4 5 6

  /external/elfutils/backends/
linux-core-note.c 41 #define FIELD(type, name) type name __attribute__ ((aligned (ALIGN_##type)))
45 FIELD (INT, si_signo);
46 FIELD (INT, si_code);
47 FIELD (INT, si_errno);
52 FIELD (ULONG, tv_sec);
53 FIELD (ULONG, tv_usec);
59 # define TIMEVAL_FIELD(name) FIELD (time, ULONG, name, 'T'|0x80, .count = 2)
61 # define TIMEVAL_FIELD(name) FIELD (time, ULONG, name, 'T', .count = 2)
68 FIELD (SHORT, pr_cursig);
69 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/i686-linux-glibc2.7-4.4.3/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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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...]
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoSimpleField.java 5 @Target(ElementType.FIELD)
AnnoFancyField.java 5 @Target(ElementType.FIELD)
AnnoArrayField.java 7 @Target({ElementType.FIELD})
ExportedProperty.java 6 @Target({ ElementType.FIELD, ElementType.METHOD })
  /external/clang/test/CodeGenCXX/
2004-06-08-LateTemplateInstantiation.cpp 6 int 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/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)
  /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)
  /sdk/common/src/com/android/annotations/
NonNull.java 19 import static java.lang.annotation.ElementType.FIELD;
30 * Denotes that a parameter, field or method return value can never be null.
36 @Target({METHOD,PARAMETER,LOCAL_VARIABLE,FIELD})
Nullable.java 19 import static java.lang.annotation.ElementType.FIELD;
30 * Denotes that a parameter, field or method return value can be null.
47 @Target({METHOD, PARAMETER, LOCAL_VARIABLE, FIELD})
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
InjectView.java 29 @Target({ ElementType.FIELD })
  /external/jsr305/ri/src/main/java/javax/annotation/concurrent/
GuardedBy.java 18 * The field or method to which this annotation is applied can only be accessed
22 * The argument determines which lock guards the annotated field or method: this :
23 * The string literal "this" means that this field is guarded by the class in
27 * object to which the field refers. field-name : The lock object is referenced
28 * by the (instance or static) field specified by field-name.
29 * class-name.field-name : The lock object is reference by the static field
30 * specified by class-name.field-name. method-name() : The lock object i
    [all...]
  /external/junit/src/org/junit/
ClassRule.java 9 * Annotates static fields that contain rules. Such a field must be public,
58 @Target({ElementType.FIELD})

Completed in 471 milliseconds

1 2 3 4 5 6