Searched refs:field (Results 426 - 450 of 477) sorted by relevance

<<11121314151617181920

/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_util.h95 void setStaticIntField(JNIEnv *env, jclass clazz, jfieldID field,
H A Dhprof_site.c512 /* Primitive field data callback for FollowReferences */
532 /* If the field is 0, just skip it, we assume 0 */
537 /* Get field index */
538 field_index = reference_info->field.index;
543 /* Save primitive field data */
637 reference_index = reference_info->field.index;
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPool.java130 MemberDefinition fd = ((FieldConstantData)f).field;
144 * that are the sort keys for the field.
/openjdk7/jdk/src/share/classes/java/awt/
H A DKeyboardFocusManager.java160 * Initialize JNI field and method IDs
384 * KeyEventDispatchers are registered, this field may be null or refer to
393 * If no other KeyEventPostProcessors are registered, this field may be
3001 // Accessor to private field isProxyActive of KeyEvent
3006 Field field = null;
3008 field = KeyEvent.class.getDeclaredField("isProxyActive");
3009 if (field != null) {
3010 field.setAccessible(true);
3015 return field;
3028 // Returns the value of this KeyEvent's field isProxyActiv
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp121 // the _magic field is properly aligned. Get the value in a safe
138 guarantee(false, "_magic field is an unexpected size");
595 JvmtiEnvBase::get_field_descriptor(klassOop k, jfieldID field, fieldDescriptor* fd) { argument
596 if (!jfieldIDWorkaround::is_valid_jfieldID(k, field)) {
600 if (jfieldIDWorkaround::is_static_jfieldID(field)) {
601 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(field);
604 // Non-static field. The fieldID is really the offset of the field within the object.
605 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, field);
984 // The owner field o
[all...]
H A DjvmtiExport.cpp310 // field access management
316 // serialize field access between all threads. This means that a
321 // field accesses.
327 // field modification management
333 // want to serialize field modification between all threads. This
338 // down the VM when we aren't watching field modifications.
1412 // At least one field access watch is set so we have more work
1425 // At least one field access watch is set so we have more work
1450 // field accesses are not watched so bail
1457 // non-static field accessor
1467 post_field_access(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field) argument
1565 post_raw_field_modification(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value) argument
1623 post_field_modification(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value_ptr) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp710 AccessField(Value obj, int offset, ciField* field, bool is_static,
712 : Instruction(as_ValueType(field->type()->basic_type()), state_before)
715 , _field(field)
729 ciField* field() const { return _field; }
745 // information from the NullCheck. This field should only be consulted
758 LoadField(Value obj, int offset, ciField* field, bool is_static,
760 : AccessField(obj, offset, field, is_static, state_before, needs_patching)
767 HASHING2(LoadField, !needs_patching() && !field()->is_volatile(), obj()->subst(), offset()) // cannot be eliminated if needs patching or if volatile
777 StoreField(Value obj, int offset, ciField* field, Value value, bool is_static,
779 : AccessField(obj, offset, field, is_stati
[all...]
H A Dc1_Optimizer.cpp850 // If the field is a non-null static final object field (as is
853 ciField* field = x->field(); local
854 if (field->is_constant()) {
855 ciConstant field_val = field->constant_value();
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp3355 char *field = get_ident(); local
3356 if (field == NULL) {
3360 if ( strcmp(field,"base") == 0 ) {
3363 else if ( strcmp(field,"index") == 0 ) {
3366 else if ( strcmp(field,"scale") == 0 ) {
3369 else if ( strcmp(field,"disp") == 0 ) {
3417 char *field = get_ident(); local
3418 if (field == NULL) {
3422 if ( strcmp(field,"equal") == 0 ) {
3425 else if ( strcmp(field,"not_equa
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java332 * and match a field several times in the same scope.
1442 * Request to activate the specified field. This method returns the
1443 * matcher for the field.
1445 * @param field The field to activate.
1447 public XPathMatcher activateField(Field field, int initialDepth) { argument
1449 fValueStoreCache.getValueStoreFor(field.getIdentityConstraint(), initialDepth);
1450 setMayMatch(field, Boolean.TRUE);
1451 XPathMatcher matcher = field.createMatcher(this, valueStore);
1471 * Sets whether the given field i
1478 setMayMatch(Field field, Boolean state) argument
1488 mayMatch(Field field) argument
3564 addValue(Field field, Object actualValue, short valueType, ShortList itemValueType) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp399 void CardTableModRefBS::write_ref_field_work(void* field, oop newVal) { argument
400 inline_write_ref_field(field, newVal);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.hpp154 bool static_field_ok_in_clinit(ciField* field);
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DDirectMethodHandle.java101 static DirectMethodHandle make(Field field) { argument
102 return make(field.getDeclaringClass(), new MemberName(field));
395 /** This subclass handles non-static field references. */
431 /** This subclass handles static field references. */
475 // Caching machinery for field accessors:
484 // Enumerate the different field kinds using Wrapper,
508 * Create a LF which can access the given field.
589 final int F_OFFSET = nameCursor++; // Either static offset or field offset.
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java827 for (final Field field : clazz.getFields()) {
828 if (field.get(null) == object) {
829 return field.getName();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceVisitor.java581 for (FieldDeclaration field : intf.getFields())
582 if (field.getConstantValue() != null) {
583 builder.onError(WebserviceapMessages.WEBSERVICEAP_SEI_CANNOT_CONTAIN_CONSTANT_VALUES(intf.getQualifiedName(), field.getSimpleName()));
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX500Name.java1393 Field field = pClass.getDeclaredField("thisX500Name");
1394 field.setAccessible(true);
1395 return new Object[] {cons, field};
/openjdk7/jdk/test/javax/management/mxbean/
H A DMXBeanTest.java192 also contain a field (constant) Foo of the same type, and a
193 field (constant) FooType that is an OpenType. The field Foo is
210 If any field (constant) in the MXBean interface has a name that
212 a String containing an ObjectName value. There must be a field
247 for (Field field : fields) {
248 String n = field.getName();
250 String objectNameString = (String) field.get(null);
365 // no xObjectName field, setValue == refValue
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java232 SimpleTreeNode field = node.getChild(i);
233 if (field instanceof OopTreeNodeAdapter) {
234 out.print(field);
236 printOopValue(((OopTreeNodeAdapter)field).getOop());
239 out.println(field);
294 out.print("field ");
999 new Command("field", "field [ type [ name fieldtype isStatic offset address ] ]", true) {
1018 // The field's Type must already be in the database -- no exceptions
1028 // check to see if the field alread
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormat.java477 * @param pos On input: an alignment field, if desired.
478 * On output: the offsets of the alignment field.
513 * @param fieldPosition On input: an alignment field, if desired.
514 * On output: the offsets of the alignment field.
614 * @param fieldPosition On input: an alignment field, if desired.
615 * On output: the offsets of the alignment field.
701 * @param fieldPosition On input: an alignment field, if desired.
702 * On output: the offsets of the alignment field.
754 * @param fieldPosition On input: an alignment field, if desired.
755 * On output: the offsets of the alignment field
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DlinkResolver.cpp579 "tried to access field %s.%s from class %s",
607 Symbol* field = pool->name_ref_at(index); local
609 // Check if there's a resolved klass containing the field
612 THROW_MSG(vmSymbols::java_lang_NoSuchFieldError(), field->as_C_string());
615 // Resolve instance field
617 KlassHandle sel_klass(THREAD, instanceKlass::cast(resolved_klass())->find_field(field, sig, &fd));
618 // check if field exists; i.e., if a klass containing the field def has been selected
621 THROW_MSG(vmSymbols::java_lang_NoSuchFieldError(), field->as_C_string());
632 jio_snprintf(msg, sizeof(msg), "Expected %s field
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DbcEscapeAnalyzer.cpp834 ciField* field = s.get_field(ignored_will_link); local
835 BasicType field_type = field->type()->basic_type();
851 ciField* field = s.get_field(will_link); local
852 BasicType field_type = field->type()->basic_type();
863 set_modified(p, will_link ? field->offset() : OFFSET_ANY, type2size[field_type]*HeapWordSize);
H A DciTypeFlow.cpp612 ciField* field = str->get_field(will_link); local
614 trap(str, field->holder(), str->get_field_holder_index());
616 ciType* field_type = field->type();
618 // Normally, we need the field's type to be loaded if we are to
624 // the field is null. As long as the value is null, the class
674 // assert(stack_type->is_subtype_of(type), "bad type for field value");
781 if (_trap_bci != -1) return; // unloaded field holder, etc.
790 ciField* field = str->get_field(will_link); local
792 trap(str, field->holder(), str->get_field_holder_index());
794 ciType* field_type = field
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp1028 ciField* field = method()->get_field_at_bci(bci(), ignored_will_link); local
1029 int size = field->type()->size();
1192 // Usually, any field access or invocation on an unloaded oop type
1571 if (at->field() != NULL) {
1572 // known field. This code is a copy of the do_put_xxx logic.
1573 ciField* field = at->field(); local
1574 if (!field->type()->is_loaded()) {
1577 val_type = TypeOopPtr::make_from_klass(field->type()->as_klass());
2786 // Interface, I forget that it's also a Baz and cannot do Baz-like field
3037 ciField* field = ik->nonstatic_field_at(i); local
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutputStream.java131 * solely of its name; field values of the constant are not transmitted. To
139 * serialVersionUID field declarations are also ignored--all enum types have a
187 /** buffer for writing primitive field values */
564 * the substituted object is compatible with every field where the
566 * type of the field or array element abort the serialization by raising an
878 * Put the value of the named boolean field into the persistent field.
880 * @param name the name of the serializable field
881 * @param val the value to assign to the field
883 * match the name of a serializable field fo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java1248 for (Field field : refType.fields()) {
1253 out.print(field.name() + ": ");
1254 Object o = obj.getValue(field);

Completed in 202 milliseconds

<<11121314151617181920