Searched defs:types (Results 1 - 25 of 169) sorted by relevance

1234567

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DAddressField.java25 package sun.jvm.hotspot.types;
30 methods. Since we currently do not understand pointer types (and
31 since coercion from integer to pointer types and back is often
H A DJBooleanField.java25 package sun.jvm.hotspot.types;
H A DJByteField.java25 package sun.jvm.hotspot.types;
H A DJCharField.java25 package sun.jvm.hotspot.types;
H A DJDoubleField.java25 package sun.jvm.hotspot.types;
H A DJFloatField.java25 package sun.jvm.hotspot.types;
H A DJIntField.java25 package sun.jvm.hotspot.types;
H A DJLongField.java25 package sun.jvm.hotspot.types;
H A DJShortField.java25 package sun.jvm.hotspot.types;
H A DNarrowOopField.java25 package sun.jvm.hotspot.types;
H A DOopField.java25 package sun.jvm.hotspot.types;
H A DPointerType.java25 package sun.jvm.hotspot.types;
29 /** This interface describes C pointer types, specifically to be able
30 to model pointer fields within types more accurately. */
H A DWrongTypeException.java25 package sun.jvm.hotspot.types;
H A DCIntegerField.java25 package sun.jvm.hotspot.types;
31 types and why this class is not specialized for various int sizes
H A DCIntegerType.java25 package sun.jvm.hotspot.types;
30 C integer types. The observation is that, according to the C
31 specification, there is no guarantee that the integer types of
35 integer types, signed or unsigned. </P>
42 sign- or zero- extension for signed and unsigned types,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicAddressFieldWrapper.java25 package sun.jvm.hotspot.types.basic;
28 import sun.jvm.hotspot.types.*;
34 types in the Type system. */
H A DVtblAccess.java25 package sun.jvm.hotspot.types.basic;
28 import sun.jvm.hotspot.types.*;
H A DBasicCIntegerType.java25 package sun.jvm.hotspot.types.basic;
29 import sun.jvm.hotspot.types.*;
32 interface and describes all C integer types. */
H A DBasicJBooleanField.java25 package sun.jvm.hotspot.types.basic;
28 import sun.jvm.hotspot.types.*;
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DPrimitiveWrapperMap.java41 * Replaces all primitive types in specified array with wrappers.
43 * @param types array of classes where all primitive types
46 static void replacePrimitivesWithWrappers(Class<?>[] types) { argument
47 for (int i = 0; i < types.length; i++) {
48 if (types[i] != null) {
49 if (types[i].isPrimitive()) {
50 types[i] = getType(types[i].getName());
/openjdk7/jdk/test/java/beans/Introspector/4520754/
H A DTest4520754.java69 private static void test(Boolean mark, Class... types) { argument
70 for (Class type : types) {
/openjdk7/langtools/src/share/classes/com/sun/mirror/type/
H A DMirroredTypesException.java55 private transient Collection<TypeMirror> types; // cannot be serialized field in class:MirroredTypesException
56 private Collection<String> names; // types' qualified "names"
59 * Constructs a new MirroredTypesException for the specified types.
61 * @param types an ordered collection of the types being accessed
63 public MirroredTypesException(Collection<TypeMirror> types) { argument
64 super("Attempt to access Class objects for TypeMirrors " + types);
65 this.types = types;
67 for (TypeMirror t : types) {
[all...]
/openjdk7/jdk/test/javax/swing/plaf/synth/
H A DTest6660049.java84 private final Class<? extends JComponent>[] types; field in class:Test6660049
87 private Test6660049(Class<? extends JComponent>... types) { argument
88 this.types = types;
103 for (Class<? extends JComponent> type : this.types) {
/openjdk7/langtools/test/tools/javac/api/
H A DTestResolveError.java65 types = task.getTypes();
93 TypeMirror mt = types.asMemberOf(type, member);
100 Types types; field in class:TestResolveError
/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DImplementationCacheTest.java76 static void checkImplementationCache(Iterable<? extends Element> elements, Types types) { argument
77 if (types == null) {
111 Symbol impl = I_m.implementation((TypeSymbol)b, types, true);
119 Symbol newImpl = I_m.implementation((TypeSymbol)b, types, true);

Completed in 92 milliseconds

1234567