Searched defs:type (Results 1 - 25 of 1595) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.inline.hpp30 // 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 Dpackage-info.java27 * 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 DMirroredTypeException.java26 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 DReferenceType.java26 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 DVoidType.java26 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 Dpackage-info.java41 package javax.lang.model.type;
H A DMirroredTypeException.java26 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 DErrorType.java26 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 DNoType.java26 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 DNullType.java26 package javax.lang.model.type;
30 * Represents the null type.
31 * This is the type of the expression {@code null},
H A DPrimitiveType.java26 package javax.lang.model.type;
30 * Represents a primitive type. These include
H A DReferenceType.java26 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 DContent.java51 String type(); method in interface:Content
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DIDLTypeOperations.java53 * 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 DEnumEditor.java32 public EnumEditor(Class type) { argument
33 super(type);
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketOption.java37 * @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 DValue.java63 * <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 DTest4750368.java48 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 DTest6397609.java50 private static boolean isEditorExist(Class type) { argument
53 if (null == PropertyEditorManager.findEditor(type)) {
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationSenderMBean.java31 public void sendNotifs(String type, int count); argument
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DIDLTypeOperations.java37 org.omg.CORBA.TypeCode type (); method in interface:IDLTypeOperations
/openjdk7/hotspot/src/share/vm/oops/
H A DarrayOop.cpp35 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 Dawt_Cursor.h35 jfieldID type; member in struct:CursorIDs
/openjdk7/jdk/test/java/awt/Window/WindowType/
H A DWindowType.java42 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 DTest7064279.java72 private static void test(Class type) throws Exception { argument
73 Introspector.getBeanInfo(type);

Completed in 109 milliseconds

1234567891011>>