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

1234

/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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DPoolMethodProto.java53 public String getReturnType() { method in class:PoolMethodProto
54 return methodReference.getReturnType();
H A DProtoPool.java61 typePool.intern(reference.getReturnType());
67 return MethodUtil.getShorty(reference.getParameterTypes(), reference.getReturnType());
70 @Nonnull @Override public CharSequence getReturnType(@Nonnull MethodProtoReference protoReference) { method in class:ProtoPool
71 return protoReference.getReturnType();
H A DPoolMethod.java78 @Override @Nonnull public String getReturnType() { method in class:PoolMethod
79 return method.getReturnType();
/external/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolTypeFunctionSig.cpp73 std::unique_ptr<PDBSymbol> PDBSymbolTypeFunctionSig::getReturnType() const { function in class:PDBSymbolTypeFunctionSig
/external/mockito/src/main/java/org/mockito/internal/creation/
H A DDelegatingMethod.java37 public Class<?> getReturnType() { method in class:DelegatingMethod
38 return method.getReturnType();
/external/mockito/src/main/java/org/mockito/internal/invocation/
H A DMockitoMethod.java13 Class<?> getReturnType(); method in interface:MockitoMethod
/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 DDexBackedMethodProtoReference.java74 public String getReturnType() { method in class:DexBackedMethodProtoReference
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 DMethodProtoReference.java54 @Nonnull String getReturnType(); method in interface:MethodProtoReference
63 * int hashCode = getReturnType().hashCode();
75 * the return values of getReturnType() and getParameterTypes() are all equal.
88 * The comparison is based on the comparison of the return values of getReturnType() and getParameters(),
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 DImmutableMethodProtoReference.java60 methodProtoReference.getReturnType());
69 public String getReturnType() { method in class:ImmutableMethodProtoReference
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 DBuilderMethodProtoReference.java63 @Nonnull @Override public String getReturnType() { method in class:BuilderMethodProtoReference
H A DBuilderMethodReference.java65 @Nonnull @Override public String getReturnType() { method in class:BuilderMethodReference
H A DBuilderProtoPool.java65 methodProto.getParameterTypes(), methodProto.getReturnType())),
67 context.typePool.internType(methodProto.getReturnType()));
74 methodReference.getParameterTypes(), methodReference.getReturnType()));
81 @Nonnull @Override public BuilderTypeReference getReturnType(@Nonnull BuilderMethodProtoReference proto) { method in class:BuilderProtoPool
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
H A DSmalideaMethod.java211 @Nonnull @Override public String getReturnType() { method in class:SmalideaMethod
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliMethodPrototype.java52 public PsiType getReturnType() { method in class:SmaliMethodPrototype
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
H A DMethodId.java57 public TypeId<R> getReturnType() { method in class:MethodId
/external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
H A DInvocationHandlerAdapter.java89 public Class<?> getReturnType() { method in class:InvocationHandlerAdapter.ProxiedMethod
90 return method.getReturnType();

Completed in 1251 milliseconds

1234