Searched defs:method (Results 26 - 50 of 1189) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/attribute/
H A DDeprecatedAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitDeprecatedAttribute(clazz, method, this);
H A DSyntheticAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitSyntheticAttribute(clazz, method, this);
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DExceptionInfoVisitor.java36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo); argument
H A DLineNumberInfoVisitor.java37 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo); argument
H A DLocalVariableInfoVisitor.java37 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo); argument
H A DLocalVariableTypeInfoVisitor.java37 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo); argument
H A DParameterInfoVisitor.java27 * This interface specifies the method for a visitor of
36 public void visitParameterInfo(Clazz clazz, Method method, int parameterIndex, ParameterInfo parameterInfo); argument
/external/proguard/src/proguard/classfile/visitor/
H A DExceptionHandlerConstantVisitor.java54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DBlockingRpcChannel.java42 * Call the given method of the remote service and blocks until it returns.
47 Descriptors.MethodDescriptor method,
46 callBlockingMethod( Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype) argument
H A DRpcChannel.java57 * Call the given method of the remote service. This method is similar to
61 * {@code request.getDescriptor() == method.getInputType()}.
64 * {@code getDescriptor() == method.getOutputType()}).
66 void callMethod(Descriptors.MethodDescriptor method, argument
/external/skia/tools/skiaserve/urlhandlers/
H A DDataHandler.cpp16 bool DataHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
23 const char* url, const char* method,
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DRootHandler.cpp16 bool RootHandler::canHandle(const char* method, const char* url) { argument
17 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
22 const char* url, const char* method,
21 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
H A DLazyVoidValue.java39 public LazyVoidValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
40 super(method, project, registerNumber, type);
/external/smali/smalidea/src/main/java/org/jf/smalidea/util/
H A DInstructionUtils.java46 @NotNull SmaliMethod method, @NotNull Opcode opcode, int targetOffset) {
47 for (SmaliInstruction instruction: method.getInstructions()) {
45 findFirstInstructionWithTarget( @otNull SmaliMethod method, @NotNull Opcode opcode, int targetOffset) argument
/external/testng/src/main/java/org/testng/
H A DIAnnotationTransformer2.java27 * @param testMethod If the annotation was found on a method,
28 * this parameter represents this method (null otherwise).
36 * @param method The method annotated with the IDataProvider annotation.
38 public void transform(IDataProviderAnnotation annotation, Method method); argument
43 * @param method The method annotated with the IFactory annotation.
45 public void transform(IFactoryAnnotation annotation, Method method); argument
H A DIInvokedMethodListener2.java11 * To be implemented if the method needs a handle to contextual information.
13 void beforeInvocation(IInvokedMethod method, ITestResult testResult, argument
17 * To be implemented if the method needs a handle to contextual information.
19 void afterInvocation(IInvokedMethod method, ITestResult testResult, argument
H A DIMethodSelector.java8 * decide whether a test method should be included in a test run.
16 * @param context The selector context. The implementation of this method
21 * @param method The test method
22 * @param isTestMethod true if this is a @Test method, false if it's a
23 * configuration method
24 * @return true if this method should be included in the test run, false
28 ITestNGMethod method, boolean isTestMethod);
31 * Invoked when all the test methods are known so that the method selector
27 includeMethod(IMethodSelectorContext context, ITestNGMethod method, boolean isTestMethod) argument
/external/testng/src/main/java/org/testng/junit/
H A DJUnitTestMethod.java14 protected JUnitTestMethod(JUnitTestClass owner, Method method, Object instance) { argument
15 this(owner, method.getName(), method, instance);
18 protected JUnitTestMethod(JUnitTestClass owner, String methodName, Method method, Object instance) { argument
19 super(methodName, method, null, instance);
/external/testng/src/main/java/org/testng/reporters/util/
H A DStackTraceTools.java15 /** Finds topmost position of the test method in the stack, or top of stack if <code>method</code> is not in it. */
16 public static int getTestRoot(StackTraceElement[] stack,ITestNGMethod method) { argument
18 String cname = method.getTestClass().getName();
21 && method.getMethodName().equals(stack[x].getMethodName())) {
31 /** Finds topmost position of the test method in the stack, or top of stack if <code>method</code> is not in it. */
32 public static StackTraceElement[] getTestNGInstrastructure(StackTraceElement[] stack,ITestNGMethod method) { argument
33 int slot=StackTraceTools.getTestRoot(stack, method);
/external/testng/src/test/java/test/annotationtransformer/
H A DMyListenerTransformer.java25 public void transform(IDataProviderAnnotation annotation, Method method) {} argument
28 public void transform(IFactoryAnnotation annotation, Method method) {} argument
/external/testng/src/test/java/test/enable/
H A DInvokedMethodListener.java16 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
17 invokedMethods.add(method.getTestMethod().getMethodName());
21 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
/external/testng/src/test/java/test/expectedexceptions/
H A DParametersExceptionTest.java28 protected void verify(Method method) { argument
/external/testng/src/test/java/test/invokedmethodlistener/
H A DInvokedMethodListener.java15 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
16 m_methods.add(method);
20 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
/external/testng/src/test/java/test/listeners/
H A DLListener.java11 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
16 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
H A DMyInvokedMethodListener.java17 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
18 increments(beforeInvocation, method);
22 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
23 increments(afterInvocation, method);
26 private static void increments(Map<String, Integer> map, IInvokedMethod method) { argument
27 String stringValue = method.getTestMethod().getMethodName();

Completed in 763 milliseconds

1234567891011>>