HomeSort by relevance Sort by last modified time
    Searched defs:returnType (Results 1 - 25 of 1046) 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/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
MethodType.java 23 private ResolvedType returnType;
28 methodUsage.returnType(), methodUsage.exceptionTypes());
32 ResolvedType returnType,
36 this.returnType = returnType;
49 return returnType;
  /external/mockito/src/main/java/org/mockito/internal/handler/
NullResultGuardian.java 30 Class<?> returnType = invocation.getMethod().getReturnType();
31 if(result == null && returnType.isPrimitive()) {
33 return defaultValue(returnType);
  /external/mockito/src/main/java/org/mockito/internal/stubbing/defaultanswers/
ReturnsEmptyValues.java 73 Class<?> returnType = invocation.getMethod().getReturnType();
74 return returnValueFor(returnType);
ReturnsMoreEmptyValues.java 61 Class<?> returnType = invocation.getMethod().getReturnType();
62 return returnValueFor(returnType);
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
DocumentedMethod.java 10 public String returnType;
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
MethodSignature.java 10 public final String returnType;
12 private MethodSignature(String className, String methodName, String[] paramTypes, String returnType) {
16 this.returnType = returnType;
30 final String returnType = Type.getReturnType(methodDescriptor).getClassName();
31 return new MethodSignature(className, methodName, paramTypes, returnType);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableMethodProtoReference.java 46 @Nonnull protected final String returnType;
49 @Nonnull String returnType) {
51 this.returnType = returnType;
70 return returnType;
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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMethodProtoReference.java 49 @Nonnull final BuilderTypeReference returnType;
53 @Nonnull BuilderTypeReference returnType) {
56 this.returnType = returnType;
64 return returnType.getType();
  /frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
LockTargetStateAnalysis.java 49 Type returnType = Type.getReturnType(invoke.desc);
50 if (returnType.equals(Type.VOID_TYPE)) {
57 if (returnType.getDescriptor().equals(target.getTargetDesc())) {
  /external/annotation-tools/scene-lib/src/annotations/el/
AMethod.java 20 public final ATypeElement returnType; // initialized in constructor
39 returnType = new ATypeElement("return type of " + methodName);
47 returnType = method.returnType.clone();
74 && returnType.equalsTypeElement(o.returnType)
100 & returnType.prune()
127 sb.append(returnType.toString());
  /external/annotation-tools/scene-lib/src/annotations/util/
JVMNames.java 54 TypeMirror returnType = methodElement.getReturnType();
55 returnTypeStr = typeToJvmlString((Type)returnType);
81 TypeMirror returnType = methodElement.getReturnType();
82 returnTypeStr = typeToJvmlString((Type)returnType);
  /external/desugar/java/com/google/devtools/common/options/
GenericTypeHelper.java 83 Type returnType = method.getGenericReturnType();
84 if (returnType instanceof Class<?>) {
85 return returnType;
86 } else if (returnType instanceof ParameterizedType) {
87 return returnType;
88 } else if (returnType instanceof TypeVariable<?>) {
89 TypeVariable<?> variable = (TypeVariable<?>) returnType;
107 throw new AssertionError("The type " + returnType
  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/
VisitorGenerator.java 25 private final String returnType;
29 protected VisitorGenerator(SourceRoot sourceRoot, String pkg, String visitorClassName, String returnType, String argumentType, boolean createMissingVisitMethods) {
33 this.returnType = returnType;
71 .setType(returnType);
  /external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
InvocationInfo.java 46 Class<?> returnType = this.method.getReturnType();
47 return returnType == Void.TYPE|| returnType == Void.class;
Returns.java 40 if (!returnsNull() && !invocationInfo.isValidReturnType(returnType())) {
49 private Class<?> 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/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/annotation-tools/asmx/src/org/objectweb/asm/commons/
Method.java 89 * @param returnType the method's return type.
94 final Type returnType,
97 this(name, Type.getMethodDescriptor(returnType, argumentTypes));
105 * form "returnType name (argumentType1, ... argumentTypeN)", where
122 // TODO: Check validity of returnType, methodName and arguments.
123 String returnType = method.substring(0, space);
138 sb.append(map(returnType));
  /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;
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
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;
100 result.append(returnType.name);
114 && ((MethodId<?, ?>) o).returnType.equals(returnType);
123 result = 31 * result + returnType.hashCode()
    [all...]
  /external/doclava/src/com/google/doclava/
AndroidLinter.java 114 lintVariable(method.position(), "Return value of '" + method.name() + "'", method.returnType(),
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/declarations/common/
MethodDeclarationCommonLogic.java 47 ResolvedType returnType = replaceTypeParams(methodDeclaration.getReturnType(), typeSolver, context);
64 returnType = inferenceContext.resolve(inferenceContext.addSingle(returnType));
66 return new MethodUsage(methodDeclaration, params, returnType);

Completed in 229 milliseconds

1 2 3 4 5 6 7 8 91011>>