/external/junit/src/org/junit/internal/runners/ |
JUnit4ClassRunner.java | 5 import java.lang.reflect.Method; 31 private final List<Method> fTestMethods; 40 protected List<Method> getTestMethods() { 60 for (Method method : fTestMethods) 61 invokeTestMethod(method, notifier); 67 List<Method> testMethods= fTestMethods; 68 for (Method method : testMethods) 69 spec.addChild(methodDescription(method)); 126 Method method= iter.next(); local [all...] |
/external/proguard/src/proguard/classfile/editor/ |
VariableRemapper.java | 73 public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute methodParametersAttribute) 89 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 93 System.out.println("VariableRemapper: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)); 102 codeAttribute.attributesAccept(clazz, method, this); 108 codeAttribute.instructionsAccept(clazz, method, this); 111 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute); 115 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute [all...] |
/art/runtime/ |
runtime-inl.h | 38 inline QuickMethodFrameInfo Runtime::GetRuntimeMethodFrameInfo(ArtMethod* method) { 39 DCHECK(method != nullptr); 40 // Cannot be imt-conflict-method or resolution-method. 41 DCHECK_NE(method, GetImtConflictMethod()); 42 DCHECK_NE(method, GetResolutionMethod()); 44 if (method == GetCalleeSaveMethodUnchecked(Runtime::kRefsAndArgs)) { 46 } else if (method == GetCalleeSaveMethodUnchecked(Runtime::kSaveAll)) { 49 DCHECK_EQ(method, GetCalleeSaveMethodUnchecked(Runtime::kRefsOnly));
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int/d/ |
T_rsub_int_1.d | 20 .method public <init>()V 25 .end method 27 .method public run(I)I 32 .end method 34 .method public run1(I)I 39 .end method 41 .method public run2(I)I 46 .end method 48 .method public run3(I)I 53 .end method [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int_lit8/d/ |
T_rsub_int_lit8_1.d | 20 .method public <init>()V 25 .end method 27 .method public run(I)I 32 .end method 34 .method public run1(I)I 39 .end method 41 .method public run2(I)I 46 .end method 48 .method public run3(I)I 53 .end method [all...] |
/external/guava/guava/src/com/google/common/reflect/ |
AbstractInvocationHandler.java | 22 import java.lang.reflect.Method; 33 * Object proxy, Method method, Object[] args) { 60 * <li>other method calls are dispatched to {@link #handleInvocation}. 63 @Override public final Object invoke(Object proxy, Method method, @Nullable Object[] args) 68 if (args.length == 0 && method.getName().equals("hashCode")) { 72 && method.getName().equals("equals") 73 && method.getParameterTypes()[0] == Object.class) { 84 if (args.length == 0 && method.getName().equals("toString")) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
CSeq.java | 59 * method field 61 protected String method; field in class:CSeq 71 * Constructor given the sequence number and method. 74 * @param method is the method string. 76 public CSeq(long seqno, String method) { 79 this.method = SIPRequest.getCannonicalName(method); 116 return buffer.append(seqno).append(SP).append(method.toUpperCase()); 120 * Get the method [all...] |
RequestLine.java | 53 /** method field. 55 protected String method; field in class:RequestLine 77 if (method != null) { 78 buffer.append(method); 97 /** Constructor given the request URI and the method. 99 public RequestLine(GenericURI requestURI, String method) { 101 this.method = method; 109 return method; 129 public void setMethod(String method) { [all...] |
/external/proguard/src/proguard/optimize/info/ |
DynamicInvocationMarker.java | 47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} 50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 54 setInvokesDynamically(method); 61 private static void setInvokesDynamically(Method method) 63 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 72 * Returns whether the given method calls the invokedynamic instruction. 74 public static boolean invokesDynamically(Method method [all...] |
SuperInvocationMarker.java | 47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} 50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 60 setInvokesSuperMethods(method); 78 private static void setInvokesSuperMethods(Method method) 80 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 88 public static boolean invokesSuperMethods(Method method) [all...] |
SideEffectMethodMarker.java | 92 // Look further if the method hasn't been marked yet. 99 // Mark the method depending on the return value. 115 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 118 hasSideEffects = hasSideEffects(clazz, method, codeAttribute); 128 Method method, 135 method.getName(clazz).equals(ClassConstants.METHOD_NAME_CLINIT) ? 148 method, 165 private static void markSideEffects(Method method [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
InvocationHandlerGenerator.java | 32 private static final Type METHOD = 33 TypeUtils.parseType("java.lang.reflect.Method"); 35 TypeUtils.parseSignature("Object invoke(Object, java.lang.reflect.Method, Object[])"); 39 MethodInfo method = (MethodInfo)it.next(); local 40 Signature impl = context.getImplSignature(method); 41 ce.declare_field(Constants.PRIVATE_FINAL_STATIC, impl.getName(), METHOD, null); 43 CodeEmitter e = context.beginMethod(ce, method); 45 context.emitCallback(e, context.getIndex(method)); 50 e.unbox(method.getSignature().getReturnType()); 53 EmitUtils.wrap_undeclared_throwable(e, handler, method.getExceptionTypes(), UNDECLARED_THROWABLE_EXCEPTION) 60 MethodInfo method = (MethodInfo)it.next(); local [all...] |
/external/opencv3/3rdparty/libjpeg/ |
jcdctmgr.c | 185 int method = 0; local 196 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 200 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 204 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 208 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 212 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 216 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 220 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 224 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 228 method = JDCT_ISLOW; /* jfdctint uses islow-style table * [all...] |
/external/proguard/src/proguard/classfile/attribute/annotation/target/visitor/ |
TargetInfoVisitor.java | 37 public void visitTypeParameterTargetInfo( Clazz clazz, Method method, TypeAnnotation typeAnnotation, TypeParameterTargetInfo typeParameterTargetInfo); 41 public void visitTypeParameterBoundTargetInfo(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TypeParameterBoundTargetInfo typeParameterBoundTargetInfo); 43 public void visitEmptyTargetInfo( Clazz clazz, Method method, TypeAnnotation typeAnnotation, EmptyTargetInfo emptyTargetInfo); 44 public void visitFormalParameterTargetInfo( Clazz clazz, Method method, TypeAnnotation typeAnnotation, FormalParameterTargetInfo formalParameterTargetInfo); 45 public void visitThrowsTargetInfo( Clazz clazz, Method method, TypeAnnotation typeAnnotation, ThrowsTargetInfo throwsTa (…) [all...] |
/external/proguard/src/proguard/optimize/ |
ParameterShrinker.java | 81 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 84 int oldParameterSize = ParameterUsageMarker.getParameterSize(method); 88 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz), 89 method.getAccessFlags()); 98 System.out.println("ParameterShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)); 113 if (ParameterUsageMarker.isParameterUsed(method, parameterIndex)) 129 // Visit the method, if required. 132 method.accept(clazz, extraVariableMemberVisitor) [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
VariableShrinker.java | 79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 81 if ((method.getAccessFlags() & ClassConstants.ACC_ABSTRACT) == 0) 85 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz), 86 method.getAccessFlags()); 93 System.out.println("VariableShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)); 99 variableUsageMarker.visitCodeAttribute(clazz, method, codeAttribute); 117 // Visit the method, if required. 120 method.accept(clazz, extraVariableMemberVisitor) [all...] |
/art/test/044-proxy/src/ |
FloatSelect.java | 25 public float method(float a, float b); method in interface:FloatSelect.FloatSelectI 29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { 40 float floatResult = proxyObject.method(2.1f, 5.8f);
|
/external/dbus/dbus/ |
dbus-server-win.c | 54 const char *method; local 58 method = dbus_address_entry_get_method (entry); 60 if (strcmp (method, "autolaunch") == 0)
|
/external/easymock/src/org/easymock/internal/ |
LegacyMatcherProvider.java | 20 import java.lang.reflect.Method;
36 private transient Map<Method, ArgumentsMatcher> matchers = new HashMap<Method, ArgumentsMatcher>();
38 public ArgumentsMatcher getMatcher(Method method) {
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) { 81 Method method = entry.getKey().getMethod(); local [all...] |
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
AnnotationVisitor.java | 39 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation); 40 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation); 41 public void visitAnnotation(Clazz clazz, Method method, CodeAttribute codeAttribute, Annotation annotation);
|
/external/proguard/src/proguard/classfile/instruction/visitor/ |
MultiInstructionVisitor.java | 84 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) 88 instructionVisitors[index].visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction); 92 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) 96 instructionVisitors[index].visitVariableInstruction(clazz, method, codeAttribute, offset, variableInstruction); 100 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 104 instructionVisitors[index].visitConstantInstruction(clazz, method, codeAttribute, offset, constantInstruction); 108 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction [all...] |
/external/proguard/src/proguard/evaluation/ |
InvocationUnit.java | 29 * This interface sets up the variables for entering a method, 37 * Sets up the given variables for entering the given method. 40 Method method, 45 * Exits the given method with the given return value. 48 Method method, 54 * field or method reference instruction. 57 Method method, [all...] |
/external/skia/tools/skiaserve/urlhandlers/ |
ClipAlphaHandler.cpp | 16 bool ClipAlphaHandler::canHandle(const char* method, const char* url) { 18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) && 23 const char* url, const char* method,
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/ |
JavassistHelper.java | 47 * @param method 48 * descriptor of method 52 public static String returnValue(CtBehavior method) throws NotFoundException { 55 if (methodReturnsValue(method)) { 62 * determine if the given method returns a value, and return true if so. 65 * @param method 69 private static boolean methodReturnsValue(CtBehavior method) throws NotFoundException { 71 if (method instanceof CtMethod == false) { 75 CtClass returnType = ((CtMethod) method).getReturnType(); 89 * @param method [all...] |
/external/testng/src/test/java/test/enable/ |
InvokedMethodListener.java | 16 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { 17 invokedMethods.add(method.getTestMethod().getMethodName()); 21 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
|