Searched refs:type (Results 426 - 450 of 2756) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/solaris/classes/sun/java2d/opengl/
H A DGLXSurfaceData.java50 ColorModel cm, int type)
52 super(gc, cm, type);
77 int type)
81 if (type == FLIP_BACKBUFFER) {
88 type);
99 Image image, int type)
102 image, cm, type);
162 int type)
164 super(peer, gc, width, height, image, cm, type);
189 int type)
49 GLXSurfaceData(X11ComponentPeer peer, GLXGraphicsConfig gc, ColorModel cm, int type) argument
75 createData(X11ComponentPeer peer, Image image, int type) argument
96 createData(GLXGraphicsConfig gc, int width, int height, ColorModel cm, Image image, int type) argument
158 GLXVSyncOffScreenSurfaceData(X11ComponentPeer peer, GLXGraphicsConfig gc, int width, int height, Image image, ColorModel cm, int type) argument
185 GLXOffScreenSurfaceData(X11ComponentPeer peer, GLXGraphicsConfig gc, int width, int height, Image image, ColorModel cm, int type) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMemberName.java48 * A member name refers to a field, method, constructor, or member type.
49 * Every member name has a simple name (a string) and a type (either a Class or MethodType).
51 * a naked name/type pair.
75 private Object type; // may be null if not yet materialized field in class:MemberName
82 * In the case of a bare name and type, the declaring class will be null.
94 * For a type, it is the same as {@link Class#getSimpleName}.
116 /** Return the declared type of this member, which
120 if (type == null) {
122 if (type == null) return null;
125 throw newIllegalArgumentException("not invocable, no method type");
446 init(Class<?> defClass, String name, Object type, int flags) argument
552 MemberName(Class<?> type) argument
614 MemberName(Class<?> defClass, String name, Class<?> type, byte refKind) argument
623 MemberName(Class<?> defClass, String name, Class<?> type, Void unused) argument
633 MemberName(Class<?> defClass, String name, MethodType type, byte refKind) argument
907 getMethods(Class<?> defc, boolean searchSupers, String name, MethodType type, Class<?> lookupClass) argument
934 getFields(Class<?> defc, boolean searchSupers, String name, Class<?> type, Class<?> lookupClass) argument
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
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();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DArray.java49 Type type = db.lookupType("arrayOopDesc");
50 typeSize = (int)type.getSize();
71 private static long headerSize(BasicType type) { argument
72 if (Universe.elementTypeShouldBeAligned(type)) {
108 public static long baseOffsetInBytes(BasicType type) { argument
109 return headerSize(type) * VM.getVM().getHeapWordSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DThread.java53 Type type = db.lookupType("Thread");
55 suspendFlagsField = type.getCIntegerField("_suspend_flags");
60 tlabFieldOffset = type.getField("_tlab").getOffset();
61 activeHandlesField = type.getAddressField("_active_handles");
62 currentPendingMonitorField = type.getAddressField("_current_pending_monitor");
63 currentWaitingMonitorField = type.getAddressField("_current_waiting_monitor");
/openjdk7/jdk/src/share/classes/java/beans/
H A DThreadGroupContext.java95 BeanInfo getBeanInfo(Class<?> type) { argument
97 ? this.beanInfoCache.get(type)
101 BeanInfo putBeanInfo(Class<?> type, BeanInfo info) { argument
105 return this.beanInfoCache.put(type, info);
108 void removeBeanInfo(Class<?> type) { argument
110 this.beanInfoCache.remove(type);
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DNType.java41 * NType (Native Type) bridges the type and type64 attributes in BridgeSupport.
46 * type="c" // BridgeSupport attribute
47 * (NPrimitive type: 'c') // Java object (in sexp form here, for readability)
49 * type="^v"
52 * type="{foo_t="a"c"b"b8"c"[32^v]}"
57 * 0: (NField name:"a" type: (NPrimitive type: 'c'))
58 * 1: (NField name:"b" type: (NBitfield size: 8))
59 * 2: (NField name:"c" type:
61 * type
114 public final char type; field in class:NType.NPrimitive
179 public final NType type; field in class:NType.NField
181 NField(String name, NType type, Map<Width,Integer> offset) argument
188 NField(String name, NType type) argument
260 public final NType type; field in class:NType.NArray
262 NArray(int length, NType type) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaType.java43 private JAXBTypeAndAnnotation type; field in class:JavaType
47 public JavaType(JAXBTypeAndAnnotation type){ argument
48 this.type = type;
49 init(type.getName(), false, null, null);
63 return type;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DModelNode.java41 * It may also hold {@link com.sun.xml.internal.ws.policy.sourcemodel.AssertionData} instance in case its type is {@code ModelNode.Type.ASSERTION}.
49 * Policy source model node type enumeration
70 * Method checks the PSM state machine if the creation of new child of given type is plausible for a node element
71 * with type set to this type instance.
73 * @param childType The type.
74 * @return True if the type is supported, false otherwise
115 private final ModelNode.Type type; field in class:ModelNode
142 private ModelNode(Type type, PolicySourceModel parentModel) { argument
143 this.type
149 ModelNode(Type type, PolicySourceModel parentModel, AssertionData data) argument
161 checkCreateChildOperationSupportForType(final Type type) argument
[all...]
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTestEditor.java30 TestEditor(Class type) { argument
31 System.out.println("Property class: " + type);
33 this.editor = PropertyEditorManager.findEditor(type);
35 throw new Error("could not find editor for " + type);
87 Class type = loader.compile(classname, content);
88 return type.getMethod(methodname).invoke(null);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DBeanValidator.java64 Class type = object1.getClass();
65 if (!type.equals(object2.getClass())) {
78 if (type.isArray()) {
95 boolean ignore = Collection.class.isAssignableFrom(type)
96 || Map.Entry.class.isAssignableFrom(type)
97 || Map.class.isAssignableFrom(type);
101 if (!ignore && isDefined(type, "equals", Object.class)) {
110 if (Comparable.class.isAssignableFrom(type) && isDefined(type, "compareTo", Object.class)) {
120 for (Field field : getFields(type)) {
235 isDefined(Class type, String name, Class... params) argument
250 getFields(Class type) argument
262 getDescriptors(Class type) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConvClearEdge_Fp.c58 * data type.
71 #define EDGES(chan, type, mask) \
73 type *pimg = (type *) mlib_ImageGetData(img); \
74 type color_i; \
75 mlib_s32 img_stride = mlib_ImageGetStride(img) / sizeof(type); \
86 color_i = (type) color[l]; \
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DXMLResourceBundleTest.java80 String type = rb.getString("type");
81 if (!type.equals("XML")) {
82 throw new RuntimeException("Root Locale: type: got " + type
87 type = rb.getString("type");
89 if (!type.equals("\uff38\uff2d\uff2c")) {
90 throw new RuntimeException("Locale.JAPAN: type: got " + type
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalogEntry.java38 * and a system identifier. Each entry has a unique numeric type,
39 * assigned automatically when the entry type is created.</p>
41 * <p>The number and type of catalog entries is maintained
55 /** The nextEntry is the ordinal number of the next entry type. */
60 * (e.g., 'BASE' or 'SYSTEM') to their type (1, 2, etc.).
70 * Adds a new catalog entry type.
72 * @param name The name of the catalog entry type. This must be
74 * name effectively replaces the old type with the new type.)
75 * @param numArgs The number of arguments that this entry type
131 getEntryArgCount(int type) argument
195 CatalogEntry(int type, Vector args) argument
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLEventReaderImpl.java127 int type = event.getEventType();
129 if( type == XMLEvent.CHARACTERS || type == XMLEvent.SPACE ||
130 type == XMLEvent.CDATA){
133 else if(type == XMLEvent.ENTITY_REFERENCE){
136 else if(type == XMLEvent.COMMENT || type == XMLEvent.PROCESSING_INSTRUCTION){
138 } else if(type == XMLEvent.START_ELEMENT) {
141 }else if(type == XMLEvent.END_ELEMENT){
157 if( type
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DAttributeImpl.java54 //attribute type
75 public AttributeImpl(String prefix, String uri, String localPart, String value, String type) { argument
76 this(prefix, uri, localPart, value, null, type, false);
79 public AttributeImpl(String prefix, String uri, String localPart, String value, String nonNormalizedvalue, String type, boolean isSpecified) { argument
80 this(new QName(uri, localPart, prefix), value, nonNormalizedvalue, type, isSpecified);
84 public AttributeImpl(QName qname, String value, String nonNormalizedvalue, String type, boolean isSpecified) { argument
88 if(type != null && !type.equals(""))
89 fAttributeType = type;
131 /** Gets the type o
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/extension/
H A DZeroPortPolicy.java40 private ZeroPortPolicy( boolean type )
42 this.flag = type ;
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DExceptionDescription.java41 public org.omg.CORBA.TypeCode type = null; field in class:ExceptionDescription
53 type = _type;
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DUnionMember.java55 * The type of the union member described by this
59 public org.omg.CORBA.TypeCode type; field in class:UnionMember
62 * The typedef that represents the IDL type of the union member described by this
84 * @param __type a <code>TypeCode</code> object describing the type of this
87 * IDL type of this <code>UnionMember</code> object
92 type = __type;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/
H A DciType.java43 Type type = db.lookupType("ciType");
44 basicTypeField = new CIntField(type.getCIntegerField("_basic_type"), 0);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DRuntimeStub.java44 Type type = db.lookupType("RuntimeStub");
45 callerMustGCArgumentsField = type.getCIntegerField("_caller_must_gc_arguments");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DBinaryTreeDictionary.java43 Type type = db.lookupType("BinaryTreeDictionary");
44 totalSizeField = type.getCIntegerField("_totalSize");
H A DCMSPermGen.java45 Type type = db.lookupType("CMSPermGen");
46 genField = type.getAddressField("_gen");
H A DCompactibleSpace.java51 Type type = db.lookupType("CompactibleSpace");
53 compactionTopField = type.getAddressField("_compaction_top");
H A DCompactingPermGen.java48 Type type = db.lookupType("CompactingPermGen");
50 genField = type.getAddressField("_gen");

Completed in 165 milliseconds

<<11121314151617181920>>