Searched refs:type (Results 1 - 25 of 2756) 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/jdk/src/share/classes/java/security/cert/
H A DCRL.java48 // the CRL type
49 private String type; field in class:CRL
52 * Creates a CRL of the specified type.
54 * @param type the standard name of the CRL type.
60 protected CRL(String type) { argument
61 this.type = type;
65 * Returns the type of this CRL.
67 * @return the type o
[all...]
/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...]
/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...]
/openjdk7/jdk/src/share/classes/sun/security/jca/
H A DServiceId.java29 * Simple class encapsulating a service type and algorithm for lookup.
37 public final String type; field in class:ServiceId
40 public ServiceId(String type, String algorithm) { argument
41 this.type = type;
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DArrayData.java37 Type type; field in class:ArrayData
40 public ArrayData(Type type, int nargs) { argument
41 this.type = type;
H A DCatchData.java38 Object type; field in class:CatchData
44 CatchData(Object type) { argument
45 this.type = type;
60 return type;
/openjdk7/jdk/src/share/sample/nio/server/
H A DContent.java51 String type(); method in interface:Content
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DUSLPort.java30 private String type; field in class:USLPort
33 public USLPort (String type, int port) argument
35 this.type = type;
39 public String getType () { return type; }
41 public String toString () { return type + ":" + port; }
/openjdk7/jdk/src/share/classes/com/sun/security/jgss/
H A DAuthorizationDataEntry.java33 private final int type; field in class:AuthorizationDataEntry
38 * @param type the ad-type
42 public AuthorizationDataEntry(int type, byte[] data) { argument
43 this.type = type;
48 * Get the ad-type field.
49 * @return ad-type
52 return type;
64 return "AuthorizationDataEntry: type
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DBasicType.java63 * Denotes basic type such as int.
71 * @param type one of T_INT, T_BOOLEAN, ..., T_VOID
74 BasicType(byte type) { argument
75 super(type, Constants.SHORT_TYPE_NAMES[type]);
77 if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID))
78 throw new ClassGenException("Invalid type: " + type);
81 public static final BasicType getType(byte type) { argument
101 equals(Object type) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/tools/
H A DAPTTypeVisitor.java28 import com.sun.mirror.type.TypeMirror;
29 import com.sun.mirror.type.ArrayType;
30 import com.sun.mirror.type.ClassType;
31 import com.sun.mirror.type.InterfaceType;
32 import com.sun.mirror.type.TypeVariable;
33 import com.sun.mirror.type.VoidType;
34 import com.sun.mirror.type.WildcardType;
35 import com.sun.mirror.type.PrimitiveType;
46 public final T apply(TypeMirror type, P param) { argument
47 if( type instanceo
65 onPrimitiveType(PrimitiveType type, P param) argument
66 onArrayType(ArrayType type, P param) argument
67 onClassType(ClassType type, P param) argument
68 onInterfaceType(InterfaceType type, P param) argument
69 onTypeVariable(TypeVariable type, P param) argument
70 onVoidType(VoidType type, P param) argument
71 onWildcard(WildcardType type, P param) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LinearScan_sparc.hpp32 inline int LinearScan::num_physical_regs(BasicType type) { argument
36 if (type == T_DOUBLE) {
38 if (type == T_DOUBLE || type == T_LONG) {
46 inline bool LinearScan::requires_adjacent_regs(BasicType type) { argument
48 return type == T_DOUBLE;
50 return type == T_DOUBLE || type == T_LONG;
66 assert(cur->type() != T_FLOAT && cur->type() !
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBTypeAndAnnotation.java38 JType type; field in class:JAXBTypeAndAnnotation
42 this.type = typeAnn.getTypeClass();
45 public JAXBTypeAndAnnotation(JType type) { argument
46 this.type = type;
49 public JAXBTypeAndAnnotation(TypeAndAnnotation typeAnn, JType type) { argument
51 this.type = type;
60 return type;
64 return type
75 setType(JType type) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DStatus.java43 private final short type; field in class:Status
47 Status(short type, boolean isExceptional) { argument
48 this.type = type;
53 return type;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DEvent.java34 private Type type; field in class:Event
36 public Event(Type type) { argument
37 this.type = type;
40 public Type getType() { return type; }
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSampleLoop.java36 long type; field in class:DLSSampleLoop
57 return type;
60 public void setType(long type) { argument
61 this.type = type;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJCast.java37 private final JType type; field in class:JCast
47 * @param type
54 JCast(JType type, JExpression object) { argument
55 this.type = type;
60 f.p("((").g(type).p(')').g(object).p(')');
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DResultTypeFinder.java29 /** Specialized SignatureIterator: Used to compute the result type. */
32 protected void set(int size, int type) { if (isReturnType()) this.type = type; } argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalFontDesktopProperty.java36 * Maps from metal font theme type as defined in MetalTheme
49 * Corresponds to a MetalTheme font type.
51 private int type; field in class:MetalFontDesktopProperty
56 * desktop property is determined from the type of font.
58 * @param type MetalTheme font type.
60 MetalFontDesktopProperty(int type) { argument
61 this(propertyMapping[type], type);
70 * @param type Typ
73 MetalFontDesktopProperty(String key, int type) argument
[all...]
/openjdk7/langtools/test/tools/javac/annotations/neg/
H A DAnnComma.java35 @ann1(isStatic=false,type="class" ,)
37 @ann1(type="class",isStatic=false,) public void myMethod() {
43 String type(); method in interface:ann1
/openjdk7/jdk/src/share/classes/sun/beans/editors/
H A DEnumEditor.java32 public EnumEditor(Class type) { argument
33 super(type);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DAccessorElement.java38 private QName type; field in class:AccessorElement
43 * @param type
46 public AccessorElement(String name, QName type) { argument
47 this.type = type;
51 * @return Returns the type.
54 return type;
57 * @param type The type to set.
59 public void setType(QName type) { argument
[all...]

Completed in 134 milliseconds

1234567891011>>