Searched refs:type (Results 151 - 175 of 2756) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DRelatesToHeader.java44 protected String type; field in class:RelatesToHeader
47 public RelatesToHeader(QName name, String messageId, String type) { argument
49 this.type = type;
50 this.typeAttributeName = new QName(name.getNamespaceURI(), "type");
55 this.typeAttributeName = new QName(name.getNamespaceURI(), "type");
59 return type;
66 if (type != null)
67 w.writeAttribute("type", type);
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DTypeVariableImpl.java26 package com.sun.tools.apt.mirror.type;
33 import com.sun.mirror.type.*;
46 protected Type.TypeVar type; field in class:TypeVariableImpl
49 TypeVariableImpl(AptEnv env, Type.TypeVar type) { argument
50 super(env, type);
51 this.type = type;
56 * Returns the simple name of this type variable. Bounds are
60 return type.tsym.name.toString();
67 TypeSymbol sym = type
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParameterImpl.java36 * This includes a parameter type and parameter name.
46 private final com.sun.javadoc.Type type; field in class:ParameterImpl
54 this.type = TypeMaker.getType(env, sym.type, false);
58 * Get the type of this parameter.
60 public com.sun.javadoc.Type type() { method in class:ParameterImpl
61 return type;
73 * Get type name of this parameter.
77 return (type instanceof ClassDoc || type instanceo
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicTypeDataBase.java33 It allows an external type database builder to add types to be
78 Type type = (Type) nameToTypeMap.get(cTypeName);
79 if (type == null && throwException) {
80 throw new RuntimeException("No type named \"" + cTypeName + "\" in database");
82 return type;
93 throw new RuntimeException("No integer constant named \"" + constantName + "\" present in type database");
107 throw new RuntimeException("No long constant named \"" + constantName + "\" present in type database");
155 private Address vtblForType(Type type) { argument
156 Address vtblAddr = (Address)typeToVtbl.get(type);
158 vtblAddr = vtblAccess.getVtblForType(type);
166 addressTypeIsEqualToType(Address addr, Type type) argument
375 setJBooleanType(Type type) argument
381 setJByteType(Type type) argument
387 setJCharType(Type type) argument
393 setJDoubleType(Type type) argument
399 setJFloatType(Type type) argument
405 setJIntType(Type type) argument
411 setJLongType(Type type) argument
417 setJShortType(Type type) argument
424 addType(Type type) argument
435 removeType(Type type) argument
[all...]
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/runtime/
H A DPerfDataPrologue.java53 Type type = db.lookupType("PerfDataPrologue");
54 magicField = type.getJIntField("magic");
55 byteOrderField = type.getJByteField("byte_order");
56 majorVersionField = type.getJByteField("major_version");
57 minorVersionField = type.getJByteField("minor_version");
58 accessibleField = type.getJByteField("accessible");
59 usedField = type.getJIntField("used");
60 overflowField = type.getJIntField("overflow");
61 modTimeStampField = type.getJLongField("mod_time_stamp");
62 entryOffsetField = type
[all...]
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCoderResult.java96 private final int type; field in class:CoderResult
99 private CoderResult(int type, int length) { argument
100 this.type = type;
110 String nm = names[type];
120 return (type == CR_UNDERFLOW);
129 return (type == CR_OVERFLOW);
139 return (type >= CR_ERROR_MIN);
150 return (type == CR_MALFORMED);
161 return (type
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DObjectStreamField.java61 * Create a named field with the specified type.
70 type = 'I';
72 type = 'B';
74 type = 'J';
76 type = 'F';
78 type = 'D';
80 type = 'S';
82 type = 'C';
84 type = 'Z';
87 type
259 private char type; // type first byte of the type signature field in class:ObjectStreamField
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DObjectStreamField.java52 * Create a named field with the specified type.
61 type = 'I';
63 type = 'B';
65 type = 'J';
67 type = 'F';
69 type = 'D';
71 type = 'S';
73 type = 'C';
75 type = 'Z';
78 type
257 private char type; // type first byte of the type signature field in class:ObjectStreamField
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DUniverse.java69 Type type = db.lookupType("Universe");
71 collectedHeapField = type.getAddressField("_collectedHeap");
78 mainThreadGroupField = type.getOopField("_main_thread_group");
79 systemThreadGroupField = type.getOopField("_system_thread_group");
81 boolArrayKlassObjField = type.getOopField("_boolArrayKlassObj");
82 byteArrayKlassObjField = type.getOopField("_byteArrayKlassObj");
83 charArrayKlassObjField = type.getOopField("_charArrayKlassObj");
84 intArrayKlassObjField = type.getOopField("_intArrayKlassObj");
85 shortArrayKlassObjField = type.getOopField("_shortArrayKlassObj");
86 longArrayKlassObjField = type
166 elementTypeShouldBeAligned(BasicType type) argument
172 fieldTypeShouldBeAligned(BasicType type) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java47 // Should escaped Identifier should be a type rather than an attribute?
52 * Token has a type. Depending on its type and on the supported version
54 * (identifier, e.g.), and whether it is escaped, deprecated, or is a type
256 return type >= FirstKeyword && type <= LastKeyword;
289 // 3.0: adds components, attr exceptions, local interfaces, type repository
424 return type >= FirstDirective && type <= LastDirective;
454 * @return a Token of the supplied type
537 toString(int type) argument
581 equals(int type) argument
659 int type; field in class:Token
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DWin32VtblAccess.java32 a given C++ type. As it happens, on Win32 (at least for Visual C++
44 protected String vtblSymbolForType(Type type) { argument
45 return "??_7" + type.getName() + "@@6B@";
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMap.java53 Type type = db.lookupType("OopMap");
55 pcOffsetField = type.getCIntegerField("_pc_offset");
56 omvCountField = type.getCIntegerField("_omv_count");
57 omvDataSizeField = type.getCIntegerField("_omv_data_size");
58 omvDataField = type.getAddressField("_omv_data");
59 compressedWriteStreamField = type.getAddressField("_write_stream");
61 type = db.lookupType("CompressedStream");
62 compressedStreamBufferField = type.getAddressField("_buffer");
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicIterator.java74 * Returns the coordinates and type of the current path segment in
76 * The return value is the path segment type:
95 int type;
99 type = SEG_MOVETO;
107 type = SEG_CUBICTO;
112 return type;
116 * Returns the coordinates and type of the current path segment in
118 * The return value is the path segment type:
137 int type;
141 type
[all...]
H A DLineIterator.java74 * Returns the coordinates and type of the current path segment in
76 * The return value is the path segment type:
95 int type;
99 type = SEG_MOVETO;
103 type = SEG_LINETO;
108 return type;
112 * Returns the coordinates and type of the current path segment in
114 * The return value is the path segment type:
133 int type;
137 type
[all...]
H A DQuadIterator.java74 * Returns the coordinates and type of the current path segment in
76 * The return value is the path segment type:
95 int type;
99 type = SEG_MOVETO;
105 type = SEG_QUADTO;
110 return type;
114 * Returns the coordinates and type of the current path segment in
116 * The return value is the path segment type:
135 int type;
139 type
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DVolatileCallSite.java48 * of the given type which will throw an {@code IllegalStateException} if called.
49 * @param type the method type that this call site will have
50 * @throws NullPointerException if the proposed type is null
52 public VolatileCallSite(MethodType type) { argument
53 super(type);
86 * The type of the new target must agree with the type of the old target.
94 * has a method type that differs from the previous target
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeArrayKlass.hpp47 static ciTypeArrayKlass* make_impl(BasicType type);
50 // The type of the array elements.
58 // Make an array klass corresponding to the specified primitive type.
59 static ciTypeArrayKlass* make(BasicType type);
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DConstructorFinder.java50 * @param type the class that can have constructor
56 public static Constructor<?> findConstructor(Class<?> type, Class<?>...args) throws NoSuchMethodException { argument
57 if (type.isPrimitive()) {
60 if (type.isInterface()) {
63 if (Modifier.isAbstract(type.getModifiers())) {
66 if (!Modifier.isPublic(type.getModifiers()) || !isPackageAccessible(type)) {
70 Signature signature = new Signature(type, args);
76 constructor = new ConstructorFinder(args).find(type.getConstructors());
/openjdk7/jaxp/src/org/w3c/dom/events/
H A DEventTarget.java68 * @param type The event type for which the user is registering
74 * events of the specified type will be dispatched to the registered
80 public void addEventListener(String type, argument
93 * @param type Specifies the event type of the <code>EventListener</code>
104 public void removeEventListener(String type, argument
115 * @param evt Specifies the event type, behavior, and contextual
122 * UNSPECIFIED_EVENT_TYPE_ERR: Raised if the <code>Event</code>'s type
125 * <code>Event</code>'s type a
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaParameter.java38 public JavaParameter(String name, JavaType type, Parameter parameter) { argument
39 this(name, type, parameter, false);
42 public JavaParameter(String name, JavaType type, Parameter parameter, argument
46 this.type = type;
60 return type;
64 type = t;
92 private JavaType type; field in class:JavaParameter
H A DJavaStructureMember.java36 public JavaStructureMember(String name, JavaType type, Object owner) { argument
37 this(name, type, owner, false);
39 public JavaStructureMember(String name, JavaType type, argument
43 this.type = type;
58 return type;
62 type = t;
121 private JavaType type; field in class:JavaStructureMember
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLExtensible.java46 * Gets all the extensions that is assignable to the given type.
49 * This allows clients to find specific extensions in a type-safe
52 * @param type
53 * The type of the extension to obtain. Must not be null.
58 <T extends WSDLExtension> Iterable<T> getExtensions(Class<T> type); argument
61 * Gets the extension that is assignable to the given type.
67 * Iterator itr = getExtensions(type);
75 <T extends WSDLExtension> T getExtension(Class<T> type); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DSimpleTypeSet.java51 public boolean contains(XSType type) { argument
52 return typeSet.contains(type);
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4948761.java46 for (Class type : TYPES) {
47 PropertyDescriptor[] pds = BeanUtils.getPropertyDescriptors(type);
49 throw new Error("primitive type should not have properties");

Completed in 92 milliseconds

1234567891011>>