Searched refs:field (Results 401 - 425 of 477) sorted by relevance

<<11121314151617181920

/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.hpp121 ciField* _field; // relevant instance field, or null if none
131 ciField* field() const { return _field; } function in class:Compile::AliasType
766 AliasType* alias_type(const TypePtr* adr_type, ciField* field = NULL) { return find_alias_type(adr_type, false, field); }
768 AliasType* alias_type(ciField* field);
1048 AliasType* find_alias_type(const TypePtr* adr_type, bool no_create, ciField* field);
H A Dmacro.cpp78 // Clone old SafePointScalarObjectNodes, adjusting their field contents.
368 assert(false, "Object is not scalar replaceable if a LoadStore node access its field");
449 assert(false, "Object is not scalar replaceable if a LoadStore node access its field");
471 // Search the last value stored into the object's field.
600 NOT_PRODUCT(fail_eliminate = "Undefined field referrence";)
612 NOT_PRODUCT(fail_eliminate = "Not store field referrence";)
730 // Scan object's fields adding an input to the safepoint for each field.
733 ciField* field = NULL; local
735 field = iklass->nonstatic_field_at(j);
736 offset = field
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DLValue.java187 Field field = refType.fieldByName(name);
188 if (field != null) {
189 boolean isStatic = field.isStatic();
192 field = null;
199 (field != null));
201 return field;
466 "Cannot access field of primitive type: " + value);
473 * field or method, so we keep track of all the possibilities
480 throw new ParseException("No instance field or method with the name "
494 throw new ParseException("No such field i
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.cpp173 void InstructionPrinter::print_field(AccessField* field) { argument
174 print_value(field->obj());
175 output()->print("._%d", field->offset());
375 output()->print(" (%c)", type2char(x->field()->type()->basic_type()));
383 output()->print(" (%c)", type2char(x->field()->type()->basic_type()));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java48 needed field offsets in the form of static Field objects. In a
51 cached state (including fields and field offsets) must be
858 public void doOop(sun.jvm.hotspot.oops.OopField field, boolean isVMField) {
859 if (field.getID().getName().equals("props")) {
861 sysProps = (Properties) objReader.readObject(field.getValue(getObj()));
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DSynchronousQueue.java413 * field and then rechecks state at least one more time
532 * nodes, and matching is done by CAS'ing QNode.item field
653 * item field of waiting node and dequeuing it, and then
1185 String field, Class<?> klazz) {
1187 return UNSAFE.objectFieldOffset(klazz.getDeclaredField(field));
1190 NoSuchFieldError error = new NoSuchFieldError(field);
1184 objectFieldOffset(sun.misc.Unsafe UNSAFE, String field, Class<?> klazz) argument
/openjdk7/hotspot/src/share/vm/prims/
H A Dunsafe.cpp94 // guarantee this. The field offset values manipulated by the Java user
194 // We could be accessing the referent field in a reference
252 // We could be accessing the referent field in a reference
694 jint find_field_offset(jobject field, int must_be_static, TRAPS) {
695 if (field == NULL) {
699 oop reflected = JNIHandles::resolve_non_null(field);
716 UNSAFE_ENTRY(jlong, Unsafe_ObjectFieldOffset(JNIEnv *env, jobject unsafe, jobject field))
718 return find_field_offset(field, 0, THREAD);
721 UNSAFE_ENTRY(jlong, Unsafe_StaticFieldOffset(JNIEnv *env, jobject unsafe, jobject field))
723 return find_field_offset(field,
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DServiceGenerator.java103 JFieldVar urlField = cls.field(JMod.PRIVATE | JMod.STATIC | JMod.FINAL, URL.class, wsdlLocationName);
105 JFieldVar exField = cls.field(JMod.PRIVATE | JMod.STATIC | JMod.FINAL, WebServiceException.class, serviceFieldName+"_EXCEPTION");
109 cls.field(JMod.PRIVATE | JMod.STATIC | JMod.FINAL, QName.class, serviceName,
H A DCustomExceptionGenerator.java123 JFieldVar fi = cls.field(JMod.PRIVATE, faultBean, "faultInfo");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIProperty.java40 import com.sun.tools.internal.xjc.generator.bean.field.FieldRenderer;
41 import com.sun.tools.internal.xjc.generator.bean.field.FieldRendererFactory;
42 import com.sun.tools.internal.xjc.generator.bean.field.IsSetFieldRenderer;
217 * Gets the realization of this field.
333 * Source schema component from which a field is built.
739 * If there's a nested javaType customization, this field
/openjdk7/jdk/src/share/classes/java/lang/
H A DClass.java1370 * <p> The implicit length field for array class is not reflected by this
1513 * member field of the class or interface represented by this
1515 * {@code String} specifying the simple name of the desired field.
1517 * <p> The field to be reflected is determined by the algorithm that
1520 * <LI> If C declares a public field with the name specified, that is the
1521 * field to be reflected.</LI>
1522 * <LI> If no field was found in step 1 above, this algorithm is applied
1525 * <LI> If no field was found in steps 1 and 2 above, and C has a
1533 * @param name the field name
1536 * @exception NoSuchFieldException if a field wit
[all...]
/openjdk7/jdk/src/share/back/
H A DeventHandler.c935 jobject object, jfieldID field)
950 info.u.field_access.field = field;
961 jlocation location, jclass field_klass, jobject object, jfieldID field,
975 info.u.field_modification.field = field;
932 cbFieldAccess(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field) argument
959 cbFieldModification(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field, char signature_type, jvalue new_value) argument
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableRS.cpp240 void CardTableRS::write_ref_field_gc_par(void* field, oop new_val) { argument
241 jbyte* entry = ct_bs()->byte_for(field);
433 // young-to-old field, that would mark the previous card.
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp422 // LLVM 2.8 added a fifth isVolatile field for memset
534 void SharkBuilder::CreateUpdateBarrierSet(BarrierSet* bs, Value* field) { argument
545 CreatePtrToInt(field, SharkType::intptr_type()),
H A DsharkTopLevelBlock.cpp59 ciField *field; local
81 field = iter()->get_field(will_link);
85 // If the bytecode does not match the field then bail out to
87 if (is_field == field->is_static()) {
97 if (!is_field && !field->holder()->is_initialized()) {
98 if (!static_field_ok_in_clinit(field)) {
173 bool SharkTopLevelBlock::static_field_ok_in_clinit(ciField* field) { argument
174 assert(field->is_static(), "should be");
179 if (target()->holder()->is_subclass_of(field->holder())) {
H A DsharkBuilder.hpp203 void CreateUpdateBarrierSet(BarrierSet* bs, llvm::Value* field);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DExpression.java60 * field directly.
484 ClassDefinition sourceClass = ctx.field.getClassDefinition();
538 ClassDefinition sourceClass = ctx.field.getClassDefinition();
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decl.c131 * field arithmetic implemented in Montgomery coordinates. */
256 if (params->field == ECField_GFp) {
321 } else if (params->field == ECField_GF2m) {
418 * of the field.
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt105 Let's iconify another window, F2. prev/nextTransientFor field
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec246 "Can the VM watch field modification, and therefore "
249 "Can the VM watch field access, and therefore "
254 "Can the VM determine whether a field or method is "
256 "method or the field was invented by the compiler?) ")
374 "Can the VM watch field modification, and therefore "
377 "Can the VM watch field access, and therefore "
382 "Can the VM determine whether a field or method is "
384 "method or the field was invented by the compiler?) ")
636 "Returns information for each field in a reference type. "
638 "The field lis
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DOutputStreamHook.java55 * Put the value of the named boolean field into the persistent field.
62 * Put the value of the named char field into the persistent fields.
69 * Put the value of the named byte field into the persistent fields.
76 * Put the value of the named short field into the persistent fields.
83 * Put the value of the named int field into the persistent fields.
90 * Put the value of the named long field into the persistent fields.
97 * Put the value of the named float field into the persistent fields.
105 * Put the value of the named double field into the persistent field
138 writeField(ObjectStreamField field, Object value) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DClassTypeImpl.java171 public void setValue(Field field, Value value) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DInstanceKlass.java46 // field offset constants
94 // read field offset constants
116 // Exercise the injected field logic
252 if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
266 if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
310 if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
592 public Field field; field in class:InstanceKlass.StaticField
594 StaticField(Field field, AccessFlags flags) { argument
595 this.field = field;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DTTY.java97 Field field = fwe.field();
103 new Object [] {field,
107 MessageOutput.lnprint("Field access encountered", field.toString());
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineAnnotation.sh92 // field annotations check:
101 System.out.println("field annotation is: " + field_annotation);
111 throw new Error("FAIL: cannot find field 'dummy_field' in "

Completed in 684 milliseconds

<<11121314151617181920