Searched defs:fields (Results 51 - 75 of 82) sorted by relevance

1234

/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DLLNI.java62 List<VariableElement> fields; field in class:LLNI
80 fields = ElementFilter.fieldsIn(clazz.getEnclosedElements());
149 for (VariableElement field: fields) {
265 List<VariableElement> fields = ElementFilter.fieldsIn(clazz.getEnclosedElements());
267 for (VariableElement field: fields) {
301 List<VariableElement> fields = ElementFilter.fieldsIn(clazz.getEnclosedElements());
303 for (VariableElement field: fields) {
328 /* OVERRIDE: This method handles instance fields */
351 * This method only handles static final fields.
370 /* Can only handle int, long, float, and double fields
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_reference.c216 dump_field(FieldInfo *fields, jvalue *fvalues, int n_fields, argument
223 cnum = fields[index].cnum;
224 name = fields[index].name_index;
225 sig = fields[index].sig_index;
231 if ( fields[index].primType!=0 || fields[index].primType!=primType ) {
233 fields[index].primType,
234 primTypeToSigChar(fields[index].primType));
235 if ( primType != fields[index].primType ) {
252 /* Dump all the fields o
254 dump_fields(RefIndex list, FieldInfo *fields, jvalue *fvalues, int n_fields) argument
269 verify_field(RefIndex list, FieldInfo *fields, jvalue *fvalues, int n_fields, jint index, jvalue value, jvmtiPrimitiveType primType) argument
295 fill_in_field_value(RefIndex list, FieldInfo *fields, jvalue *fvalues, int n_fields, jint index, jvalue value, jvmtiPrimitiveType primType) argument
322 FieldInfo *fields; local
516 FieldInfo *fields; local
[all...]
H A Dhprof_io.c1538 jint n_fields, FieldInfo *fields, jvalue *fvalues)
1554 if ( fields[i].cnum == cnum &&
1555 is_static_field(fields[i].modifiers) ) {
1558 field_name = string_get(fields[i].name_index);
1562 if ( is_inst_field(fields[i].modifiers) ) {
1563 inst_size += size_from_field_info(fields[i].primSize);
1564 if ( fields[i].cnum == cnum ) {
1567 field_name = string_get(fields[i].name_index);
1575 * through the fields, matches what is saved away with this
1613 if ( fields[
1532 io_heap_class_dump(ClassIndex cnum, char *sig, ObjectIndex class_id, SerialNumber trace_serial_num, ObjectIndex super_id, ObjectIndex loader_id, ObjectIndex signers_id, ObjectIndex domain_id, jint size, jint n_cpool, ConstantPoolValue *cpool, jint n_fields, FieldInfo *fields, jvalue *fvalues) argument
1699 dump_instance_fields(ClassIndex cnum, FieldInfo *fields, jvalue *fvalues, jint n_fields) argument
1730 io_heap_instance_dump(ClassIndex cnum, ObjectIndex obj_id, SerialNumber trace_serial_num, ObjectIndex class_id, jint size, char *sig, FieldInfo *fields, jvalue *fvalues, jint n_fields) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGraphicsPrimitive.java585 public static String simplename(Field[] fields, Object o) { argument
586 for (int i = 0; i < fields.length; i++) {
587 Field f = fields[i];
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DJavaClass.java73 * fields, methods and commands contained in a Java .class file.
97 private Field[] fields; // Fields, i.e., variables of class field in class:JavaClass
130 * @param fields Class fields
143 Field[] fields,
152 if(fields == null)
153 fields = new Field[0];
165 this.fields = fields;
218 * @param fields Clas
135 JavaClass(int class_name_index, int superclass_name_index, String file_name, int major, int minor, int access_flags, ConstantPool constant_pool, int[] interfaces, Field[] fields, Method[] methods, Attribute[] attributes, byte source) argument
222 JavaClass(int class_name_index, int superclass_name_index, String file_name, int major, int minor, int access_flags, ConstantPool constant_pool, int[] interfaces, Field[] fields, Method[] methods, Attribute[] attributes) argument
504 setFields(Field[] fields) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DObjectStreamClass_1_3_1.java69 * is used, but some of the fields no longer exist in the class itself.
242 * Return an array of the fields of this serializable class.
245 * there are no fields.
249 // Return a copy so the caller can't change the fields.
250 if (fields.length > 0) {
251 ObjectStreamField[] dup = new ObjectStreamField[fields.length];
252 System.arraycopy(fields, 0, dup, 0, fields.length);
255 return fields;
261 for (int i = 0; i < fields
1075 private ObjectStreamField[] fields; field in class:ObjectStreamClass_1_3_1
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DReferenceTypeImpl.java237 public final List fields() throws ClassNotPreparedException { method in class:ReferenceTypeImpl
238 List fields = (fieldsCache != null)? (List) fieldsCache.get() : null;
239 if (fields == null) {
242 fields = new ArrayList(0);
249 fields = new ArrayList(len);
253 fields.add(new FieldImpl(vm, this, curField));
257 fields = Collections.unmodifiableList(fields);
258 fieldsCache = new SoftReference(fields);
260 return fields;
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DVisibleMemberMap.java451 members = cd.fields(filter);
531 final FieldDoc[] allFields = cd.fields();
638 private FieldDoc fieldForProperty(FieldDoc[] fields, MethodDoc property) { argument
640 for (FieldDoc field : fields) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DClassDocImpl.java538 * Return fields in class.
539 * @param filter include only the included fields if filter==true
541 public FieldDoc[] fields(boolean filter) { method in class:ClassDocImpl
542 return fields(filter, false);
546 * Return included fields in class.
548 public FieldDoc[] fields() { method in class:ClassDocImpl
549 return fields(true, false);
556 return fields(false, true);
560 * Return fields in class.
561 * @param filter if true, return only the included fields
564 private FieldDoc[] fields(boolean filter, boolean enumConstants) { method in class:ClassDocImpl
[all...]
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h703 * Returns the number of *declared* fields or methods.
989 unsigned int fields; member in struct:__anon580
992 unsigned int fields2; /* number of static 2-word fields */
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DIIOPInputStream.java112 // Necessary to pass the appropriate fields into the
118 // This is only used in the case where the fields had
162 // Serialization machinery fields
345 * of the non-transient and non-static fields of the class and all
351 * The root object is completly restored when all of its fields
550 * Read the non-static and non-transient fields of the current class
570 // The array will be null unless fields were retrieved
578 // these fields actually have to do this, too?
585 // Use the remote fields to unmarshal.
594 // Use the local fields t
2209 inputClassFields(Object o, Class cl, ObjectStreamField[] fields, com.sun.org.omg.SendingContext.CodeBase sender) argument
2273 inputClassFields(Object o, Class cl, ObjectStreamClass osc, ValueMember[] fields, com.sun.org.omg.SendingContext.CodeBase sender) argument
2395 skipCustomUsingFVD(ValueMember[] fields, com.sun.org.omg.SendingContext.CodeBase sender) argument
2417 throwAwayData(ValueMember[] fields, com.sun.org.omg.SendingContext.CodeBase sender) argument
[all...]
H A DObjectStreamClass.java259 * Return an array of the fields of this serializable class.
262 * there are no fields.
266 // Return a copy so the caller can't change the fields.
267 if (fields.length > 0) {
268 ObjectStreamField[] dup = new ObjectStreamField[fields.length];
269 System.arraycopy(fields, 0, dup, 0, fields.length);
272 return fields;
279 for (int i = 0; i < fields.length; i++) {
280 if (fields[
420 translateFields( java.io.ObjectStreamField[] fields) argument
1488 private ObjectStreamField[] fields; field in class:ObjectStreamClass
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DInstanceKlass.java71 fields = new OopField(type.getOopField("_fields"), Oop.getHeaderSize());
129 private static OopField fields; field in class:InstanceKlass
315 TypeArray fields = getFields();
316 return VM.getVM().buildIntFromShorts(fields.getShortAt(index * FIELD_SLOTS + LOW_OFFSET),
317 fields.getShortAt(index * FIELD_SLOTS + HIGH_OFFSET));
320 // Accessors for declared fields
326 public TypeArray getFields() { return (TypeArray) fields.getValue(this); }
544 visitor.doOop(fields, true);
562 * Visit the static fields of this InstanceKlass with the obj of
563 * the visitor set to the oop holding the fields, whic
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHeapHprofBinWriter.java240 * u2 number of static fields
245 * u2 number of inst. fields (not inc. super)
482 // two reserved id fields
485 List fields = getInstanceFields(ik);
486 int instSize = getSizeForFields(fields);
487 classDataCache.put(ik, new ClassData(instSize, fields));
531 // two reserved id fields
539 // no static fields for array klasses
541 // no instance fields for array klasses
726 List fields
736 writeFieldDescriptors(List fields, InstanceKlass ik) argument
940 getSizeForFields(List fields) argument
1007 List fields; field in class:HeapHprofBinWriter.ClassData
1008 ClassData(int instSize, List fields) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DMetaData.java853 Field fields[] = cls.getFields();
854 for(int i = 0; i < fields.length; i++) {
855 Field field = fields[i];
1284 private static final Map<String,Field> fields = Collections.synchronizedMap(new WeakHashMap<String, Field>()); field in class:MetaData
1421 Field field = fields.get(name);
1441 fields.put(name, field);
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectStreamClass.java74 /** serialPersistentFields value indicating no serializable fields */
163 /** serializable fields */
164 private ObjectStreamField[] fields; field in class:ObjectStreamClass
165 /** aggregate marshalled size of primitive fields */
167 /** number of non-primitive fields */
279 * Return an array of the fields of this serializable class.
283 * fields.
472 fields = NO_FIELDS;
476 fields = NO_FIELDS;
482 fields
1863 private final ObjectStreamField[] fields; field in class:ObjectStreamClass.FieldReflector
1884 FieldReflector(ObjectStreamField[] fields) argument
2110 getReflector(ObjectStreamField[] fields, ObjectStreamClass localDesc) argument
2180 FieldReflectorKey(Class<?> cl, ObjectStreamField[] fields, ReferenceQueue<Class<?>> queue) argument
2227 matchFields(ObjectStreamField[] fields, ObjectStreamClass localDesc) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DReferenceTypeImpl.java113 // Fetch all fields for the class, check performance impact
114 // Needs no synchronization now, since fields() returns
116 Iterator it = fields().iterator();
305 public List<Field> fields() { method in class:ReferenceTypeImpl
306 List<Field> fields = (fieldsRef == null) ? null : fieldsRef.get();
307 if (fields == null) {
315 fields = new ArrayList<Field>(jdwpFields.length);
324 fields.add(field);
334 fields = new ArrayList<Field>(jdwpFields.length);
342 fields
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp173 struct fields { struct in class:TaskQueueSuper::Age
179 fields _fields;
/openjdk7/jdk/src/share/classes/java/lang/
H A DClass.java1358 * the accessible public fields of the class or interface represented by
1362 * fields, or if it represents an array class, a primitive type, or void.
1365 * this method returns the public fields of this class and of all its
1367 * interface, this method returns the fields of this interface and of all
1377 * public fields
1387 * access to the fields within this class
1756 * Returns an array of {@code Field} objects reflecting all the fields
1759 * (package) access, and private fields, but excludes inherited fields.
1762 * or interface declares no fields, o
2692 searchFields(Field[] fields, String name) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DCalendar.java63 * #fields calendar fields} such as <code>YEAR</code>, <code>MONTH</code>,
65 * manipulating the calendar fields, such as getting the date of the next
70 * <p>The class also provides additional fields and methods for
72 * fields and methods are defined as <code>protected</code>.
79 * calendar fields have been initialized with the current date and time:
90 * certain calendar fields, as well as their meaning. For example,
101 * the Epoch) or values of the calendar fields. Calling the
108 * fields, <em>lenient</em> and <em>non-lenient</em>. When a
112 * the calendar fields ar
753 protected int fields[]; field in class:Calendar
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp100 const Type **fields = TypeTuple::fields(2); local
101 fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // address of osr buffer
103 return TypeTuple::make(TypeFunc::Parms+1, fields);
619 // Construct projections for control, I/O, memory-fields, ..., and
1135 st->print(" # fields@[%d..%d]", first_index(),
H A Dcallnode.hpp204 uint _scloff; // Offset to fields of scalar objs in input edge mapping
452 // states of the scalarized object fields are collected.
453 uint _n_fields; // Number of non-static fields of the scalarized object.
752 const Type** fields = TypeTuple::fields(ParmLimit - TypeFunc::Parms); local
753 fields[AllocSize] = TypeInt::POS;
754 fields[KlassNode] = TypeInstPtr::NOTNULL;
755 fields[InitialTest] = TypeInt::BOOL;
756 fields[ALength] = TypeInt::INT; // length (can be a bad length)
758 const TypeTuple *domain = TypeTuple::make(ParmLimit, fields);
943 const Type **fields = TypeTuple::fields(3); local
[all...]
H A Druntime.cpp449 const Type **fields = TypeTuple::fields(1); local
450 fields[TypeFunc::Parms+0] = TypeInstPtr::NOTNULL; // Klass to be allocated
451 const TypeTuple *domain = TypeTuple::make(TypeFunc::Parms+1, fields);
454 fields = TypeTuple::fields(1);
455 fields[TypeFunc::Parms+0] = TypeRawPtr::NOTNULL; // Returned oop
457 const TypeTuple *range = TypeTuple::make(TypeFunc::Parms+1, fields);
465 const Type **fields = TypeTuple::fields( local
480 const Type **fields = TypeTuple::fields(2); local
497 const Type **fields = TypeTuple::fields(nargs); local
529 const Type **fields = TypeTuple::fields(2); local
543 const Type **fields = TypeTuple::fields(2); local
557 const Type **fields = TypeTuple::fields(2); local
571 const Type **fields = TypeTuple::fields(1); local
588 const Type **fields = TypeTuple::fields(0); local
604 const Type **fields = TypeTuple::fields(2); local
621 const Type **fields = TypeTuple::fields(2); local
636 const Type** fields = TypeTuple::fields(1); local
650 const Type **fields = TypeTuple::fields(2); local
664 const Type **fields = TypeTuple::fields(2); local
680 const Type **fields = TypeTuple::fields(2); local
696 const Type **fields = TypeTuple::fields(4); local
716 const Type **fields = TypeTuple::fields(0); local
742 const Type** fields = TypeTuple::fields(argcnt); local
798 const Type** fields = TypeTuple::fields(3 LP64_ONLY( + 1)); local
819 const Type** fields = TypeTuple::fields(argcnt); local
839 const Type** fields = TypeTuple::fields(argcnt); local
859 const Type **fields = TypeTuple::fields(1); local
875 const Type **fields = TypeTuple::fields(2); local
1132 const Type **fields = TypeTuple::fields(1); local
1177 const Type **fields = TypeTuple::fields(1); local
1196 const Type **fields = TypeTuple::fields(2); local
1211 const Type **fields = TypeTuple::fields(2); local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java79 // These fields can be adjusted by driver properties.
211 ArrayList<Field> fields; field in class:Package.Class
235 List<Field> getFields() { return fields == null ? noFields : fields; }
535 // Order is significant for fields: It is visible to reflection.
541 if (fields == null)
542 fields = new ArrayList<>();
543 boolean added = fields.add(this);
545 order = fields.size();
611 ArrayList members = (isM == 0) ? fields
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h748 * Returns the number of *declared* fields or methods.
1134 unsigned int fields; member in struct:__anon375
1137 unsigned int fields2; /* number of static 2-word fields */

Completed in 125 milliseconds

1234