Searched defs:Field (Results 1 - 21 of 21) sorted by relevance

/openjdk7/langtools/test/tools/javac/annotations/neg/
H A DWrongTarget2.java34 class Field {{ class
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DField.java29 public interface Field { interface
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DField.java31 * for general information about Field and Method mirrors.
36 * @author Robert Field
41 public interface Field extends TypeComponent, Comparable<Field> { interface in inherits:TypeComponent,Comparable
67 * And the JDI client defines these <CODE>Field</CODE> objects:
69 * Field sField = targetClass.fieldByName("s");
70 * Field dField = targetClass.fieldByName("d");
71 * Field baField = targetClass.fieldByName("ba");</PRE>
123 * @return true if the Object is a Field and if both
130 * Returns the hash code value for this Field
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DField.java36 public class Field { class
37 Field(ClassReader cr) throws IOException { method in class:Field
44 public Field(AccessFlags access_flags, method in class:Field
H A DAccessFlags.java61 public static enum Kind { Class, InnerClass, Field, Method}; enum constant in enum:AccessFlags.Kind
131 return getModifiers(fieldModifiers, Kind.Field);
135 return getFlags(fieldFlags, Kind.Field);
202 return (t == Kind.Field ? "transient" : null);
233 return (t == Kind.Field ? "ACC_VOLATILE" : "ACC_BRIDGE");
235 return (t == Kind.Field ? "ACC_TRANSIENT" : "ACC_VARARGS");
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DStruct.java48 public final List<Field> fields;
49 public static class Field{ class in class:Struct
53 public Field(String name, NField field32, NField field64) { method in class:Struct.Field
67 this.fields = Fp.map2(new Map2<NField,NField,Field>(){
68 public Field apply(NField f32, NField f64) {
70 return new Field(f32.name, f32, f64);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DField.java70 public final class Field extends FieldOrMethod { class in inherits:FieldOrMethod
75 public Field(Field c) { method in class:Field
83 Field(DataInputStream file, ConstantPool constant_pool) method in class:Field
96 public Field(int access_flags, int name_index, int signature_index, method in class:Field
158 public final Field copy(ConstantPool constant_pool) {
159 return (Field)copy_(constant_pool);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DField.java35 not perform any type checking. Specializations of the Field
61 public interface Field { interface
88 accessing primitive fields, use the get(Type)Field accessors in
119 primitive fields, use the get(Type)Field accessors in
/openjdk7/jdk/src/share/classes/java/text/
H A DFormat.java189 * <code>Field</code>. It is up to each <code>Format</code> implementation
347 public static class Field extends AttributedCharacterIterator.Attribute { class in class:Format
353 * Creates a Field with the specified name.
357 protected Field(String name) { method in class:Format.Field
389 public void formatted(Format.Field attr, Object value, int start,
403 public void formatted(int fieldID, Format.Field attr, Object value,
H A DMessageFormat.java805 * <code>Field.ARGUMENT</code>, the location of the first formatted
880 * type <code>MessageFormat.Field</code>, their values are
1122 public static class Field extends Format.Field { class in class:MessageFormat
1128 * Creates a Field with the specified name.
1132 protected Field(String name) { method in class:MessageFormat.Field
1141 * @return resolved MessageFormat.Field constant
1144 if (this.getClass() != MessageFormat.Field.class) {
1162 public final static Field ARGUMENT =
1163 new Field("messag
[all...]
H A DDateFormat.java795 public static class Field extends Format.Field { class in class:DateFormat
802 // Maps from Calendar constant (such as Calendar.ERA) to Field
803 // constant (such as Field.ERA).
804 private static final Field[] calendarToFieldMapping =
805 new Field[Calendar.FIELD_COUNT];
811 * Returns the <code>Field</code> constant that corresponds to
814 * constant and a <code>Field</code>, null is returned.
819 * @return Field instance representing calendarField.
822 public static Field ofCalendarFiel
841 protected Field(String name, int calendarField) { method in class:DateFormat.Field
[all...]
H A DNumberFormat.java185 * Field constant used to construct a FieldPosition object. Signifies that
192 * Field constant used to construct a FieldPosition object. Signifies that
1032 public static class Field extends Format.Field { class in class:NumberFormat
1041 * Creates a Field instance with the specified
1046 protected Field(String name) { method in class:NumberFormat.Field
1048 if (this.getClass() == NumberFormat.Field.class) {
1057 * @return resolved NumberFormat.Field constant
1060 if (this.getClass() != NumberFormat.Field.class) {
1075 public static final Field INTEGE
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DField.java38 * @version $Id: Field.java,v 1.6 2010-11-01 04:39:57 joehw Exp $
40 public class Field { class
46 /** Field XPath. */
47 protected Field.XPath fXPath;
58 public Field(Field.XPath xpath, method in class:Field
62 } // <init>(Field.XPath,IdentityConstraint)
82 return new Field.Matcher(fXPath, activator, store);
99 * Field XPath.
140 * Field matche
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DField.java32 public class Field { class
34 Field(FieldIdentifier id, long offset, boolean isVMField) { method in class:Field
42 Field(InstanceKlass holder, int fieldIndex) { method in class:Field
133 if (! (obj instanceof Field)) {
137 Field other = (Field) obj;
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeConstants.java134 public static final Field YEARS = new Field("YEARS", 0);
139 public static final Field MONTHS = new Field("MONTHS", 1);
144 public static final Field DAYS = new Field("DAYS", 2);
149 public static final Field HOURS = new Field("HOURS", 3);
154 public static final Field MINUTES = new Field("MINUTE
166 public static final class Field { class in class:DatatypeConstants
185 private Field(final String str, final int id) { method in class:DatatypeConstants.Field
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DWrapperBeanGenerator.java66 private static final class RuntimeWrapperBeanGenerator extends AbstractWrapperBeanGenerator<java.lang.reflect.Type, Class, java.lang.reflect.Method, Field> {
68 protected RuntimeWrapperBeanGenerator(AnnotationReader<java.lang.reflect.Type, Class, ?, Method> annReader, Navigator<java.lang.reflect.Type, Class, ?, Method> nav, BeanMemberFactory<java.lang.reflect.Type, Field> beanMemberFactory) {
92 private static final class FieldFactory implements BeanMemberFactory<java.lang.reflect.Type, Field> {
93 public Field createWrapperBeanMember(java.lang.reflect.Type paramType,
95 return new Field(paramName, paramType, getASMType(paramType), jaxb);
103 Collection<Field> fields) throws Exception {
120 for(Field field : fields) {
127 for(Field field : fields) {
190 for(Field field : fields) {
203 for(Field fiel
344 private static class Field implements Comparable<Field> { class in class:WrapperBeanGenerator
350 Field(String paramName, java.lang.reflect.Type paramType, Type asmType, method in class:WrapperBeanGenerator.Field
[all...]
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageFile.java224 static class Field { class in class:MessageFile.Info
229 Field(String s) { method in class:MessageFile.Info.Field
244 boolean contains(Field other) {
265 void merge(Field other) {
321 List<Field> fields = new ArrayList<Field>();
329 fields = new ArrayList<Field>();
331 fields.add(new Field(seg));
351 Iterator<Field> oIter = other.fields.iterator();
352 for (Field value
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DField.java41 * A {@code Field} provides information about, and dynamic access to, a
45 * <p>A {@code Field} permits widening conversions to occur during a get or
60 class Field extends AccessibleObject implements Member { class in inherits:AccessibleObject,Member
79 // currently only two levels deep (i.e., one root Field and
80 // potentially many Field objects pointing to it.)
81 private Field root;
111 Field(Class<?> declaringClass, method in class:Field
130 * ReflectAccess) which returns a copy of this Field. The copy's
131 * "root" field points to this Field.
133 Field cop
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.hpp53 // - Field (-F>) from JO to OF
146 Field = 3, enumerator in enum:PointsToNode::__anon313
185 bool is_Field() const { return _type == (u1)Field; }
261 const int _offset; // Field's offset.
262 const bool _is_oop; // Field points to object
266 PointsToNode(C, n, es, Field),
478 // Add an edge from Field node to its base and back.
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java211 ArrayList<Field> fields;
235 List<Field> getFields() { return fields == null ? noFields : fields; }
534 class Field extends Member { class in class:Package.Class
538 public Field(int flags, DescriptorEntry descriptor) { method in class:Package.Class.Field
553 Field that = (Field)o;
1169 for (Iterator<Class.Field> j = c.fields.iterator(); j.hasNext(); ) {
1170 Class.Field f = j.next();
1319 static final List<Class.Field> noFields = Arrays.asList(new Class.Field[
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java1416 public final List<Field> fields = new CountedList<>(Field.class);
1497 public static class Field extends Member { class in class:Indify

Completed in 110 milliseconds