Searched refs:methodType (Results 1 – 7 of 7) sorted by relevance
/external/proguard/src/proguard/classfile/util/ |
D | DynamicClassReferenceInitializer.java | 337 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/smali/smali/src/main/antlr3/ |
D | smaliTreeWalker.g | 414 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/dexmaker/src/main/java/com/google/dexmaker/stock/ |
D | ProxyBuilder.java | 364 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/ |
D | LittleMock.java | 815 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/java/org/jf/smali/ |
D | smaliTreeWalker.java | 2202 String methodType; in method() local 2204 methodType = "an abstract"; in method() 2206 methodType = "a native"; in method() 2211 …e)registers_directive68.start):null), "A .locals directive is not valid in %s method", methodType); in method() 2213 …egisters_directive68.start):null), "A .registers directive is not valid in %s method", methodType); in method() 2218 …emanticException(input, I_METHOD70, "try/catch blocks cannot be present in %s method", methodType); in method() 2222 …emanticException(input, I_METHOD70, "debug directives cannot be present in %s method", methodType); in method()
|
/external/clang/lib/Parse/ |
D | ParseObjc.cpp | 646 tok::TokenKind methodType = Tok.getKind(); in ParseObjCMethodPrototype() local 648 Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, MethodImplKind, in ParseObjCMethodPrototype()
|
/external/dexmaker/src/test/java/com/google/dexmaker/ |
D | DexMakerTest.java | 157 TypeId<Method> methodType = TypeId.get(Method.class); in testCreateLocalMethodAsNull() local 159 Local<Method> localMethod = code.newLocal(methodType); in testCreateLocalMethodAsNull()
|