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

1 2 3 4 5 6 7 8 91011

  /cts/tools/signature-tools/src/signature/model/
IMethod.java 34 ITypeReference getReturnType();
  /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();
SerializableMethod.java 28 returnType = method.getReturnType();
37 public Class<?> 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() {
  /cts/tools/signature-tools/src/signature/compare/model/subst/
MethodProjection.java 39 public ITypeReference getReturnType() {
41 .getReturnType(), mappings);
  /external/mockito/src/org/mockito/internal/creation/
DelegatingMethod.java 36 public Class<?> getReturnType() {
37 return method.getReturnType();
  /frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestCaseFilter.java 34 (method.getReturnType().getSimpleName().equals("void")));
  /libcore/luni/src/main/java/java/lang/
Void.java 41 return (Class<Void>) method.getReturnType();
  /libcore/libart/src/main/java/java/lang/reflect/
Method.java 64 Class<?> aReturnType = a.getReturnType();
65 Class<?> bReturnType = b.getReturnType();
183 public Class<?> getReturnType() {
184 return artMethod.findOverriddenMethodIfProxy().getReturnType();
401 result.append(getReturnType().getName());
435 result.append(Types.getSignature(getReturnType()));
  /cts/tools/signature-tools/src/signature/model/impl/
SigMethod.java 37 public ITypeReference getReturnType() {
53 builder.append(method.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());
  /dalvik/dx/src/com/android/dx/dex/file/
ProtoIdItem.java 72 sb.append(shortFormCharFor(prototype.getReturnType()));
116 typeIds.intern(prototype.getReturnType());
128 int returnIdx = file.getTypeIds().indexOf(prototype.getReturnType());
133 sb.append(prototype.getReturnType().toHuman());
151 " // " + prototype.getReturnType().toHuman());
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ProtoIdItem.java 72 sb.append(shortFormCharFor(prototype.getReturnType()));
116 typeIds.intern(prototype.getReturnType());
128 int returnIdx = file.getTypeIds().indexOf(prototype.getReturnType());
133 sb.append(prototype.getReturnType().toHuman());
151 " // " + prototype.getReturnType().toHuman());
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
SignatureSourcerTest.java 49 String result = mSourcer.getReturnType().toString();
61 String result = mSourcer.getReturnType().toString();
122 String result = mSourcer.getReturnType().toString();
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiMethod.java 56 public String getReturnType() {
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsMocks.java 26 return returnValueFor(invocation.getMethod().getReturnType());
ReturnsMoreEmptyValues.java 62 Class<?> returnType = invocation.getMethod().getReturnType();
  /external/mockito/src/org/mockito/internal/util/
ObjectMethodsGuru.java 22 return method.getReturnType() == String.class
  /external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
InvocationHandlerAdapter.java 72 public Class<?> getReturnType() {
73 return method.getReturnType();
  /cts/tools/signature-tools/test/signature/converter/
ConvertEnumTest.java 141 assertTrue(values.getReturnType() instanceof IArrayType);
142 assertSame(c, ((IClassReference)((IArrayType)values.getReturnType()).getComponentType()).getClassDefinition());
152 assertSame(c, ((IClassReference)valueOf.getReturnType()).getClassDefinition());
184 assertTrue(values.getReturnType() instanceof IArrayType);
185 assertSame(c, ((IClassReference)((IArrayType)values.getReturnType()).getComponentType()).getClassDefinition());
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 163 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
186 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
209 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
235 FT->getReturnType() != FT->getParamType(0) ||
280 FT->getReturnType() != FT->getParamType(0) ||
329 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
355 FT->getReturnType() != B.getInt8PtrTy() ||
356 FT->getParamType(0) != FT->getReturnType() ||
357 FT->getParamType(1) != FT->getReturnType())
405 FT->getReturnType() != B.getInt8PtrTy() |
    [all...]
  /external/javassist/src/main/javassist/tools/reflect/
Metaobject.java 147 public final Class getReturnType(int identifier) {
148 return methods[identifier].getReturnType();
  /external/junit/src/org/junit/runners/model/
FrameworkMethod.java 90 if (fMethod.getReturnType() != Void.TYPE)
134 && ((Class<?>) type).isAssignableFrom(fMethod.getReturnType());

Completed in 977 milliseconds

1 2 3 4 5 6 7 8 91011