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

12 3 4 5 6 7 8 91011>>

  /external/vogar/src/vogar/
ClassAnalyzer.java 34 Class<?> actualReturnType = candidate.getReturnType();
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 42 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getReturnType)
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 42 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getReturnType)
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 42 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getReturnType)
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 42 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getReturnType)
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 42 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getReturnType)
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 42 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getReturnType)
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 42 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getReturnType)
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFunctionSig.h 42 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getReturnType)
  /external/mockito/src/main/java/org/mockito/internal/stubbing/defaultanswers/
ForwardsInvocations.java 38 if (!compatibleReturnTypes(mockMethod.getReturnType(), delegateMethod.getReturnType())) {
ReturnsMocks.java 26 return returnValueFor(invocation.getMethod().getReturnType());
ReturnsMoreEmptyValues.java 61 Class<?> returnType = invocation.getMethod().getReturnType();
TriesToReturnSelf.java 18 Class<?> methodReturnType = invocation.getMethod().getReturnType();
  /external/mockito/src/test/java/org/mockito/internal/invocation/
SerializableMethodTest.java 59 assertEquals(toStringMethod.getReturnType(), method.getReturnType());
  /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();
  /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());
  /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();
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 504 FTy.getReturnType()->isIntegerTy());
508 return (NumParams == 2 && FTy.getReturnType()->isPointerTy() &&
509 FTy.getParamType(0) == FTy.getReturnType() &&
523 return (NumParams == 2 && FTy.getReturnType()->isPointerTy() &&
524 FTy.getParamType(0) == FTy.getReturnType() &&
525 FTy.getParamType(1) == FTy.getReturnType());
528 return (NumParams == 3 && FTy.getReturnType()->isPointerTy() &&
529 FTy.getParamType(0) == FTy.getReturnType() &&
530 FTy.getParamType(1) == FTy.getReturnType() &&
541 return (NumParams == 2 && FTy.getReturnType() == FTy.getParamType(0) &
    [all...]
  /external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/
MBeanClientTest.java 39 methods.add(String.format("%s %s(%s)", m.getReturnType().getName(),
  /external/llvm/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 92 if (F.getReturnType()->isVoidTy()) {
96 PN = PHINode::Create(F.getReturnType(), ReturningBlocks.size(),
  /external/mockito/src/main/java/org/mockito/internal/invocation/
SerializableMethod.java 33 returnType = method.getReturnType();
43 public Class<?> getReturnType() {

Completed in 1134 milliseconds

12 3 4 5 6 7 8 91011>>