Searched refs:descriptor (Results 26 - 50 of 53) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanAttributeInfo.java128 * @param descriptor The descriptor for the attribute. This may be null
129 * which is equivalent to an empty descriptor.
145 Descriptor descriptor) {
146 super(name, description, descriptor);
267 "descriptor=" + getDescriptor() +
139 MBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) argument
H A DMBeanOperationInfo.java148 * @param descriptor The descriptor for the operation. This may be null
149 * which is equivalent to an empty descriptor.
158 Descriptor descriptor) {
160 super(name, description, descriptor);
273 "descriptor=" + getDescriptor() +
153 MBeanOperationInfo(String name, String description, MBeanParameterInfo[] signature, String type, int impact, Descriptor descriptor) argument
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanInfoSupport.java128 * notifications}, and {@code descriptor}.</p>
162 * @param descriptor The descriptor for the MBean. This may be null
163 * which is equivalent to an empty descriptor.
179 Descriptor descriptor) {
186 descriptor);
372 * described MBean and the string representation of the descriptor.</p>
400 .append(",descriptor=")
173 OpenMBeanInfoSupport(String className, String description, OpenMBeanAttributeInfo[] openAttributes, OpenMBeanConstructorInfo[] openConstructors, OpenMBeanOperationInfo[] openOperations, MBeanNotificationInfo[] notifications, Descriptor descriptor) argument
H A DOpenMBeanOperationInfoSupport.java113 * impact}, and {@code descriptor}.</p>
132 * @param descriptor The descriptor for the operation. This may
133 * be null, which is equivalent to an empty descriptor.
150 Descriptor descriptor) {
158 ImmutableDescriptor.union(descriptor,
371 * described operation and the string representation of its descriptor.</p>
397 .append(",descriptor=")
145 OpenMBeanOperationInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, OpenType<?> returnOpenType, int impact, Descriptor descriptor) argument
H A DOpenMBeanAttributeInfoSupport.java139 * <p>The {@code descriptor} can contain entries that will define
159 * @param descriptor The descriptor for the attribute. This may be null
160 * which is equivalent to an empty descriptor.
164 * null, or the descriptor entries are invalid as described in the
176 Descriptor descriptor) {
185 ImmutableDescriptor.union(descriptor, (openType==null)?null:
192 descriptor = getDescriptor(); // replace null by empty
193 this.defaultValue = valueFrom(descriptor, "defaultValue", openType);
194 this.legalValues = valuesFrom(descriptor, "legalValue
170 OpenMBeanAttributeInfoSupport(String name, String description, OpenType<?> openType, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DVariablePanel.java121 Symbol descriptor = null;
123 descriptor = m.getConstants().getSymbolAt(local.getDescriptorCPIndex());
125 System.err.println("Unable to fetch descriptor at slot " +
133 if (descriptor != null) {
134 switch (descriptor.getByteAt(0)) {
/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/jdk/src/share/classes/java/beans/
H A DEventSetDescriptor.java531 private static Method getMethod(MethodDescriptor descriptor) { argument
532 return (descriptor != null)
533 ? descriptor.getMethod()
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanIntrospector.java352 final Descriptor descriptor =
364 descriptor);
427 Descriptor descriptor =
436 descriptor);
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DDescriptorSupport.java64 * descriptor is part of the ModelMBeanInfo,
68 * A descriptor consists of a collection of fields. Each field is in
103 new ObjectStreamField("descriptor", HashMap.class),
110 new ObjectStreamField("descriptor", HashMap.class)
116 * @serialField descriptor HashMap The collection of fields representing this descriptor
148 Previous versions of this class had a field called "descriptor"
161 * Default initial descriptor size is 20. It will grow as needed.<br>
162 * Note that the created empty descriptor is not a valid descriptor
[all...]
H A DModelMBeanNotificationInfo.java54 * <P id="descriptor">
55 * The fields in the descriptor are defined, but not limited to, the following.
84 * <p>The default descriptor contains the name, descriptorType,
128 * @serialField notificationDescriptor Descriptor The descriptor
153 * @serial The descriptor containing the appropriate metadata for
162 * descriptor.
184 * @param descriptor An instance of Descriptor containing the
186 * MBeanNotificationInfo. If it is null a default descriptor
187 * will be created. If the descriptor does not contain the
192 * {@link IllegalArgumentException}. The descriptor i
197 ModelMBeanNotificationInfo(String[] notifTypes, String name, String description, Descriptor descriptor) argument
[all...]
/openjdk7/jdk/test/java/util/jar/
H A DTestExtra.java165 /** Look up descriptor in data, returning corresponding byte[]. */
166 static byte[] getField(int descriptor, byte[] data) { argument
171 if (get16(data, i) == descriptor) {
182 // descriptor not found
/openjdk7/jdk/test/javax/management/openmbean/
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/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/langtools/src/share/classes/com/sun/tools/javap/
H A DClassWriter.java356 print(getJavaFieldType(f.descriptor));
363 // fall back on non-generic descriptor
364 print(getJavaFieldType(f.descriptor));
374 print(getConstantValue(f.descriptor, cv.constantvalue_index));
383 println("Signature: " + getValue(f.descriptor));
420 d = m.descriptor;
433 // fall back on standard descriptor
479 println("Signature: " + getValue(m.descriptor));
670 * @param d the descriptor, giving the expected type of the constant
H A DCodeWriter.java84 int n = method.descriptor.getParameterCount(constant_pool);
H A DStackMapWriter.java78 Descriptor d = m.descriptor;
/openjdk7/jdk/src/share/classes/sun/font/
H A DSunFontManager.java3539 CompositeFontDescriptor descriptor = compositeFontInfo[i];
3540 String[] componentFileNames = descriptor.getComponentFileNames();
3541 String[] componentFaceNames = descriptor.getComponentFaceNames();
3563 descriptor.getFaceName(),
3565 descriptor.getCoreComponentCount(),
3566 descriptor.getExclusionRanges(),
3567 descriptor.getExclusionRangeLimits(),
3571 registerCompositeFont(descriptor.getFaceName(),
3573 descriptor.getCoreComponentCount(),
3574 descriptor
[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/macosx/classes/com/apple/laf/
H A DAquaSliderUI.java255 final SizeDescriptor descriptor = shouldUseArrowThumb() ? pointingThumbDescriptor.get() : roundThumbDescriptor.get();
256 final SizeVariant variant = descriptor.get(slider);
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DCallerSensitiveFinder.java158 m.descriptor.getValue(cf.constant_pool));
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassTranslator.java160 field.descriptor,
192 method.descriptor,
H A DDependencies.java497 v.scan(f.descriptor, f.attributes);
501 v.scan(m.descriptor, m.attributes);
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java46 * for the descriptor and signature of the annotated declaration. Annotations are
49 * descriptor/signature as found in the class file. This value is mostly for documentation
50 * purposes in reading the test. The second value is the rendering of the descriptor or
52 * Type classes being used to represent the descriptor/signature. Thus we test
53 * that the descriptor/signature is being parsed into the expected type tree structure.
76 test("field " + cn + "." + f.getName(cp), f.descriptor, f.attributes, cp);
84 test("method " + cn + "." + m.getName(cp), m.descriptor, m.attributes, cp);
114 System.err.println(" descriptor: " + desc.getValue(cp));
/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...]

Completed in 127 milliseconds

123