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

1234

/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java371 private List<FieldInfo> fields = new ArrayList<FieldInfo>(); field in class:ProxyGenerator
442 * fields and methods in the class we are generating.
451 fields.add(new FieldInfo(pm.methodFieldName,
469 if (fields.size() > 65535) {
526 dout.writeShort(fields.size());
527 // field_info fields[fields_count];
528 for (FieldInfo f : fields) {
1615 * a primitive type in its public fields. The struct for a particular
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp307 const Type **fmembar = TypeTuple::fields(0);
374 const Type **fi2c = TypeTuple::fields(2);
379 const Type **intpair = TypeTuple::fields(2);
384 const Type **longpair = TypeTuple::fields(2);
1628 const Type **field_array = fields(total_fields);
1664 field_array = fields(total_fields);
1668 field_array = fields(total_fields);
1702 const TypeTuple *TypeTuple::make( uint cnt, const Type **fields ) {
1703 return (TypeTuple*)(new TypeTuple(cnt,fields))->hashcons();
1706 //------------------------------fields
1708 const Type **TypeTuple::fields( uint arg_cnt ) { function in class:TypeTuple
1737 const Type **fields = (const Type **)(Compile::current()->type_arena()->Amalloc_4( _cnt*sizeof(Type*) )); local
1751 const Type **fields = (const Type **)(Compile::current()->type_arena()->Amalloc_4( _cnt*sizeof(Type*) )); local
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrinterJob.java246 * These fields are changed by native code which detects the driver's
283 /* These fields are directly set in upcalls from the values
1827 private final void setNativeAttributes(int flags, int fields, int values) { argument
1864 if ((fields & DM_ORIENTATION) != 0) {
1872 if ((fields & DM_COLOR) != 0) {
1880 if ((fields & DM_PRINTQUALITY) != 0) {
1884 } else if ((fields & SET_RES_HIGH) != 0) {
1892 if ((fields & DM_DUPLEX) != 0) {
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java1416 public final List<Field> fields = new CountedList<>(Field.class); field in class:Indify.ClassFile
1426 readInputs(in, interfaces, fields, methods, attrs);
1443 fields, methods, attrs);
1458 inns.addAll(fields); inns.addAll(methods); inns.addAll(attrs);
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.hpp62 // [fields ]
71 // [static oop fields size ]
105 // Print fields.
106 // If "obj" argument to constructor is NULL, prints static fields, otherwise prints non-static fields.
181 // for all fields, followed by the generic signature data at the end of
182 // the array. Only fields with generic signature attributes have the generic
183 // signature data set in the array. The fields array looks like following:
215 // Annotation objects (byte arrays) for fields, or null if no annotations.
216 // Indices correspond to entries (not indices) in fields arra
375 typeArrayOop fields() const { return _fields; } function in class:instanceKlass
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp775 // Helper class used to describe the static or instance fields of a class.
818 // functions to create maps of static or instance fields
840 // Returns a heap allocated ClassFieldMap to describe the static fields
855 // ignore instance fields
864 // Returns a heap allocated ClassFieldMap to describe the instance fields
865 // of the given class. All instance fields are included (this means public
866 // and private fields declared in superclasses and superinterfaces too).
881 // ignore static fields
891 // Helper class used to cache a ClassFileMap for the instance fields of
990 // remove the fields map
1202 ClassFieldMap* fields = JvmtiCachedClassFieldMap::get_map_of_instance_fields(obj); local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1070 // Make sure there is no overflow with injected fields.
1071 assert(count[atype] < 0xFFFF, "More than 65535 fields");
1099 // other fields data.
1111 // index. After parsing all fields, the data are copied to a permanent
1118 // The generic signature slots start after all other fields' data.
1192 // The correct offset is computed later (all oop fields will be located together)
1233 // The correct offset is computed later (all oop fields will be located together)
1240 // Now copy the fields' data from the temporary resource array.
1241 // Sometimes injected fields already exist in the Java source so
1242 // the fields arra
3158 typeArrayHandle fields = parse_fields(class_name, cp, access_flags.is_interface(), &fac, &fields_annotations, local
[all...]

Completed in 314 milliseconds

1234