Searched defs:returnType (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/jdk/test/java/lang/reflect/Method/
H A DEquals.java45 e.returnType();
48 private void returnType() { method in class:Equals
/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/jdk/src/share/classes/sun/reflect/
H A DSignatureIterator.java75 public String returnType() { method in class:SignatureIterator
H A DLangReflectAccess.java49 Class<?> returnType,
46 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
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...]
/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/jdk/src/share/classes/com/sun/tools/jdi/
H A DObsoleteMethodImpl.java53 public Type returnType() throws ClassNotLoadedException { method in class:ObsoleteMethodImpl
H A DMethodImpl.java142 public Type returnType() throws ClassNotLoadedException { method in class:MethodImpl
232 return returnType();
/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/langtools/src/share/classes/com/sun/javadoc/
H A DMethodDoc.java47 Type returnType(); method in interface:MethodDoc
/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/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/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/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/tools/javadoc/
H A DMethodDocImpl.java98 public com.sun.javadoc.Type returnType() { method in class:MethodDocImpl
/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
H A DMethod.java70 private Class<?> returnType; field in class:Method
116 Class<?> returnType,
128 this.returnType = returnType;
151 Method res = new Method(clazz, name, parameterTypes, returnType,
216 return returnType;
354 if (!returnType.equals(other.getReturnType()))
113 Method(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/com/sun/jdi/
H A DMethod.java80 Type returnType() throws ClassNotLoadedException; method in interface:Method
/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/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/langtools/src/share/classes/com/sun/tools/javah/
H A DTypeSignature.java94 public String getTypeSignature(String javasignature, TypeMirror returnType) argument
153 if (returnType != null) {
154 dimensions = dimensions(returnType);
161 if (returnType != null) {
162 returnSig = qualifiedTypeName(returnType);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMethodImpl.java90 public Type returnType() throws ClassNotLoadedException { method in class:MethodImpl

Completed in 58 milliseconds

12