Searched refs:field (Results 176 - 200 of 477) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DWrapperBeanGenerator.java120 for(Field field : fields) {
121 propVisitor.visit("propOrder", field.fieldName);
127 for(Field field : fields) {
128 FieldVisitor fv = cw.visitField(ACC_PUBLIC, field.fieldName, field.asmType.getDescriptor(), field.getSignature(), null);
130 for(Annotation ann : field.jaxbAnnotations) {
190 for(Field field : fields) {
192 sb.append(field.fieldName);
203 for(Field field
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DAWTEvent.java191 * a separate field inputMethodsEnabled.
293 Field field = null;
295 field = InputEvent.class.
297 field.setAccessible(true);
298 return field;
317 * Initialize JNI field and method IDs for fields that may be
591 Field field = get_InputEvent_CanAccessSystemClipboard();
592 if (field != null) {
594 boolean b = field.getBoolean(this);
595 field
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.hpp91 void inline_write_ref_field_gc(void* field, oop new_val) { argument
92 jbyte* byte = byte_for(field);
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DEventRequestManager.java284 * specified field. The new
287 * same field are permitted.
295 * @param field the field to watch
301 AccessWatchpointRequest createAccessWatchpointRequest(Field field); argument
305 * specified field. The new
308 * same field are permitted.
316 * @param field the field to watch
322 ModificationWatchpointRequest createModificationWatchpointRequest(Field field); argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpr.java71 public static JFieldRef ref(String field) { argument
72 return new JFieldRef((JExpression)null, field);
75 public static JFieldRef ref(JExpression lhs, JVar field) { argument
76 return new JFieldRef(lhs,field);
79 public static JFieldRef ref(JExpression lhs, String field) { argument
80 return new JFieldRef(lhs, field);
83 public static JFieldRef refthis(String field) { argument
84 return new JFieldRef(null, field, true);
H A DJExpression.java147 JFieldRef ref(JVar field); argument
148 JFieldRef ref(String field); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIAttribute.java30 import com.sun.tools.internal.xjc.generator.bean.field.FieldRenderer;
31 import com.sun.tools.internal.xjc.generator.bean.field.FieldRendererFactory;
/openjdk7/jdk/test/com/sun/jdi/
H A DDataModelTest.java83 Field field = rt.fieldByName("dataModel");
84 Value v = targetObject.getValue(field);
/openjdk7/jdk/test/java/security/spec/
H A DEllipticCurveMatch.java57 ECFieldFp field = new ECFieldFp(new BigInteger (primeP256,16));
61 return new EllipticCurve (field, a, b);
/openjdk7/jdk/test/javax/management/modelmbean/
H A DInfoSupportTest.java211 String field = fields[i];
213 value = (String) dd.getFieldValue(field);
216 "value of " + field + " mutated: " +
220 value = (String) d.getFieldValue(field);
223 "value of " + field + " changed in " +
231 String field = defaultFields[i];
232 String value = (String) dd.getFieldValue(field);
235 "default value of " + field +
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DMethodHTML.java104 * Print field of class.
106 * @param field field to print
109 private void writeField(Field field) throws IOException { argument
110 String type = Utility.signatureToString(field.getSignature());
111 String name = field.getName();
112 String access = Utility.accessToString(field.getAccessFlags());
118 Class2HTML.referenceType(type) + "</TD><TD><A NAME=\"field" + name + "\">" +
121 attributes = field.getAttributes();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventRequestManagerImpl.java655 final Field field; field in class:EventRequestManagerImpl.WatchpointRequestImpl
657 WatchpointRequestImpl(Field field) { argument
658 this.field = field;
661 (ReferenceTypeImpl)field.declaringType(),
662 ((FieldImpl)field).ref()));
665 public Field field() { method in class:EventRequestManagerImpl.WatchpointRequestImpl
666 return field;
672 AccessWatchpointRequestImpl(Field field) { argument
673 super(field);
688 ModificationWatchpointRequestImpl(Field field) argument
820 createAccessWatchpointRequest(Field field) argument
830 createModificationWatchpointRequest(Field field) argument
[all...]
H A DReferenceTypeImpl.java118 FieldImpl field = (FieldImpl)it.next();
119 if (field.ref() == ref) {
120 return field;
123 throw new IllegalArgumentException("Invalid field id: " + ref);
320 Field field = new FieldImpl(vm, this, fi.fieldID,
324 fields.add(field);
338 Field field = new FieldImpl(vm, this, fi.fieldID,
342 fields.add(field);
355 for (Field field : visibleFields()) {
356 String name = field
606 validateFieldAccess(Field field) argument
617 validateFieldSet(Field field) argument
1080 indexOf(Field field) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java51 * Because this class cannot ensure that all uses of the field
58 * @param <T> The type of the object holding the updatable field
62 * Creates and returns an updater for objects with the given field.
66 * @param tclass the class of the objects holding the field
67 * @param fieldName the name of the field to be updated.
69 * @throws IllegalArgumentException if the field is not a
72 * exception if the class does not hold field or is the wrong type.
90 * Atomically sets the field of the given object managed by this updater
94 * necessarily with respect to other changes in the field.
96 * @param obj An object whose field t
[all...]
H A DAtomicMarkableReference.java202 String field, Class<?> klazz) {
204 return UNSAFE.objectFieldOffset(klazz.getDeclaredField(field));
207 NoSuchFieldError error = new NoSuchFieldError(field);
201 objectFieldOffset(sun.misc.Unsafe UNSAFE, String field, Class<?> klazz) argument
H A DAtomicStampedReference.java203 String field, Class<?> klazz) {
205 return UNSAFE.objectFieldOffset(klazz.getDeclaredField(field));
208 NoSuchFieldError error = new NoSuchFieldError(field);
202 objectFieldOffset(sun.misc.Unsafe UNSAFE, String field, Class<?> klazz) argument
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DTryStatement.java88 if (cs.field == null) {
91 Type type = cs.field.getType();
96 if (cs2.field == null) {
99 Type t = cs2.field.getType();
114 if (cs.field == null) {
117 Type type = cs.field.getType();
158 if (cs.field == null) {
161 Type type = cs.field.getType();
276 Type t = ((CatchStatement)args[i]).field.getType();
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DParserImplBase.java117 Field field = getAnyField( name ) ;
118 field.setAccessible( true ) ;
119 field.set( ParserImplBase.this, value ) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DFinalizerInfo.java69 public void doOop(OopField field, boolean isVMField) {
70 String name = field.getID().getName();
72 queueref[0] = field.getValue(getObj());
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessible.java47 final Field field = AccessibleContext.class.getDeclaredField("nativeAXResource");
48 field.setAccessible(true);
49 return field;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DAnnotationReader.java78 * Reads an annotation on a property that consists of a field.
81 F field, Locatable srcpos);
84 * Checks if the given field has an annotation.
86 boolean hasFieldAnnotation(Class<? extends Annotation> annotationType, F field); argument
94 * Gets all the annotations on a field.
96 Annotation[] getAllFieldAnnotations(F field, Locatable srcPos); argument
80 getFieldAnnotation(Class<A> annotation, F field, Locatable srcpos) argument
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DAbstractTest.java161 Field field = Class.forName(className).getDeclaredField(fieldName);
162 field.setAccessible(true);
163 return field;
/openjdk7/jdk/test/javax/swing/JPopupMenu/6495920/
H A Dbug6495920.java74 robot = new Robot(); // initialize shared static field first time
100 Field field = grabber.getClass().getDeclaredField("grabbedWindow");
101 field.setAccessible(true);
103 Object window = field.get(grabber);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java76 * The field used to represent "this" in all of my code.
92 * This field is null except in an outermost class containing
155 // maybe define an uplevel "A.this" current instance field
243 * Add a field (check it first)
271 env.error(f.getWhere(), "static.inner.field", f.getName(), this);
389 env.error(f.getWhere(), "intf.modifier.field", f);
428 env.error(f.getWhere(), "intf.modifier.field", f);
966 // to represent the field.
1003 // Check the rest of the field definitions.
1004 // (Note: Re-checking a field i
1520 getAccessMember(Environment env, Context ctx, MemberDefinition field, boolean isSuper) argument
1525 getUpdateMember(Environment env, Context ctx, MemberDefinition field, boolean isSuper) argument
1533 getAccessMember(Environment env, Context ctx, MemberDefinition field, boolean isUpdate, boolean isSuper) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicCompoundType.java102 // iteration over a given object at a given address, the field
122 Field field = getField(i);
123 BasicType fieldType = (BasicType) field.getType();
124 fieldType.iterateObject(a.addOffsetTo(field.getOffset()), v, new BasicNamedFieldIdentifier(field));

Completed in 290 milliseconds

1234567891011>>