/openjdk7/hotspot/src/share/vm/memory/ |
H A D | universe.inline.hpp | 30 // Check whether an element of a typeArrayOop with the given type must be 34 inline bool Universe::element_type_should_be_aligned(BasicType type) { argument 35 return type == T_DOUBLE || type == T_LONG; 38 // Check whether an object field (static/non-static) of the given type must be aligned 0 mod 8. 40 inline bool Universe::field_type_should_be_aligned(BasicType type) { argument 41 return type == T_DOUBLE || type == T_LONG;
|
/openjdk7/langtools/src/share/classes/com/sun/mirror/type/ |
H A D | package-info.java | 27 * Interfaces used to model types. A type is represented by the 28 * appropriate subinterface of {@link com.sun.mirror.type.TypeMirror}. 33 * javax.lang.model.type}. 37 package com.sun.mirror.type;
|
H A D | MirroredTypeException.java | 26 package com.sun.mirror.type; 41 * javax.lang.model.type.MirroredTypeException}. 52 private transient TypeMirror type; // cannot be serialized field in class:MirroredTypeException 53 private String name; // type's qualified "name" 56 * Constructs a new MirroredTypeException for the specified type. 58 * @param type the type being accessed 60 public MirroredTypeException(TypeMirror type) { argument 61 super("Attempt to access Class object for TypeMirror " + type); 62 this.type [all...] |
H A D | ReferenceType.java | 26 package com.sun.mirror.type; 30 * Represents a reference type. 31 * These include class and interface types, array types, and type variables. 36 * javax.lang.model.type.ReferenceType}.
|
H A D | VoidType.java | 26 package com.sun.mirror.type; 33 * A pseudo-type representing the type of <tt>void</tt>. 41 * javax.lang.model.type.NoType}.
|
/openjdk7/langtools/src/share/classes/javax/lang/model/type/ |
H A D | package-info.java | 41 package javax.lang.model.type;
|
H A D | MirroredTypeException.java | 26 package javax.lang.model.type; 49 private transient TypeMirror type; // cannot be serialized field in class:MirroredTypeException 52 * Constructs a new MirroredTypeException for the specified type. 54 * @param type the type being accessed 56 public MirroredTypeException(TypeMirror type) { argument 57 super("Attempt to access Class object for TypeMirror " + type.toString(), type); 58 this.type = type; [all...] |
H A D | ErrorType.java | 26 package javax.lang.model.type; 29 * Represents a class or interface type that cannot be properly modeled. 33 * information derived from such a type (such as its members or its
|
H A D | NoType.java | 26 package javax.lang.model.type; 32 * A pseudo-type used where no actual type is appropriate. 36 * <li>{@link TypeKind#PACKAGE PACKAGE} - the pseudo-type of a package element. 38 * where no actual type is appropriate; for example, the superclass
|
H A D | NullType.java | 26 package javax.lang.model.type; 30 * Represents the null type. 31 * This is the type of the expression {@code null},
|
H A D | PrimitiveType.java | 26 package javax.lang.model.type; 30 * Represents a primitive type. These include
|
H A D | ReferenceType.java | 26 package javax.lang.model.type; 30 * Represents a reference type. 31 * These include class and interface types, array types, type variables, 32 * and the null type.
|
/openjdk7/jdk/src/share/sample/nio/server/ |
H A D | Content.java | 51 String type(); method in interface:Content
|
/openjdk7/corba/src/share/classes/org/omg/CORBA/ |
H A D | IDLTypeOperations.java | 53 * The type attribute describes the type defined by an object 57 org.omg.CORBA.TypeCode type (); method in interface:IDLTypeOperations
|
/openjdk7/jdk/src/share/classes/sun/beans/editors/ |
H A D | EnumEditor.java | 32 public EnumEditor(Class type) { argument 33 super(type);
|
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | SocketOption.java | 37 * @param <T> The type of the socket option value. 52 * Returns the type of the socket option value. 54 Class<T> type(); method in interface:SocketOption
|
/openjdk7/jdk/src/share/classes/com/sun/jdi/ |
H A D | Value.java | 63 * <TH id="type" align="left">{@link Type} of value<br>{@link #type() Value.type()}</TH> 68 * <TD headers="primval type"> {@link BooleanType}</TD> 73 * <TD headers="primval type"> {@link ByteType}</TD> 78 * <TD headers="primval type"> {@link CharType}</TD> 83 * <TD headers="primval type"> {@link DoubleType}</TD> 88 * <TD headers="primval type"> {@link FloatType}</TD> 93 * <TD headers="primval type"> {@link IntegerType}</TD> 98 * <TD headers="primval type"> { 180 Type type(); method in interface:Value [all...] |
/openjdk7/jdk/test/java/beans/Introspector/4750368/ |
H A D | Test4750368.java | 48 private static int getLength(Class type) throws IntrospectionException { argument 49 PropertyDescriptor[] pds = Introspector.getBeanInfo(type).getPropertyDescriptors(); 50 System.out.println(type + ": " + pds.length);
|
/openjdk7/jdk/test/java/beans/PropertyEditor/ |
H A D | Test6397609.java | 50 private static boolean isEditorExist(Class type) { argument 53 if (null == PropertyEditorManager.findEditor(type)) {
|
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/ |
H A D | NotificationSenderMBean.java | 31 public void sendNotifs(String type, int count); argument
|
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/ |
H A D | IDLTypeOperations.java | 37 org.omg.CORBA.TypeCode type (); method in interface:IDLTypeOperations
|
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | arrayOop.cpp | 35 bool arrayOopDesc::check_max_length_overflow(BasicType type) { argument 36 julong length = max_array_length(type); 37 julong bytes_per_element = type2aelembytes(type);
|
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | awt_Cursor.h | 35 jfieldID type; member in struct:CursorIDs
|
/openjdk7/jdk/test/java/awt/Window/WindowType/ |
H A D | WindowType.java | 42 private static void test(Window window, Window.Type type) { argument 43 window.setType(type); 50 private static void test(Window.Type type) { argument 51 test(new Window((Frame)null), type); 52 test(new Frame(), type); 53 test(new Dialog((Frame)null), type);
|
/openjdk7/jdk/test/java/beans/Introspector/7064279/ |
H A D | Test7064279.java | 72 private static void test(Class type) throws Exception { argument 73 Introspector.getBeanInfo(type);
|