HomeSort by relevance Sort by last modified time
    Searched defs:returnType (Results 26 - 50 of 700) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProducesMethodValidator.java 101 TypeMirror returnType = producesMethodElement.getReturnType();
102 TypeKind returnTypeKind = returnType.getKind();
120 validateSingleReturnType(builder, returnType);
123 validateSingleReturnType(builder, returnType);
140 && MoreTypes.isTypeOf(ListenableFuture.class, returnType)) {
141 DeclaredType declaredReturnType = MoreTypes.asDeclared(returnType);
147 validateSetType(builder, returnType);
BuilderValidator.java 113 TypeMirror returnType = resolvedMethodType.getReturnType();
116 if (types.isSameType(returnType, componentElement.asType())) {
131 } else if (returnType.getKind() != TypeKind.VOID
132 && !types.isSubtype(subject.asType(), returnType)) {
ComponentValidator.java 162 TypeMirror returnType = resolvedMethod.getReturnType();
167 checkForAnnotation(returnType, Subcomponent.class);
169 checkForAnnotation(returnType, Subcomponent.Builder.class);
171 referencedSubcomponents.put(MoreTypes.asElement(returnType), method);
176 returnType,
179 referencedSubcomponents.put(MoreTypes.asElement(returnType).getEnclosingElement(),
184 returnType,
196 if (!(returnType.getKind().equals(VOID)
197 || types.isSameType(returnType, onlyParameter))) {
254 TypeMirror returnType,
    [all...]
DependencyRequest.java 257 TypeMirror returnType = membersInjectionMethodType.getReturnType();
258 if (returnType.getKind().equals(DECLARED)
259 && MoreTypes.isTypeOf(MembersInjector.class, returnType)) {
263 Iterables.getOnlyElement(((DeclaredType) returnType).getTypeArguments())),
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviderMethodsModule.java 116 TypeLiteral<T> returnType = (TypeLiteral<T>) typeLiteral.getReturnType(method);
119 Key<T> key = getKey(errors, returnType, method, method.getAnnotations());
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 114 CtClass returnType = methods[i].getReturnType();
116 createMemberValue(cp, returnType));
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
Method.java 28 final CachedTypeLookup returnType;
44 public Method (String name, Class enclosingType, Class returnType, Parameter[] parameters, boolean isAbstract,
50 this.returnType = new CachedTypeLookup(returnType);
73 return returnType.clazz;
162 return "Method [name=" + name + ", enclosingType=" + enclosingType + ", returnType=" + returnType + ", isAbstract="
  /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 258 newDescriptorBuffer.append(internalTypeEnumeration.returnType());
323 String type = internalTypeEnumeration.returnType();
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationMethod.java 113 TypeMirror returnType = mMethod.getReturnType();
116 return new AnnotationClass(returnType);
  /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));
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateMethodAdapter.java 259 Type returnType = Type.getReturnType(mDesc);
260 mDelWriter.visitInsn(returnType.getOpcode(Opcodes.IRETURN));
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 542 Type returnType = machine.getPrototype().getReturnType();
550 if (!Merger.isPossiblyAssignableFrom(returnType, encountered)) {
552 "indicates " + returnType.toHuman() +
  /dalvik/libdex/
DexProto.cpp 447 const char *returnType = methodDescriptorReturnType(descriptor);
448 assert(returnType != NULL);
450 int result = strcmp(dexProtoGetReturnType(proto), returnType);
  /external/doclava/src/com/google/doclava/apicheck/
XmlApiFile.java 147 TypeInfo returnType = Converter.obtainTypeFromString(attributes.getValue("return"));
157 isAnnotationElement, kind, flatSignature, overriddenMethod, returnType, parameters,
  /external/guice/core/src/com/google/inject/internal/
ProviderMethodsModule.java 263 TypeLiteral<T> returnType = (TypeLiteral<T>) typeLiteral.getReturnType(method);
264 Key<T> key = getKey(errors, returnType, method, method.getAnnotations());
  /external/guice/core/src/com/google/inject/matcher/
Matchers.java 370 final Matcher<? super Class<?>> returnType) {
371 return new Returns(returnType);
375 private final Matcher<? super Class<?>> returnType;
377 public Returns(Matcher<? super Class<?>> returnType) {
378 this.returnType = checkNotNull(returnType, "return type matcher");
382 return returnType.matches(m.getReturnType());
387 && ((Returns) other).returnType.equals(returnType);
391 return 37 * returnType.hashCode()
    [all...]
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider.java 187 Key<?> returnType = getKey(factoryType.getReturnType(method), method,
189 if (!implementationKey.equals(returnType)) {
190 collector.addBinding(returnType, implementationType);
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaFinderProxy.java 74 if (JpaFinderProxy.ReturnType.PLAIN.equals(finderDescriptor.returnType)) {
76 } else if (JpaFinderProxy.ReturnType.COLLECTION.equals(finderDescriptor.returnType)) {
78 } else if (JpaFinderProxy.ReturnType.ARRAY.equals(finderDescriptor.returnType)) {
162 finderDescriptor.returnType = determineReturnType(finderDescriptor.returnClass);
200 if (JpaFinderProxy.ReturnType.COLLECTION.equals(finderDescriptor.returnType)
231 private JpaFinderProxy.ReturnType determineReturnType(Class<?> returnClass)
    [all...]
  /external/javassist/src/main/javassist/compiler/
JvstTypeChecker.java 111 CtClass returnType = codeGen.returnType;
114 compileUnwrapValue(returnType);
115 else if (returnType instanceof CtPrimitiveType) {
116 CtPrimitiveType pt = (CtPrimitiveType)returnType;
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/parsing/
RobustJavaMethodParser.java 140 String returnType = method.getType().toString();
149 return new JavaMethod(className, name, isStatic, returnType, null, arguments, method.getBeginLine(), method.getEndLine());
  /external/mesa3d/src/mesa/main/
es_generator.py 230 returnType = apiutil.ReturnType(funcName)
237 if returnType == "void":
239 elif returnType == "GLboolean":
242 errorReturn = "return (%s) 0" % returnType
588 print "extern %s GL_APIENTRY %s(%s);" % (returnType, passthroughFuncName, passthroughDeclarationString)
641 print "static %s GL_APIENTRY %s(%s)" % (returnType, fullFuncName, declarationString)
662 # that return a value (i.e. returnType is not "void"), and that
667 if returnType == "void":
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
MulticastDelegate.java 134 Type returnType = method.getSignature().getReturnType();
135 final boolean returns = returnType != Type.VOID_TYPE;
138 result = e.make_local(returnType);
139 e.zero_or_null(returnType);
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 227 String returnType = ClassUtil.internalMethodReturnType(type);
228 if (returnType.charAt(0) != ClassConstants.TYPE_VOID)
230 stack.push(getMethodReturnValue(clazz, methodrefConstant, returnType));
252 String returnType = ClassUtil.internalMethodReturnType(type);
253 if (returnType.charAt(0) != ClassConstants.TYPE_VOID)
255 stack.push(getMethodReturnValue(clazz, invokeDynamicConstant, returnType));
  /external/testng/src/main/java/org/testng/internal/
MethodInvocationHelper.java 135 Class<?> returnType = dataProvider.getReturnType();
136 if (Object[][].class.isAssignableFrom(returnType)) {
153 } else if (Iterator.class.isAssignableFrom(returnType)) {
158 + " either Object[][] or Iterator<Object>[], not " + returnType);

Completed in 1202 milliseconds

12 3 4 5 6 7 8 91011>>