Searched defs:getReturnType (Results 1 - 25 of 67) 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/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/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
H A DBuilderProtoPool.java74 return internProto(methodReference.getParameterTypes(), methodReference.getReturnType());
81 @Nonnull @Override public BuilderTypeReference getReturnType(@Nonnull BuilderProtoReference key) { method in class:BuilderProtoPool
110 @Nonnull String getReturnType(); method in interface:BuilderProtoPool.ProtoKey
127 @Nonnull public String getReturnType() { method in class:BuilderProtoPool.Key
139 return getReturnType().equals(other.getReturnType()) &&
/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();
H A DProtoPool.java67 typePool.intern(method.getReturnType());
76 @Nonnull @Override public CharSequence getReturnType(@Nonnull Key key) { method in class:ProtoPool
77 return key.getReturnType();
91 @Nonnull public String getReturnType() { return method.getReturnType(); } method in class:ProtoPool.Key
97 return MethodUtil.getShorty(method.getParameterTypes(), method.getReturnType());
107 sb.append(getReturnType());
113 int hashCode = getReturnType().hashCode();
121 return getReturnType().equals(other.getReturnType())
[all...]
/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
/external/chromium_org/third_party/skia/src/animator/
H A DSkScriptCallBack.h28 virtual SkOperand2::OpType getReturnType(size_t ref, SkOperand2*) { function in class:SkScriptCallBack

Completed in 873 milliseconds

123