HomeSort by relevance Sort by last modified time
    Searched refs:getReturnType (Results 1 - 25 of 931) 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();
  /external/mockito/src/org/mockito/internal/invocation/
MockitoMethod.java 13 public Class<?> 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());
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
MockAnswerUtil.java 42 if (!implementation.getReturnType().equals(method.getReturnType())) {
44 + "type. Expected: " + method.getReturnType() + ", got "
45 + implementation.getReturnType());
  /external/mockito/src/org/mockito/internal/stubbing/answers/
MethodInfo.java 36 if (method.getReturnType().isPrimitive() || clazz.isPrimitive()) {
37 return Primitives.primitiveTypeOf(clazz) == Primitives.primitiveTypeOf(method.getReturnType());
39 return method.getReturnType().isAssignableFrom(clazz);
44 return this.method.getReturnType() == Void.TYPE;
48 return method.getReturnType().getSimpleName();
56 return method.getReturnType().isPrimitive();
Returns.java 29 public Class<?> getReturnType() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
BaseMethodReference.java 47 hashCode = hashCode*31 + getReturnType().hashCode();
57 getReturnType().equals(other.getReturnType()) &&
69 res = getReturnType().compareTo(o.getReturnType());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ProtoPool.java 67 typePool.intern(method.getReturnType());
76 @Nonnull @Override public CharSequence getReturnType(@Nonnull Key key) {
77 return key.getReturnType();
91 @Nonnull public String getReturnType() { return method.getReturnType(); }
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/mockito/src/org/mockito/internal/creation/
DelegatingMethod.java 36 public Class<?> getReturnType() {
37 return method.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/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")));
  /libcore/ojluni/src/main/java/java/lang/
Void.java 53 return (Class<Void>) method.getReturnType();
  /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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderProtoPool.java 74 return internProto(methodReference.getParameterTypes(), methodReference.getReturnType());
81 @Nonnull @Override public BuilderTypeReference getReturnType(@Nonnull BuilderProtoReference key) {
110 @Nonnull String getReturnType();
127 @Nonnull public String getReturnType() {
139 return getReturnType().equals(other.getReturnType()) &&
BuilderProtoReference.java 60 @Nonnull @Override public String getReturnType() {
66 int hashCode = getReturnType().hashCode();
  /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());
  /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/
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/testng/src/main/java/org/testng/junit/
JUnit3TestRecognizer.java 34 return m.getReturnType().isAssignableFrom(Test.class);
  /external/vogar/src/vogar/
ClassAnalyzer.java 34 Class<?> actualReturnType = candidate.getReturnType();
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Signature.java 49 public Type getReturnType() {
50 return Type.getReturnType(desc);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastMethod.java 40 public Class getReturnType() {
41 return ((Method)member).getReturnType();
  /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());
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ProtoIdItem.java 75 sb.append(shortFormCharFor(prototype.getReturnType()));
119 typeIds.intern(prototype.getReturnType());
131 int returnIdx = file.getTypeIds().indexOf(prototype.getReturnType());
136 sb.append(prototype.getReturnType().toHuman());
154 " // " + prototype.getReturnType().toHuman());

Completed in 480 milliseconds

1 2 3 4 5 6 7 8 91011>>