Searched refs:returnType (Results 1 - 25 of 105) sorted by relevance

12345

/openjdk7/jdk/src/solaris/native/sun/security/pkcs11/wrapper/
H A Dp11_md.h60 #define CK_DEFINE_FUNCTION(returnType, name) returnType name
61 #define CK_DECLARE_FUNCTION(returnType, name) returnType name
62 #define CK_DECLARE_FUNCTION_POINTER(returnType, name) returnType (* name)
63 #define CK_CALLBACK_FUNCTION(returnType, name) returnType (* name)
/openjdk7/jdk/src/windows/native/sun/security/pkcs11/wrapper/
H A Dp11_md.h66 #define CK_DEFINE_FUNCTION(returnType, name) returnType __declspec(dllexport) name
67 #define CK_DECLARE_FUNCTION(returnType, name) returnType __declspec(dllimport) name
68 #define CK_DECLARE_FUNCTION_POINTER(returnType, name) returnType __declspec(dllimport) (* name)
69 #define CK_CALLBACK_FUNCTION(returnType, name) returnType (* name)
/openjdk7/jdk/src/share/classes/sun/reflect/generics/repository/
H A DMethodRepository.java42 private Type returnType; // caches the generic return type info field in class:MethodRepository
65 if (returnType == null) { // lazily initialize return type
70 returnType = r.getResult();
72 return returnType; // return cached result
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicFunctionType.java32 private Type returnType; field in class:BasicFunctionType
35 public BasicFunctionType(String name, int size, Type returnType) { argument
36 this(name, size, returnType, 0);
39 protected BasicFunctionType(String name, int size, Type returnType, int cvAttributes) { argument
41 this.returnType = returnType;
46 public Type getReturnType() { return returnType; }
61 returnType = db.resolveType(this, returnType, listener, "resolving function return type");
H A DBasicMemberFunctionType.java38 Type returnType,
42 this(name, size, returnType, containingClass, thisType, thisAdjust, 0);
47 Type returnType,
52 super(name, size, returnType, cvAttributes);
36 BasicMemberFunctionType(String name, int size, Type returnType, Type containingClass, Type thisType, long thisAdjust) argument
45 BasicMemberFunctionType(String name, int size, Type returnType, Type containingClass, Type thisType, long thisAdjust, int cvAttributes) argument
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DMethodDoc.java47 Type returnType(); method in interface:MethodDoc
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathExpression.java105 * <p>If <code>returnType</code> is not one of the types defined in {@link XPathConstants},
111 * If <code>returnType</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
114 * @param returnType The desired return type.
117 * <code>returnType</code>.
120 * @throws IllegalArgumentException If <code>returnType</code> is not one of the types defined in {@link XPathConstants}.
121 * @throws NullPointerException If <code>returnType</code> is <code>null</code>.
123 public Object evaluate(Object item, QName returnType) argument
129 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of
154 * {@link #evaluate(Object item, QName returnType)} o
175 evaluate(InputSource source, QName returnType) argument
[all...]
H A DXPath.java209 * <p>If <code>returnType</code> is not one of the types defined in {@link XPathConstants} (
220 * If <code>expression</code> or <code>returnType</code> is <code>null</code>, then a
225 * @param returnType The desired return type.
227 * @return Result of evaluating an XPath expression as an <code>Object</code> of <code>returnType</code>.
230 * @throws IllegalArgumentException If <code>returnType</code> is not one of the types defined in {@link XPathConstants}.
231 * @throws NullPointerException If <code>expression</code> or <code>returnType</code> is <code>null</code>.
233 public Object evaluate(String expression, Object item, QName returnType) argument
239 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
267 * {@link #evaluate(String expression, Object item, QName returnType)} o
289 evaluate( String expression, InputSource source, QName returnType) argument
[all...]
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DMethod.java33 private String returnType; field in class:Method
82 return returnType;
85 public void setReturnType(String returnType) { argument
86 this.returnType = returnType;
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMethodType.java43 Type returnType; field in class:MethodType
55 MethodType(String typeSig, Type returnType, Type argTypes[]) { argument
57 this.returnType = returnType;
62 return returnType;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/jaxp/
H A DXPathExpressionImpl.java103 public Object eval(Object item, QName returnType) argument
106 return getResultAsType( resultObject, returnType );
145 * <p>If <code>returnType</code> is not one of the types defined
152 * If <code>returnType</code> is <code>null</code>, then a
156 * @param returnType The desired return type.
160 * <code>returnType</code>.
163 * @throws IllegalArgumentException If <code>returnType</code> is not one
165 * @throws NullPointerException If <code>returnType</code> is
168 public Object evaluate(Object item, QName returnType) argument
171 if ( returnType
275 evaluate(InputSource source, QName returnType) argument
[all...]
H A DXPathImpl.java221 * <p>If <code>returnType</code> is not one of the types defined in {@link XPathConstants} (
232 * If <code>expression</code> or <code>returnType</code> is <code>null</code>, then a
237 * @param returnType The desired return type.
239 * @return Result of evaluating an XPath expression as an <code>Object</code> of <code>returnType</code>.
242 * @throws IllegalArgumentException If <code>returnType</code> is not one of the types defined in {@link XPathConstants}.
243 * @throws NullPointerException If <code>expression</code> or <code>returnType</code> is <code>null</code>.
245 public Object evaluate(String expression, Object item, QName returnType) argument
253 if ( returnType == null ) {
256 new Object[] {"returnType"} );
259 // Checking if requested returnType i
430 evaluate(String expression, InputSource source, QName returnType) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/generics/tree/
H A DMethodTypeSignature.java33 private ReturnType returnType; field in class:MethodTypeSignature
42 returnType = rt;
57 public ReturnType getReturnType(){return returnType;}
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DReturnTaglet.java76 Type returnType = ((MethodDoc) holder).returnType();
80 if (returnType.isPrimitive() && returnType.typeName().equals("void")) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaMethod.java47 private JavaType returnType; field in class:JavaMethod
51 this.returnType = null;
61 return returnType;
64 public void setReturnType(JavaType returnType) { argument
65 this.returnType = returnType;
/openjdk7/jdk/test/java/lang/reflect/Method/
H A DEquals.java45 e.returnType();
48 private void returnType() { method in class:Equals
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DMethodWriter.java62 public abstract JMethod declareMethod( JType returnType, String methodName ); argument
64 public final JMethod declareMethod( Class returnType, String methodName ) { argument
65 return declareMethod( codeModel.ref(returnType), methodName );
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DMethodAccessorGenerator.java55 private Class returnType; field in class:MethodAccessorGenerator
73 Class returnType,
80 returnType,
129 Class returnType,
140 this.returnType = returnType;
446 if (isPrimitive(returnType)) {
452 cb.opc_new(indexForPrimitiveType(returnType));
645 typeSizeInStackSlots(returnType));
651 typeSizeInStackSlots(returnType));
70 generateMethod(Class declaringClass, String name, Class[] parameterTypes, Class returnType, Class[] checkedExceptions, int modifiers) argument
126 generate(final Class declaringClass, String name, Class[] parameterTypes, Class returnType, Class[] checkedExceptions, int modifiers, boolean isConstructor, boolean forSerialization, Class serializationTargetClass) argument
[all...]
H A DSignatureIterator.java75 public String returnType() { method in class:SignatureIterator
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokeGeneric.java119 finisher = addReturnConversion(finisher, callerType.returnType()); //FIXME: slow
124 Class<?> needType = erasedCallerType.returnType();
128 Class<?> needType = callerType.returnType();
129 if (needType == erasedCallerType.returnType())
131 Class<?> haveType = target.type().returnType();
140 caster = caster.asType(caster.type().changeParameterType(0, finisherType.returnType()));
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DObsoleteMethodImpl.java53 public Type returnType() throws ClassNotLoadedException { method in class:ObsoleteMethodImpl
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DMethod.java80 Type returnType() throws ClassNotLoadedException; method in interface:Method
/openjdk7/langtools/test/tools/javadoc/
H A DMethodLinks.java65 self == SAMPLE.returnType().asClassDoc()
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DReflectAccess.java56 Class<?> returnType,
68 returnType,
53 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerInvocationHandler.java256 final Class<?> returnType = method.getReturnType();
266 && !returnType.equals(Void.TYPE)) {
274 && (returnType.equals(Boolean.TYPE)
275 || returnType.equals(Boolean.class))) {
283 && returnType.equals(Void.TYPE)) {

Completed in 90 milliseconds

12345