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

1 2 3 4 5 6 7 8 91011>>

  /test/suite_harness/tools/dex-tools/src/dex/structure/
DexMethod.java 35 public String getReturnType();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ProtoPool.java 55 dexPool.typeSection.intern(reference.getReturnType());
61 return MethodUtil.getShorty(reference.getParameterTypes(), reference.getReturnType());
64 @Nonnull @Override public CharSequence getReturnType(@Nonnull MethodProtoReference protoReference) {
65 return protoReference.getReturnType();
PoolMethodProto.java 53 public String getReturnType() {
54 return methodReference.getReturnType();
PoolMethod.java 78 @Override @Nonnull public String getReturnType() {
79 return method.getReturnType();
  /art/test/157-void-class/src-art/
Main.java 32 Runnable.class.getMethod("run", EmptyArray.CLASS).getReturnType();
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/declarations/
ResolvedMethodDeclaration.java 37 ResolvedType getReturnType();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
ProtoSection.java 39 @Nonnull TypeKey getReturnType(@Nonnull ProtoKey key);
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
MethodType.java 48 public ResolvedType getReturnType() {
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.cpp 73 std::unique_ptr<PDBSymbol> PDBSymbolTypeFunctionSig::getReturnType() const {
  /external/mockito/src/main/java/org/mockito/internal/invocation/
MockitoMethod.java 13 Class<?> getReturnType();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
Method.java 80 @Override @Nonnull String getReturnType();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/
MethodProtoReference.java 54 @Nonnull String getReturnType();
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(),
MethodReference.java 68 @Nonnull String getReturnType();
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/
ImmutableMethodProtoReference.java 60 methodProtoReference.getReturnType());
69 public String getReturnType() {
ImmutableMethodReference.java 78 methodReference.getReturnType());
84 @Nonnull @Override public String getReturnType() { return returnType; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
MethodReferenceRewriter.java 78 @Override @Nonnull public String getReturnType() {
79 return rewriters.getTypeRewriter().rewrite(methodReference.getReturnType());
MethodRewriter.java 83 @Override @Nonnull public String getReturnType() {
84 return rewriters.getMethodReferenceRewriter().rewrite(method).getReturnType();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMethodProtoReference.java 63 @Nonnull @Override public String getReturnType() {
BuilderMethodReference.java 65 @Nonnull @Override public String getReturnType() {
BuilderProtoPool.java 64 methodProto.getParameterTypes(), methodProto.getReturnType())),
66 dexBuilder.typeSection.internType(methodProto.getReturnType()));
73 methodReference.getParameterTypes(), methodReference.getReturnType()));
80 @Nonnull @Override public BuilderTypeReference getReturnType(@Nonnull BuilderMethodProtoReference proto) {
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliMethodPrototype.java 52 public PsiType getReturnType() {
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
MethodReferenceTest.java 67 Assert.assertNotNull(resolvedMethod.getReturnType());
68 Assert.assertEquals("long", resolvedMethod.getReturnType().getCanonicalText());
103 Assert.assertNotNull(resolvedMethod.getReturnType());
104 Assert.assertEquals("void", resolvedMethod.getReturnType().getCanonicalText());
135 Assert.assertNotNull(resolvedMethod.getReturnType());
136 Assert.assertEquals("void", resolvedMethod.getReturnType().getCanonicalText());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
ReferenceUtil.java 59 sb.append(methodReference.getReturnType());
70 sb.append(methodProtoReference.getReturnType());
90 writer.write(methodReference.getReturnType());
  /dalvik/dx/src/com/android/dx/rop/cst/
CstCallSiteRef.java 98 public Type getReturnType() {
99 return invokeDynamic.getReturnType();
  /external/mockito/src/main/java/org/mockito/internal/creation/
DelegatingMethod.java 39 public Class<?> getReturnType() {
40 return method.getReturnType();

Completed in 571 milliseconds

1 2 3 4 5 6 7 8 91011>>