HomeSort by relevance Sort by last modified time
    Searched defs:returnType (Results 1 - 25 of 700) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-testlib/test/com/google/common/collect/testing/features/
FeatureEnumTest.java 61 final Class<?> returnType = method.getReturnType();
64 returnType.isArray());
67 annotationClass.getDeclaringClass(), returnType.getComponentType());
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
MethodWriter.java 33 private final TypeName returnType;
39 MethodWriter(TypeName returnType, String name) {
40 this.returnType = returnType;
51 public TypeName returnType() {
52 return returnType;
97 returnType.write(appendable, context);
115 .append(returnType)
  /external/mockito/src/org/mockito/internal/handler/
NullResultGuardian.java 30 Class<?> returnType = invocation.getMethod().getReturnType();
31 if(result == null && returnType.isPrimitive()) {
33 return new HandyReturnValues().returnFor(returnType);
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsEmptyValues.java 79 Class<?> returnType = invocation.getMethod().getReturnType();
80 return returnValueFor(returnType);
ReturnsMoreEmptyValues.java 62 Class<?> returnType = invocation.getMethod().getReturnType();
63 return returnValueFor(returnType);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableMethodReference.java 47 @Nonnull protected final String returnType;
52 @Nonnull String returnType) {
56 this.returnType = returnType;
62 @Nonnull String returnType) {
66 this.returnType = returnType;
84 @Nonnull @Override public String getReturnType() { return returnType; }
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/parsing/
JniHeaderCMethodParser.java 42 String returnType = head.split(" ")[1].trim();
48 return new CMethod(returnType, head, args, start, argsEnd + 1);
CMethodParser.java 37 final String returnType;
43 public CMethod (String returnType, String head, String[] argumentTypes, int startIndex, int endIndex) {
44 this.returnType = returnType;
56 return returnType;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
OptionalMethod.java 32 private final Class<?> returnType;
41 * @param returnType the return type to required, null if it does not matter
45 public OptionalMethod(Class<?> returnType, String methodName, Class... methodParams) {
46 this.returnType = returnType;
153 && returnType != null
154 && !returnType.isAssignableFrom(method.getReturnType())) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderProtoReference.java 46 @Nonnull final BuilderTypeReference returnType;
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);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/element/
SmaliMethodPrototypeElementType.java 67 SmaliTypeElement returnType = psi.getReturnTypeElement();
69 if (returnType != null) {
70 returnSmaliTypeName = returnType.getSmaliName();
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProvidesMethodValidator.java 98 TypeMirror returnType = providesMethodElement.getReturnType();
99 TypeKind returnTypeKind = returnType.getKind();
117 validateKeyType(builder, returnType);
120 validateKeyType(builder, returnType);
139 DeclaredType declaredReturnType = (DeclaredType) returnType;
FactoryGenerator.java 191 TypeName returnType = ParameterizedTypeName.create(ClassName.fromClass(Factory.class),
193 MethodWriter createMethodWriter = factoryWriter.addMethod(returnType, "create");
261 getMethodWriter.returnType(),
  /external/dexmaker/src/main/java/com/google/dexmaker/
MethodId.java 33 final TypeId<R> returnType;
41 MethodId(TypeId<D> declaringType, TypeId<R> returnType, String name, TypeList parameters) {
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.hashCode()
    [all...]
  /external/mockito/src/org/mockito/internal/invocation/
SerializableMethod.java 20 private Class<?> returnType;
28 returnType = method.getReturnType();
38 return returnType;
95 if (returnType == null) {
96 if (other.returnType != null)
98 } else if (!returnType.equals(other.returnType))
  /external/proguard/src/proguard/
FullyQualifiedClassNameChecker.java 124 checkType(internalTypeEnumeration.returnType());
  /external/proguard/src/proguard/classfile/util/
InternalTypeEnumeration.java 121 public String returnType()
204 System.out.println(" Return type ["+enumeration.returnType()+"]");
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java 289 Type returnType = Type.find(returnCtClass);
302 // if (declareField(ctClass, fieldName, returnType)) {
309 String methodBody = generateMethodBody(ctClass, ctMethod, wasNative, wasAbstract, returnCtClass, returnType, isStatic, !wasFoundInClass);
357 private String generateMethodBody(CtClass ctClass, CtMethod ctMethod, boolean wasNative, boolean wasAbstract, CtClass returnCtClass, Type returnType, boolean aStatic, boolean shouldGenerateCallToSuper) throws NotFoundException {
360 methodBody = returnType.isVoid() ? "" : "return " + returnType.defaultReturnString() + ";";
362 methodBody = generateMethodBody(ctClass, ctMethod, returnCtClass, returnType, aStatic, shouldGenerateCallToSuper);
366 methodBody += returnType.isVoid() ? "" : "return " + returnType.defaultReturnString() + ";";
371 public String generateMethodBody(CtClass ctClass, CtMethod ctMethod, CtClass returnCtClass, Type returnType, boolean isStatic, boolean shouldGenerateCallToSuper) throws NotFoundException
    [all...]
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
JavassistHelper.java 75 CtClass returnType = ((CtMethod) method).getReturnType();
76 String returnTypeName = returnType.getName();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableMethod.java 54 @Nonnull protected final String returnType;
62 @Nonnull String returnType,
69 this.returnType = returnType;
78 @Nonnull String returnType,
85 this.returnType = returnType;
109 @Override @Nonnull public String getReturnType() { return returnType; }
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
TransformClassAdapter.java 97 String returnType = t.getInternalName();
98 if (returnType != null) {
99 if (mDeleteReturns.contains(returnType)) {
129 return new StubMethodAdapter(mw, name, returnType(desc), invokeSignature,
141 Type returnType(String desc) {
  /libcore/ojluni/src/lambda/java/java/lang/invoke/
MethodType.java 91 public Class<?> returnType() { return null; }
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 35 private final Type returnType;
96 Type returnType = Type.internReturnType(descriptor.substring(at));
103 result = new Prototype(descriptor, returnType, parameterTypes);
183 * @param returnType {@code non-null;} the return type
187 public static Prototype internInts(Type returnType, int count) {
199 sb.append(returnType.getDescriptor());
211 private Prototype(String descriptor, Type returnType,
217 if (returnType == null) {
218 throw new NullPointerException("returnType == null");
226 this.returnType = returnType
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 35 private final Type returnType;
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) {
203 sb.append(returnType.getDescriptor());
215 private Prototype(String descriptor, Type returnType,
221 if (returnType == null) {
222 throw new NullPointerException("returnType == null");
230 this.returnType = returnType
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Prototype.java 35 private final Type returnType;
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) {
203 sb.append(returnType.getDescriptor());
215 private Prototype(String descriptor, Type returnType,
221 if (returnType == null) {
222 throw new NullPointerException("returnType == null");
230 this.returnType = returnType
    [all...]

Completed in 1899 milliseconds

1 2 3 4 5 6 7 8 91011>>