Searched defs:type (Results 126 - 150 of 1595) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DPrimitiveType.java43 * will return null if the type is non-conforming.
54 * Create a PrimitiveType object for the given type.
56 * If the type is not a properly formed or if some other error occurs, the
60 public static PrimitiveType forPrimitive(sun.tools.java.Type type, argument
67 Type existing = getType(type,stack);
80 switch (type.getTypeCode()) {
97 putType(type,it,stack);
108 * Return signature for this type (e.g. com.acme.Dynamite
127 * Return a string describing this type.
135 * Return the fully qualified IDL name for this type (
[all...]
H A DSpecialClassType.java49 * will return null if the type is non-conforming.
70 sun.tools.java.Type type = theClass.getType();
74 String typeKey = type.toString() + stack.getContextCodeString();
87 // Is it a special type?
89 int typeCode = getTypeCode(type,theClass,stack);
108 * Return a string describing this type.
163 private static int getTypeCode(sun.tools.java.Type type, ClassDefinition theClass, ContextStack stack) { argument
164 if (type.isType(TC_CLASS)) {
165 Identifier id = type.getClassName();
H A DSpecialInterfaceType.java51 * the type must match exactly. For CORBA.Object, the type must either be
55 * will return null if the type is non-conforming.
79 sun.tools.java.Type type = theClass.getType();
80 Type existing = getType(type,stack);
93 if (isSpecial(type,theClass,stack)) {
98 putType(type,result,stack);
101 if (result.initialize(type,stack)) {
105 removeType(type,stack);
114 * Return a string describing this type
133 isSpecial(sun.tools.java.Type type, ClassDefinition theClass, ContextStack stack) argument
154 initialize(sun.tools.java.Type type, ContextStack stack) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBaseClass.java32 private Type type; field in class:BasicBaseClass
34 public BasicBaseClass(int accessControl, boolean isVirtual, Type type) { argument
37 this.type = type;
42 public Type getType() { return type; }
45 type = db.resolveType(containingType, type, listener, "resolving base class");
H A DBasicIndexableFieldIdentifier.java30 private Type type; field in class:BasicIndexableFieldIdentifier
33 public BasicIndexableFieldIdentifier(Type type, int index) { argument
34 this.type = type;
38 public Type getType() { return type; }
H A DBasicLocalSym.java30 private Type type; field in class:BasicLocalSym
33 public BasicLocalSym(String name, Type type, long frameOffset) { argument
35 this.type = type;
41 public Type getType() { return type; }
45 type = db.resolveType(this, type, listener, "resolving type of local");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVoidValueImpl.java40 return type().hashCode();
43 public Type type() { method in class:VoidValueImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicJBooleanField.java36 public BasicJBooleanField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJBooleanType())) {
45 /** The field must be nonstatic and the type of the field must be a
51 /** The field must be static and the type of the field must be a
H A DBasicJByteField.java36 public BasicJByteField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJByteType())) {
45 /** The field must be nonstatic and the type of the field must be a
51 /** The field must be static and the type of the field must be a
H A DBasicJCharField.java36 public BasicJCharField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJCharType())) {
45 /** The field must be nonstatic and the type of the field must be a
51 /** The field must be static and the type of the field must be a
H A DBasicJDoubleField.java36 public BasicJDoubleField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJDoubleType())) {
45 /** The field must be nonstatic and the type of the field must be a
51 /** The field must be static and the type of the field must be a
H A DBasicJFloatField.java36 public BasicJFloatField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJFloatType())) {
45 /** The field must be nonstatic and the type of the field must be a
51 /** The field must be static and the type of the field must be a
H A DBasicJIntField.java36 public BasicJIntField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJIntType())) {
45 /** The field must be nonstatic and the type of the field must be a
51 /** The field must be static and the type of the field must be a
H A DBasicJLongField.java36 public BasicJLongField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJLongType())) {
45 /** The field must be nonstatic and the type of the field must be a
51 /** The field must be static and the type of the field must be a
H A DBasicJShortField.java36 public BasicJShortField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJShortType())) {
45 /** The field must be nonstatic and the type of the field must be a
51 /** The field must be static and the type of the field must be a
H A DBasicOopField.java41 public BasicOopField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
43 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
45 if (!type.isOopType()) {
46 throw new WrongTypeException("Type of a BasicOopField must be an oop type");
50 /** The field must be nonstatic and the type of the field must be a
56 /** The field must be static and the type of the field must be a
H A DBasicVtblAccess.java46 public Address getVtblForType(Type type) { argument
47 if (type == null) {
50 Object result = typeToVtblMap.get(type);
57 String vtblSymbol = vtblSymbolForType(type);
59 typeToVtblMap.put(type, nullAddress);
65 typeToVtblMap.put(type, addr);
69 typeToVtblMap.put(type, nullAddress);
77 protected abstract String vtblSymbolForType(Type type); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DFindObjectByType.java32 private Klass type; field in class:FindObjectByType
35 public FindObjectByType(Klass type) { argument
36 this.type = type;
48 if (obj.getKlass().equals(type)) {
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DCompoundControl.java58 * @param type the type of control represented this compound control object
61 protected CompoundControl(Type type, Control[] memberControls) { argument
63 super(type);
132 * Constructs a new compound control type.
133 * @param name the name of the new compound control type
H A DControl.java50 * The control type.
52 private final Type type; field in class:Control
59 * Constructs a Control with the specified type.
60 * @param type the kind of control desired
62 protected Control(Type type) { argument
63 this.type = type;
70 * Obtains the control's type.
71 * @return the control's type.
74 return type;
[all...]
H A DEnumControl.java80 * @param type the type of control represented this enumerated control object
84 protected EnumControl(Type type, Object[] values, Object value) { argument
86 super(type);
197 * enumerated control of type <code>REVERB</code>.)
206 * Constructs a new enumerated control type.
207 * @param name the name of the new enumerated control type
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DListDataEvent.java54 private int type; field in class:ListDataEvent
59 * Returns the event type. The possible values are:
66 * @return an int representing the type value
68 public int getType() { return type; }
92 * @param type an int specifying {@link #CONTENTS_CHANGED},
97 public ListDataEvent(Object source, int type, int index0, int index1) { argument
99 this.type = type;
116 "[type=" + type
[all...]
H A DRowSorterEvent.java44 private Type type; field in class:RowSorterEvent
66 * Creates a <code>RowSorterEvent</code> of type
81 * @param type the type of event
84 * @throws IllegalArgumentException if source or <code>type</code> is
87 public RowSorterEvent(RowSorter source, Type type, argument
90 if (type == null) {
91 throw new IllegalArgumentException("type must be non-null");
93 this.type = type;
[all...]
/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/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLFrameHyperlinkEvent.java46 * @param type the event type
50 public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, argument
52 super(source, type, targetURL);
61 * @param type the event type
66 public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, argument
68 super(source, type, targetURL, desc);
76 * @param type the event type
82 HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, Element sourceElement, String targetFrame) argument
100 HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, Element sourceElement, String targetFrame) argument
119 HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, Element sourceElement, InputEvent inputEvent, String targetFrame) argument
[all...]

Completed in 75 milliseconds

1234567891011>>