Searched defs:descriptor (Results 26 - 35 of 35) sorted by relevance

12

/openjdk7/jdk/test/javax/management/openmbean/
H A DBadConstraintTest.java91 Descriptor d = descriptor(test[1]);
94 "; descriptor=" + d);
130 descriptor("defaultValue", defaultValue));
132 descriptor("defaultValue", string(defaultValue)));
154 descriptor("defaultValue", defaultValue,
158 descriptor("defaultValue", string(defaultValue),
182 descriptor("defaultValue", defaultValue,
185 descriptor("defaultValue", defaultValue,
191 descriptor("defaultValue", defaultValue,
194 descriptor("defaultValu
257 private static Descriptor descriptor(Object... entries) { method in class:BadConstraintTest
[all...]
H A DConstraintTest.java132 Descriptor d = descriptor("defaultValue", defaultValue);
149 Descriptor d = descriptor("defaultValue", defaultValue,
170 // Legal values in descriptor can be either an array or a set
171 Descriptor d1 = descriptor("defaultValue", defaultValue,
177 d2 = descriptor("defaultValue", defaultValue,
269 /* If you specify e.g. minValue in a descriptor, then we arrange
272 descriptor to have a minValue entry. Check that these values
291 fail("Getter returned null but descriptor has entry for " +
295 fail("Getter returned value but descriptor has no entry for " +
300 " but descriptor entr
344 private static Descriptor descriptor(Object... entries) { method in class:ConstraintTest
[all...]
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java262 c.copy(6); // access, name, descriptor
291 c.copyU2(); // descriptor
310 int descriptorIndex = c.copyU2(); // descriptor index
326 c.writeU2(descriptorIndex); // descriptor is the same
339 String descriptor = c.constantPoolString(descriptorIndex);
340 createWrapperCodeAttr(nameIndex, accessFlags, descriptor, wrappedIndex);
486 int nextDescriptorIndex(String descriptor, int index) { argument
487 switch (descriptor.charAt(index)) {
499 while (descriptor.charAt(i) != ';') {
504 return nextDescriptorIndex(descriptor, inde
525 computeMaxLocals(String descriptor, int accessFlags) argument
557 createWrapperCodeAttr(int methodNameIndex, int accessFlags, String descriptor, int wrappedIndex) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxWatchService.java100 // inotify descriptor
102 // watch descriptor
111 int descriptor() { method in class:LinuxWatchService.LinuxWatchKey
176 // inotify file descriptor
180 // maps watch descriptor to Key
266 // ensure watch descriptor is in map
280 wdToKey.remove(key.descriptor());
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java69 * such as {@code invokedynamic}, specifically from the type descriptor strings associated
76 * The entry refers to a {@code CONSTANT_Utf8} spelling for the descriptor string.
79 * When the JVM materializes a {@code MethodType} from a descriptor string,
80 * all classes named in the descriptor must be accessible, and will be loaded.
860 * Finds or creates an instance of a method type, given the spelling of its bytecode descriptor.
862 * Any class or interface name embedded in the descriptor string
872 * @param descriptor a bytecode-level type descriptor string "(T...)T"
874 * @return a method type matching the bytecode-level type descriptor
879 public static MethodType fromMethodDescriptorString(String descriptor, ClassLoade argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java171 * The index of the constant pool item that contains the descriptor of this
177 * The descriptor of this method.
179 private final String descriptor; field in class:MethodWriter
432 * @param desc the method's descriptor (see {@link Type}).
461 this.descriptor = desc;
478 int size = getArgumentsAndReturnSizes(descriptor) >> 2;
543 panns = new AnnotationWriter[Type.getArgumentTypes(descriptor).length];
549 ipanns = new AnnotationWriter[Type.getArgumentTypes(descriptor).length];
1267 Type[] args = Type.getArgumentTypes(descriptor);
1473 * @param desc the descriptor o
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DClass.java169 * runtime {@code Class} descriptor for the class named
970 private String descriptor; field in class:Class.EnclosingMethodInfo
987 // descriptor (null iff name is).
988 descriptor = (String) enclosingInfo[2];
989 assert((name != null && descriptor != null) || name == descriptor);
996 return enclosingClass == null || name == null || descriptor == null;
1007 String getDescriptor() { return descriptor; }
2891 * A new handle is generated for the initial time the class descriptor
2892 * is written into the stream. Future references to the class descriptor
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java492 DescriptorEntry descriptor; field in class:Package.Class.Member
494 protected Member(int flags, DescriptorEntry descriptor) { argument
496 this.descriptor = descriptor;
502 return descriptor;
505 return descriptor.nameRef.stringValue();
508 return descriptor.typeRef.stringValue();
516 // Careful: The descriptor is used by the package,
519 refs.add(descriptor.nameRef);
520 refs.add(descriptor
538 Field(int flags, DescriptorEntry descriptor) argument
563 Method(int flags, DescriptorEntry descriptor) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java557 * object passed for a given name and descriptor identifies the
701 public String descriptor; field in class:ProxyGenerator.FieldInfo
703 public FieldInfo(String name, String descriptor, int accessFlags) { argument
705 this.descriptor = descriptor;
713 cp.getUtf8(descriptor);
726 out.writeShort(cp.getUtf8(descriptor));
761 public String descriptor; field in class:ProxyGenerator.MethodInfo
769 public MethodInfo(String name, String descriptor, int accessFlags) { argument
771 this.descriptor
1755 getFieldRef(String className, String name, String descriptor) argument
1767 getMethodRef(String className, String name, String descriptor) argument
1779 getInterfaceMethodRef(String className, String name, String descriptor) argument
1791 getNameAndType(String name, String descriptor) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.hpp597 void set_jvmti_cached_class_field_map(JvmtiCachedClassFieldMap* descriptor) { argument
598 _jvmti_cached_class_field_map = descriptor;

Completed in 78 milliseconds

12