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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
FunctionRecord.java 11 final String returnType;
16 boolean isConstructor, String returnType, TypeRecord parentType,
22 this.returnType = returnType;
32 return returnType != null;
  /external/mockito/src/org/mockito/internal/handler/
NullResultGuardian.java 30 Class<?> returnType = invocation.getMethod().getReturnType();
31 if(result == null && returnType.isPrimitive()) {
33 return new HandyReturnValues().returnFor(returnType);
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsEmptyValues.java 79 Class<?> returnType = invocation.getMethod().getReturnType();
80 return returnValueFor(returnType);
ReturnsMoreEmptyValues.java 62 Class<?> returnType = invocation.getMethod().getReturnType();
63 return returnValueFor(returnType);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableMethodReference.java 47 @Nonnull protected final String returnType;
52 @Nonnull String returnType) {
56 this.returnType = returnType;
62 @Nonnull String returnType) {
66 this.returnType = returnType;
84 @Nonnull @Override public String getReturnType() { return returnType; }
  /cts/tools/signature-tools/src/signature/model/impl/
SigMethod.java 30 private ITypeReference returnType = Uninitialized.unset();
38 return returnType;
41 public void setReturnType(ITypeReference returnType) {
42 this.returnType = returnType;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderProtoReference.java 46 @Nonnull final BuilderTypeReference returnType;
50 @Nonnull BuilderTypeReference returnType) {
53 this.returnType = returnType;
61 return returnType.getType();
74 return returnType.equals(other.returnType) &&
82 int res = returnType.compareTo(o.returnType);
  /external/dexmaker/src/main/java/com/google/dexmaker/
MethodId.java 33 final TypeId<R> returnType;
41 MethodId(TypeId<D> declaringType, TypeId<R> returnType, String name, TypeList parameters) {
42 if (declaringType == null || returnType == null || name == null || parameters == null) {
46 this.returnType = returnType;
58 return returnType;
92 result.append(returnType.name);
105 && ((MethodId<?, ?>) o).returnType.equals(returnType);
113 result = 31 * result + returnType.hashCode()
    [all...]
  /external/mockito/src/org/mockito/internal/invocation/
SerializableMethod.java 20 private Class<?> returnType;
28 returnType = method.getReturnType();
38 return returnType;
95 if (returnType == null) {
96 if (other.returnType != null)
98 } else if (!returnType.equals(other.returnType))
  /external/proguard/src/proguard/
FullyQualifiedClassNameChecker.java 121 checkType(internalTypeEnumeration.returnType());
  /external/proguard/src/proguard/classfile/util/
InternalTypeEnumeration.java 112 public String returnType()
195 System.out.println(" Return type ["+enumeration.returnType()+"]");
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java 289 Type returnType = Type.find(returnCtClass);
302 // if (declareField(ctClass, fieldName, returnType)) {
309 String methodBody = generateMethodBody(ctClass, ctMethod, wasNative, wasAbstract, returnCtClass, returnType, isStatic, !wasFoundInClass);
357 private String generateMethodBody(CtClass ctClass, CtMethod ctMethod, boolean wasNative, boolean wasAbstract, CtClass returnCtClass, Type returnType, boolean aStatic, boolean shouldGenerateCallToSuper) throws NotFoundException {
360 methodBody = returnType.isVoid() ? "" : "return " + returnType.defaultReturnString() + ";";
362 methodBody = generateMethodBody(ctClass, ctMethod, returnCtClass, returnType, aStatic, shouldGenerateCallToSuper);
366 methodBody += returnType.isVoid() ? "" : "return " + returnType.defaultReturnString() + ";";
371 public String generateMethodBody(CtClass ctClass, CtMethod ctMethod, CtClass returnCtClass, Type returnType, boolean isStatic, boolean shouldGenerateCallToSuper) throws NotFoundException
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableMethod.java 54 @Nonnull protected final String returnType;
62 @Nonnull String returnType,
69 this.returnType = returnType;
78 @Nonnull String returnType,
85 this.returnType = returnType;
109 @Override @Nonnull public String getReturnType() { return returnType; }
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
TransformClassAdapter.java 97 String returnType = t.getInternalName();
98 if (returnType != null) {
99 if (mDeleteReturns.contains(returnType)) {
129 return new StubMethodAdapter(mw, name, returnType(desc), invokeSignature,
141 Type returnType(String desc) {
DelegateMethodAdapter.java 254 Type returnType = Type.getReturnType(mDesc);
255 mDelWriter.visitInsn(returnType.getOpcode(Opcodes.IRETURN));
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 35 private final Type returnType;
96 Type returnType = Type.internReturnType(descriptor.substring(at));
103 result = new Prototype(descriptor, returnType, parameterTypes);
183 * @param returnType {@code non-null;} the return type
187 public static Prototype internInts(Type returnType, int count) {
199 sb.append(returnType.getDescriptor());
211 private Prototype(String descriptor, Type returnType,
217 if (returnType == null) {
218 throw new NullPointerException("returnType == null");
226 this.returnType = returnType
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 35 private final Type returnType;
100 Type returnType = Type.internReturnType(descriptor.substring(at));
107 result = new Prototype(descriptor, returnType, parameterTypes);
187 * @param returnType {@code non-null;} the return type
191 public static Prototype internInts(Type returnType, int count) {
203 sb.append(returnType.getDescriptor());
215 private Prototype(String descriptor, Type returnType,
221 if (returnType == null) {
222 throw new NullPointerException("returnType == null");
230 this.returnType = returnType
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Prototype.java 35 private final Type returnType;
100 Type returnType = Type.internReturnType(descriptor.substring(at));
107 result = new Prototype(descriptor, returnType, parameterTypes);
187 * @param returnType {@code non-null;} the return type
191 public static Prototype internInts(Type returnType, int count) {
203 sb.append(returnType.getDescriptor());
215 private Prototype(String descriptor, Type returnType,
221 if (returnType == null) {
222 throw new NullPointerException("returnType == null");
230 this.returnType = returnType
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 114 CtClass returnType = methods[i].getReturnType();
116 createMemberValue(cp, returnType));
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
TraceSignatureVisitor.java 56 private StringBuffer returnType;
141 returnType = new StringBuffer();
142 return new TraceSignatureVisitor(returnType);
270 return returnType == null ? null : returnType.toString();
  /external/proguard/src/proguard/optimize/
MethodDescriptorShrinker.java 238 newDescriptorBuffer.append(internalTypeEnumeration.returnType());
300 type = internalTypeEnumeration.returnType();
  /external/smack/src/org/xbill/DNS/spi/
DNSJavaNameService.java 98 Class returnType = method.getReturnType();
99 if (returnType.equals(InetAddress[].class)) {
102 } else if (returnType.equals(byte[][].class)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLAPISpecTest.java 31 String returnType = "void";
38 GLAPISpec spec = GLAPISpec.parseLine(createSpec(returnType, funcName, args));
41 assertEquals(returnType, spec.getReturnValue().getCType());
58 private String createSpec(String returnType, String funcName, List<String> args) {
60 sb.append(String.format("%s, %s", returnType, funcName));
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 531 Type returnType = machine.getPrototype().getReturnType();
539 if (!Merger.isPossiblyAssignableFrom(returnType, encountered)) {
541 "indicates " + returnType.toHuman() +
  /dalvik/libdex/
DexProto.cpp 447 const char *returnType = methodDescriptorReturnType(descriptor);
448 assert(returnType != NULL);
450 int result = strcmp(dexProtoGetReturnType(proto), returnType);

Completed in 911 milliseconds

1 2 3 4 5 6 7 8