Searched defs:getReturnType (Results 1 - 25 of 64) sorted by relevance

123

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DProtoSection.java39 @Nonnull TypeKey getReturnType(@Nonnull ProtoKey key); method in interface:ProtoSection
/external/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolTypeFunctionSig.cpp72 std::unique_ptr<PDBSymbol> PDBSymbolTypeFunctionSig::getReturnType() const { function in class:PDBSymbolTypeFunctionSig
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastMethod.java40 public Class getReturnType() { method in class:FastMethod
41 return ((Method)member).getReturnType();
/external/mockito/src/org/mockito/internal/creation/
H A DDelegatingMethod.java36 public Class<?> getReturnType() { method in class:DelegatingMethod
37 return method.getReturnType();
/external/mockito/src/org/mockito/internal/invocation/
H A DMockitoMethod.java13 public Class<?> getReturnType(); method in interface:MockitoMethod
H A DSerializableMethod.java28 returnType = method.getReturnType();
37 public Class<?> getReturnType() { method in class:SerializableMethod
/external/mockito/src/org/mockito/internal/stubbing/answers/
H A DReturns.java29 public Class<?> getReturnType() { method in class:Returns
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
H A DReflectionConstructor.java118 @Nonnull @Override public String getReturnType() { method in class:ReflectionConstructor
H A DReflectionMethod.java117 @Nonnull @Override public String getReturnType() { method in class:ReflectionMethod
118 return ReflectionUtils.javaToDexName(method.getReturnType().getName());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
H A DDexBackedMethodReference.java89 public String getReturnType() { method in class:DexBackedMethodReference
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
H A DMethod.java80 @Override @Nonnull String getReturnType(); method in interface:Method
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/
H A DMethodReference.java68 @Nonnull String getReturnType(); method in interface:MethodReference
79 * hashCode = hashCode*31 + getReturnType().hashCode();
91 * the return values of getDefiningClass(), getName(), getReturnType() and getParameterTypes() are all equal.
105 * getReturnType() and getParameters(), in that order. getParameters() should be compared using the semantics
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
H A DImmutableMethodReference.java78 methodReference.getReturnType());
84 @Nonnull @Override public String getReturnType() { return returnType; } method in class:ImmutableMethodReference
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
H A DMethodReferenceRewriter.java78 @Override @Nonnull public String getReturnType() { method in class:MethodReferenceRewriter.RewrittenMethodReference
79 return rewriters.getTypeRewriter().rewrite(methodReference.getReturnType());
H A DMethodRewriter.java83 @Override @Nonnull public String getReturnType() { method in class:MethodRewriter.RewrittenMethod
84 return rewriters.getMethodReferenceRewriter().rewrite(method).getReturnType();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderMethodReference.java65 @Nonnull @Override public String getReturnType() { method in class:BuilderMethodReference
H A DBuilderProtoReference.java60 @Nonnull @Override public String getReturnType() { method in class:BuilderProtoReference
66 int hashCode = getReturnType().hashCode();
H A DBuilderMethod.java68 @Nonnull @Override public String getReturnType() { return methodReference.proto.returnType.getType(); } method in class:BuilderMethod
H A DBuilderMethodPool.java141 @Nonnull @Override public String getReturnType() { method in class:BuilderMethodPool.MethodKey
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DSignature.java49 public Type getReturnType() { method in class:Signature
50 return Type.getReturnType(desc);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DPoolMethod.java78 @Override @Nonnull public String getReturnType() { method in class:PoolMethod
79 return method.getReturnType();
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DMethodId.java57 public TypeId<R> getReturnType() { method in class:MethodId
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
H A DInvocationHandlerAdapter.java72 public Class<?> getReturnType() { method in class:InvocationHandlerAdapter.ProxiedMethod
73 return method.getReturnType();
/external/javassist/src/main/javassist/tools/reflect/
H A DMetaobject.java147 public final Class getReturnType(int identifier) { method in class:Metaobject
148 return methods[identifier].getReturnType();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableMethod.java99 method.getReturnType(),
109 @Override @Nonnull public String getReturnType() { return returnType; } method in class:ImmutableMethod

Completed in 310 milliseconds

123