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

1234

/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DMethodWrapper.java27 public Object newInstance(String name, String[] parameterTypes, String returnType); argument
H A DSignature.java37 public Signature(String name, Type returnType, Type[] argumentTypes) { argument
38 this(name, Type.getMethodDescriptor(returnType, argumentTypes));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
H A DImmutableMethodReference.java47 @Nonnull protected final String returnType; field in class:ImmutableMethodReference
52 @Nonnull String returnType) {
56 this.returnType = returnType;
62 @Nonnull String returnType) {
66 this.returnType = returnType;
84 @Nonnull @Override public String getReturnType() { return returnType; }
49 ImmutableMethodReference(@onnull String definingClass, @Nonnull String name, @Nullable Iterable<? extends CharSequence> parameters, @Nonnull String returnType) argument
59 ImmutableMethodReference(@onnull String definingClass, @Nonnull String name, @Nullable ImmutableList<String> parameters, @Nonnull String returnType) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderProtoReference.java46 @Nonnull final BuilderTypeReference returnType; field in class:BuilderProtoReference
50 @Nonnull BuilderTypeReference returnType) {
53 this.returnType = returnType;
61 return returnType.getType();
74 return returnType.equals(other.returnType) &&
82 int res = returnType.compareTo(o.returnType);
49 BuilderProtoReference(@onnull BuilderStringReference shorty, @Nonnull BuilderTypeList parameterTypes, @Nonnull BuilderTypeReference returnType) argument
H A DBuilderMethodPool.java71 @Nonnull String returnType) {
72 return internMethod(new MethodKey(definingClass, name, parameters, returnType));
119 @Nonnull private final String returnType; field in class:BuilderMethodPool.MethodKey
122 @Nonnull List<? extends CharSequence> parameterTypes, @Nonnull String returnType) {
126 this.returnType = returnType;
142 return returnType;
69 internMethod(@onnull String definingClass, @Nonnull String name, @Nonnull List<? extends CharSequence> parameters, @Nonnull String returnType) argument
121 MethodKey(@onnull String definingClass, @Nonnull String name, @Nonnull List<? extends CharSequence> parameterTypes, @Nonnull String returnType) argument
H A DBuilderProtoPool.java58 @Nonnull String returnType) {
59 ProtoKey key = new Key(parameters, returnType);
66 context.stringPool.internString(MethodUtil.getShorty(parameters, returnType)),
68 context.typePool.internType(returnType));
82 return key.returnType;
116 @Nonnull private final String returnType; field in class:BuilderProtoPool.Key
118 public Key(@Nonnull List<? extends CharSequence> parameters, @Nonnull String returnType) { argument
120 this.returnType = returnType;
128 return returnType;
57 internProto(@onnull List<? extends CharSequence> parameters, @Nonnull String returnType) argument
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenABITypes.cpp63 CodeGenABITypes::arrangeFreeFunctionCall(CanQualType returnType, argument
68 returnType, /*IsInstanceMethod=*/false, argTypes, info, args);
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingTestCase.java107 private static Object getDefaultValue(Class<?> returnType) { argument
108 if (returnType == boolean.class || returnType == Boolean.class) {
110 } else if (returnType == int.class || returnType == Integer.class) {
112 } else if ((returnType == Set.class) || (returnType == Collection.class)) {
114 } else if (returnType == Iterator.class){
116 } else if (returnType.isArray()) {
117 return Array.newInstance(returnType
[all...]
/external/okhttp/android/main/java/com/squareup/okhttp/internal/
H A DOptionalMethod.java32 private final Class<?> returnType; field in class:OptionalMethod
41 * @param returnType the return type to required, null if it does not matter
45 public OptionalMethod(Class<?> returnType, String methodName, Class... methodParams) { argument
46 this.returnType = returnType;
147 && returnType != null
148 && !returnType.isAssignableFrom(method.getReturnType())) {
/external/proguard/src/proguard/classfile/util/
H A DInternalTypeEnumeration.java112 public String returnType() method in class:InternalTypeEnumeration
195 System.out.println(" Return type ["+enumeration.returnType()+"]");
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DXPathExpressionImpl.java97 public Object eval(Object item, QName returnType) argument
100 return getResultAsType( resultObject, returnType );
142 * <p>If <code>returnType</code> is not one of the types defined
149 * If <code>returnType</code> is <code>null</code>, then a
153 * @param returnType The desired return type.
157 * <code>returnType</code>.
160 * @throws IllegalArgumentException If <code>returnType</code> is not one
162 * @throws NullPointerException If <code>returnType</code> is
165 public Object evaluate(Object item, QName returnType) argument
168 if ( returnType
272 evaluate(InputSource source, QName returnType) argument
[all...]
H A DXPathImpl.java232 * <p>If <code>returnType</code> is not one of the types defined in {@link XPathConstants} (
243 * If <code>expression</code> or <code>returnType</code> is <code>null</code>, then a
248 * @param returnType The desired return type.
250 * @return Result of evaluating an XPath expression as an <code>Object</code> of <code>returnType</code>.
253 * @throws IllegalArgumentException If <code>returnType</code> is not one of the types defined in {@link XPathConstants}.
254 * @throws NullPointerException If <code>expression</code> or <code>returnType</code> is <code>null</code>.
256 public Object evaluate(String expression, Object item, QName returnType) argument
264 if ( returnType == null ) {
267 new Object[] {"returnType"} );
270 // Checking if requested returnType i
441 evaluate(String expression, InputSource source, QName returnType) argument
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DMethodId.java33 final TypeId<R> returnType; field in class:MethodId
41 MethodId(TypeId<D> declaringType, TypeId<R> returnType, String name, TypeList parameters) { argument
42 if (declaringType == null || returnType == null || name == null || parameters == null) {
46 this.returnType = returnType;
58 return returnType;
92 result.append(returnType.name);
105 && ((MethodId<?, ?>) o).returnType.equals(returnType);
113 result = 31 * result + returnType
[all...]
H A DTypeId.java128 public <R> MethodId<T, R> getMethod(TypeId<R> returnType, String name, TypeId<?>... parameters) { argument
129 return new MethodId<T, R>(this, returnType, name, new TypeList(parameters));
/external/javassist/src/main/javassist/
H A DCtNewMethod.java88 * @param returnType the type of the returned value.
99 public static CtMethod make(CtClass returnType, argument
105 return make(Modifier.PUBLIC, returnType, mname, parameters, exceptions,
114 * @param returnType the type of the returned value.
126 public static CtMethod make(int modifiers, CtClass returnType, argument
134 = new CtMethod(returnType, mname, parameters, declaring);
192 * @param returnType the type of the returned value
200 public static CtMethod abstractMethod(CtClass returnType, argument
207 CtMethod cm = new CtMethod(returnType, mname, parameters, declaring);
388 * type to the type specified by <code>returnType</cod
459 wrapped(CtClass returnType, String mname, CtClass[] parameterTypes, CtClass[] exceptionTypes, CtMethod body, ConstParameter constParam, CtClass declaring) argument
[all...]
H A DCtNewWrappedMethod.java27 public static CtMethod wrapped(CtClass returnType, String mname, argument
34 CtMethod mt = new CtMethod(returnType, mname, parameterTypes,
45 parameterTypes, returnType, constParam);
53 CtClass returnType,
60 parameters, returnType, cparam, code);
72 CtClass returnType, ConstParameter cparam,
115 compileReturn(code, returnType); // consumes 2 stack entries
50 makeBody(CtClass clazz, ClassFile classfile, CtMethod wrappedBody, CtClass[] parameters, CtClass returnType, ConstParameter cparam) argument
69 makeBody0(CtClass clazz, ClassFile classfile, CtMethod wrappedBody, boolean isStatic, CtClass[] parameters, CtClass returnType, ConstParameter cparam, Bytecode code) argument
/external/jdiff/src/jdiff/
H A DMethodAPI.java55 public MethodAPI(String name, String returnType, boolean isAbstract, argument
59 returnType_ = returnType;
H A DXMLToAPI.java291 * @param returnType The return type of the method, null if it is void.
294 public static void addMethod(String name, String returnType, argument
297 String rt = returnType;
/external/mockito/src/org/mockito/internal/invocation/
H A DSerializableMethod.java20 private Class<?> returnType; field in class:SerializableMethod
28 returnType = method.getReturnType();
38 return returnType;
95 if (returnType == null) {
96 if (other.returnType != null)
98 } else if (!returnType.equals(other.returnType))
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DInlineMethodResolver.java68 @Nonnull String params, @Nonnull String returnType) {
70 return new ImmutableMethod(cls, name, paramList, returnType, accessFlags, null, null);
67 inlineMethod(int accessFlags, @Nonnull String cls, @Nonnull String name, @Nonnull String params, @Nonnull String returnType) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableMethod.java54 @Nonnull protected final String returnType; field in class:ImmutableMethod
62 @Nonnull String returnType,
69 this.returnType = returnType;
78 @Nonnull String returnType,
85 this.returnType = returnType;
109 @Override @Nonnull public String getReturnType() { return returnType; }
59 ImmutableMethod(@onnull String definingClass, @Nonnull String name, @Nullable Iterable<? extends MethodParameter> parameters, @Nonnull String returnType, int accessFlags, @Nullable Set<? extends Annotation> annotations, @Nullable MethodImplementation methodImplementation) argument
75 ImmutableMethod(@onnull String definingClass, @Nonnull String name, @Nullable ImmutableList<? extends ImmutableMethodParameter> parameters, @Nonnull String returnType, int accessFlags, @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations, @Nullable ImmutableMethodImplementation methodImplementation) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DMethodUtil.java103 public static String getShorty(Collection<? extends CharSequence> params, String returnType) { argument
105 sb.append(getShortyType(returnType));
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProviderClient.java174 private static <T extends Object> T chromeBrowserProviderCall(Class returnType, String name, argument
180 if (Parcelable.class.isAssignableFrom(returnType)) {
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DPrototype.java35 private final Type returnType; field in class:Prototype
100 Type returnType = Type.internReturnType(descriptor.substring(at));
107 result = new Prototype(descriptor, returnType, parameterTypes);
187 * @param returnType {@code non-null;} the return type
191 public static Prototype internInts(Type returnType, int count) { argument
203 sb.append(returnType.getDescriptor());
215 private Prototype(String descriptor, Type returnType, argument
221 if (returnType == null) {
222 throw new NullPointerException("returnType == null");
230 this.returnType
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DIntermNode.cpp648 TType returnType = getType(); local
661 returnType = getType();
671 returnType = node->getType();
735 returnType.setPrimarySize(resultCols);
736 returnType.setSecondarySize(resultRows);
833 returnType = node->getType();
834 returnType.setPrimarySize(matrixRows);
836 tempNode = new TIntermConstantUnion(tempConstArray, returnType);
869 returnType.setPrimarySize(matrixCols);
920 returnType
[all...]

Completed in 8968 milliseconds

1234