Home
last modified time | relevance | path

Searched refs:methodType (Results 1 – 9 of 9) sorted by relevance

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DMethodSignature.java18 static MethodSignature fromExecutableType(String methodName, ExecutableType methodType) { in fromExecutableType() argument
19 checkNotNull(methodType); in fromExecutableType()
22 for (TypeMirror parameter : methodType.getParameterTypes()) { in fromExecutableType()
25 for (TypeMirror thrownType : methodType.getThrownTypes()) { in fromExecutableType()
/external/proguard/src/proguard/classfile/util/
DDynamicClassReferenceInitializer.java337 String methodType = methodrefConstant.getType(clazz); in visitMethodrefConstant() local
340 if (methodType.equals(ClassConstants.METHOD_TYPE_DOT_CLASS_JAVAC) || in visitMethodrefConstant()
341 methodType.equals(ClassConstants.METHOD_TYPE_DOT_CLASS_JIKES)) in visitMethodrefConstant()
366 methodType, in visitMethodrefConstant()
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
DProxyBuilder.java364 TypeId<Method> methodType = TypeId.get(Method.class); in generateCodeForAllMethods() local
367 "invoke", TypeId.OBJECT, methodType, objectArrayType); in generateCodeForAllMethods()
433 Local<Method> thisMethod = code.newLocal(methodType); in generateCodeForAllMethods()
/external/littlemock/src/com/google/testing/littlemock/
DLittleMock.java815 Class<?> methodType = method.getReturnType();
825 if (!methodType.isAssignableFrom(actionType)) {
826 if (methodType.isPrimitive() &&
827 actionType.equals(PRIMITIVE_TO_BOXED_LOOKUP.get(methodType))) {
/external/smali/smali/src/main/antlr/
DsmaliTreeWalker.g414 String methodType;
416 methodType = "an abstract";
418 methodType = "a native";
423 …n(input, $registers_directive.start, "A .locals directive is not valid in \%s method", methodType);
425 …nput, $registers_directive.start, "A .registers directive is not valid in \%s method", methodType);
430 …emanticException(input, $I_METHOD, "try/catch blocks cannot be present in \%s method", methodType);
434 …emanticException(input, $I_METHOD, "debug directives cannot be present in \%s method", methodType);
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/gen/
DReflectionCacheSourceCreator.java624 …private void createTypeInvokables (JClassType c, String varName, String methodType, JAbstractMetho… in createTypeInvokables() argument
626 pb(varName + "." + methodType.toLowerCase() + "s = new " + methodType + "[] {"); in createTypeInvokables()
655 pbn(" new " + methodType + "(\"" + m.getName() + "\", "); in createTypeInvokables()
/external/smali/smali/src/main/java/org/jf/smali/
DsmaliTreeWalker.java2213 String methodType; in method() local
2215 methodType = "an abstract"; in method()
2217 methodType = "a native"; in method()
2222 …e)registers_directive68.start):null), "A .locals directive is not valid in %s method", methodType); in method()
2224 …egisters_directive68.start):null), "A .registers directive is not valid in %s method", methodType); in method()
2229 …emanticException(input, I_METHOD70, "try/catch blocks cannot be present in %s method", methodType); in method()
2233 …emanticException(input, I_METHOD70, "debug directives cannot be present in %s method", methodType); in method()
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java157 TypeId<Method> methodType = TypeId.get(Method.class); in testCreateLocalMethodAsNull() local
159 Local<Method> localMethod = code.newLocal(methodType); in testCreateLocalMethodAsNull()
/external/clang/lib/Parse/
DParseObjc.cpp1013 tok::TokenKind methodType = Tok.getKind(); in ParseObjCMethodPrototype() local
1015 Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, MethodImplKind, in ParseObjCMethodPrototype()