/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/ |
H A D | AddressField.java | 25 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 D | JBooleanField.java | 25 package sun.jvm.hotspot.types;
|
H A D | JByteField.java | 25 package sun.jvm.hotspot.types;
|
H A D | JCharField.java | 25 package sun.jvm.hotspot.types;
|
H A D | JDoubleField.java | 25 package sun.jvm.hotspot.types;
|
H A D | JFloatField.java | 25 package sun.jvm.hotspot.types;
|
H A D | JIntField.java | 25 package sun.jvm.hotspot.types;
|
H A D | JLongField.java | 25 package sun.jvm.hotspot.types;
|
H A D | JShortField.java | 25 package sun.jvm.hotspot.types;
|
H A D | NarrowOopField.java | 25 package sun.jvm.hotspot.types;
|
H A D | OopField.java | 25 package sun.jvm.hotspot.types;
|
H A D | PointerType.java | 25 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 D | WrongTypeException.java | 25 package sun.jvm.hotspot.types;
|
H A D | CIntegerField.java | 25 package sun.jvm.hotspot.types; 31 types and why this class is not specialized for various int sizes
|
H A D | CIntegerType.java | 25 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 D | BasicAddressFieldWrapper.java | 25 package sun.jvm.hotspot.types.basic; 28 import sun.jvm.hotspot.types.*; 34 types in the Type system. */
|
H A D | VtblAccess.java | 25 package sun.jvm.hotspot.types.basic; 28 import sun.jvm.hotspot.types.*;
|
H A D | BasicCIntegerType.java | 25 package sun.jvm.hotspot.types.basic; 29 import sun.jvm.hotspot.types.*; 32 interface and describes all C integer types. */
|
H A D | BasicJBooleanField.java | 25 package sun.jvm.hotspot.types.basic; 28 import sun.jvm.hotspot.types.*;
|
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/ |
H A D | PrimitiveWrapperMap.java | 41 * 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 D | Test4520754.java | 69 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 D | MirroredTypesException.java | 55 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 D | Test6660049.java | 84 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 D | TestResolveError.java | 65 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 D | ImplementationCacheTest.java | 76 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);
|