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

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/dex-tools/src/dex/structure/
DexMethod.java 35 public String getReturnType();
  /frameworks/base/tests/utils/testutils/java/android/app/test/
MockAnswerUtil.java 42 if (!implementation.getReturnType().equals(method.getReturnType())) {
44 + "type. Expected: " + method.getReturnType() + ", got "
45 + implementation.getReturnType());
  /external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
InvocationInfo.java 34 if (method.getReturnType().isPrimitive() || clazz.isPrimitive()) {
35 return Primitives.primitiveTypeOf(clazz) == Primitives.primitiveTypeOf(method.getReturnType());
37 return method.getReturnType().isAssignableFrom(clazz);
46 Class<?> returnType = this.method.getReturnType();
51 return method.getReturnType().getSimpleName();
59 return method.getReturnType().isPrimitive();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
BaseMethodProtoReference.java 47 int hashCode = getReturnType().hashCode();
55 return getReturnType().equals(other.getReturnType()) &&
63 int res = getReturnType().compareTo(o.getReturnType());
BaseMethodReference.java 48 hashCode = hashCode*31 + getReturnType().hashCode();
58 getReturnType().equals(other.getReturnType()) &&
70 res = getReturnType().compareTo(o.getReturnType());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
PoolMethodProto.java 53 public String getReturnType() {
54 return methodReference.getReturnType();
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();
  /external/mockito/src/main/java/org/mockito/internal/invocation/
MockitoMethod.java 13 Class<?> 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());
  /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 37 public Class<?> getReturnType() {
38 return method.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/writer/
ProtoSection.java 39 @Nonnull TypeKey getReturnType(@Nonnull ProtoKey key);
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestCaseFilter.java 34 (method.getReturnType().getSimpleName().equals("void")));
  /frameworks/compile/slang/
slang_rs_special_func.cpp 45 if (FD->getReturnType().getCanonicalType() == IntType) {
77 if (FD->getReturnType().getCanonicalType() != IntType) {
92 if (FD->getReturnType().getCanonicalType() != C.VoidTy) {
  /external/junit/src/main/java/org/junit/runners/model/
FrameworkMethod.java 98 if (method.getReturnType() != Void.TYPE) {
111 public Class<?> getReturnType() {
112 return method.getReturnType();
120 return getReturnType();
176 && ((Class<?>) type).isAssignableFrom(method.getReturnType());
  /libcore/ojluni/src/main/java/java/lang/reflect/
Method.java 71 Class<?> aReturnType = a.getReturnType();
72 Class<?> bReturnType = b.getReturnType();
140 public Class<?> getReturnType() {
238 if (!getReturnType().equals(other.getReturnType()))
292 sb.append(getReturnType().getTypeName()).append(' ');
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaMethod.java 56 public ModelClass getReturnType(List<ModelClass> args) {
57 return new JavaClass(mMethod.getReturnType());
62 return void.class.equals(mMethod.getReturnType());
  /art/test/157-void-class/src-art/
Main.java 32 Runnable.class.getMethod("run", EmptyArray.CLASS).getReturnType();
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 28 std::unique_ptr<PDBSymbol> getReturnType() const;
  /external/mockito/src/main/java/org/mockito/internal/util/
ObjectMethodsGuru.java 18 return m.getReturnType() == String.class &&
  /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/writer/builder/
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/testng/src/main/java/org/testng/junit/
JUnit3TestRecognizer.java 34 return m.getReturnType().isAssignableFrom(Test.class);

Completed in 932 milliseconds

1 2 3 4 5 6 7 8 91011>>