Searched defs:method (Results 201 - 225 of 1189) sorted by relevance

1234567891011>>

/external/testng/src/main/java/org/testng/internal/
H A DMethodInstance.java16 public MethodInstance(ITestNGMethod method) { argument
17 m_method = method;
38 .add("method", m_method)
59 // If the two methods are in the same <class>, compare them by their method
H A DRegexpExpectedExceptionsHolder.java19 private final ITestNGMethod method; field in class:RegexpExpectedExceptionsHolder
21 public RegexpExpectedExceptionsHolder(IAnnotationFinder finder, ITestNGMethod method) { argument
23 this.method = method;
51 finder.findAnnotation(method, IExpectedExceptionsAnnotation.class);
58 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class);
/external/testng/src/main/java/org/testng/internal/annotations/
H A DIAnnotationFinder.java29 * @return The annotation on the method.
39 * @return The annotation on the method.
46 * @return true if the ith parameter of the given method has the annotation @TestInstance.
48 public boolean hasTestInstance(Method method, int i); argument
51 * @return the @Optional values of this method's parameters (<code>null</code>
54 public String[] findOptionalValues(Method method); argument
57 * @return the @Optional values of this method's parameters (<code>null</code>
/external/testng/src/test/java/org/testng/internal/invokers/
H A DInvokedMethodListenerSubtypeTest.java36 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
39 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
45 public void beforeInvocation(IInvokedMethod method, ITestResult testResult, argument
49 public void afterInvocation(IInvokedMethod method, ITestResult testResult, argument
53 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
56 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
/external/testng/src/test/java/test/
H A DInvokedMethodNameListener.java20 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
21 invokedMethodNames.add(method.getTestMethod().getConstructorOrMethod().getName());
25 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
28 failedMethodNames.add(method.getTestMethod().getConstructorOrMethod().getName());
31 skippedMethodNames.add(method.getTestMethod().getConstructorOrMethod().getName());
34 succeedMethodNames.add(method.getTestMethod().getConstructorOrMethod().getName());
/external/testng/src/test/java/test/dependent/
H A DGroupByInstancesSampleTest.java14 private static void log(String method, String country) { argument
15 // System.out.println("LOG:" + method + "#" + country + " " + Thread.currentThread().getId());
16 m_log.add(method + "#" + country);
/external/testng/src/test/java/test/invokedmethodlistener/
H A DInvokedMethodNameListener.java18 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
22 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
23 String methodName = method.getTestMethod().getMethodName();
25 if (method.isTestMethod()) {
28 if (method.isConfigurationMethod()) {
31 if (method.getTestMethod().isTest()) {
34 if (method.getTestMethod().isBeforeMethodConfiguration() ||
35 method.getTestMethod().isAfterMethodConfiguration() ||
36 method.getTestMethod().isBeforeTestConfiguration() ||
37 method
[all...]
/external/testng/src/test/java/test/listeners/
H A DEndMillisShouldNotBeZeroTest.java20 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
24 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
H A DSuiteAndInvokedMethodListenerTest.java31 public void beforeInvocation(IInvokedMethod method, ITestResult result) { argument
36 public void afterInvocation(IInvokedMethod method, ITestResult result) { argument
/external/testng/src/test/java/test/methodselectors/
H A DAllTestsMethodSelector.java18 ITestNGMethod method, boolean isTestMethod)
30 // TODO Auto-generated method stub
17 includeMethod(IMethodSelectorContext context, ITestNGMethod method, boolean isTestMethod) argument
H A DNoTest1MethodSelector.java18 ITestNGMethod method, boolean isTestMethod)
20 for (String group : method.getGroups()) {
22 ppp( method.getMethodName() + " is group test1, don't include" );
27 ppp( method.getMethodName() + " is not in group test1" );
17 includeMethod(IMethodSelectorContext context, ITestNGMethod method, boolean isTestMethod) argument
H A DNoTestSelector.java18 ITestNGMethod method, boolean isTestMethod)
20 ppp("NOTEST RETURNING FALSE FOR " + method);
17 includeMethod(IMethodSelectorContext context, ITestNGMethod method, boolean isTestMethod) argument
/external/vogar/src/junit/framework/
H A DTestCase.java36 private Method method; field in class:TestCase
54 public final void setMethod(Method method) { argument
55 this.method = method;
56 this.name = method.getName();
60 if (method != null) {
61 return method;
66 * result of getName() if that method is overridden.
/external/vogar/test/vogar/target/
H A DTestRunnerRule.java39 public Statement apply(Statement base, FrameworkMethod method, Object target) { argument
41 method.getAnnotation(TestRunnerProperties.class);
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_methods.c2 * EAP server method registration
20 * eap_server_get_eap_method - Get EAP method based on type number
22 * @method: EAP type number
23 * Returns: Pointer to EAP method or %NULL if not found
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) argument
29 if (m->vendor == vendor && m->method == method)
37 * eap_server_get_type - Get EAP type for the given EAP method name
38 * @name: EAP method name, e.g., TLS
40 * Returns: EAP method typ
71 eap_server_method_alloc(int version, int vendor, EapType method, const char *name) argument
90 eap_server_method_free(struct eap_method *method) argument
106 eap_server_method_register(struct eap_method *method) argument
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_methods.c2 * EAP server method registration
20 * eap_server_get_eap_method - Get EAP method based on type number
22 * @method: EAP type number
23 * Returns: Pointer to EAP method or %NULL if not found
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) argument
29 if (m->vendor == vendor && m->method == method)
37 * eap_server_get_type - Get EAP type for the given EAP method name
38 * @name: EAP method name, e.g., TLS
40 * Returns: EAP method typ
71 eap_server_method_alloc(int version, int vendor, EapType method, const char *name) argument
90 eap_server_method_free(struct eap_method *method) argument
106 eap_server_method_register(struct eap_method *method) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_methods.c2 * EAP server method registration
20 * eap_server_get_eap_method - Get EAP method based on type number
22 * @method: EAP type number
23 * Returns: Pointer to EAP method or %NULL if not found
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) argument
29 if (m->vendor == vendor && m->method == method)
37 * eap_server_get_type - Get EAP type for the given EAP method name
38 * @name: EAP method name, e.g., TLS
40 * Returns: EAP method typ
71 eap_server_method_alloc(int version, int vendor, EapType method, const char *name) argument
90 eap_server_method_free(struct eap_method *method) argument
106 eap_server_method_register(struct eap_method *method) argument
[all...]
/external/autotest/client/cros/
H A Dservice_login.js13 'method': 'attemptLogin',
23 'method': 'clearOldAttempts'
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs77 public static object invoke( this MethodInfo method, object obj, params object[] parameters ) argument
79 return method.Invoke( obj, parameters );
/external/boringssl/src/crypto/engine/
H A Dengine.c47 /* set_method takes a pointer to a method and its given size and sets
49 * future to support making a copy of the method so that a stable ABI for
52 static int set_method(void **out_member, const void *method, size_t method_size, argument
54 const struct openssl_method_common_st *common = method;
59 *out_member = (void*) method;
63 int ENGINE_set_RSA_method(ENGINE *engine, const RSA_METHOD *method, argument
65 return set_method((void **)&engine->rsa_method, method, method_size,
73 int ENGINE_set_ECDSA_method(ENGINE *engine, const ECDSA_METHOD *method, argument
75 return set_method((void **)&engine->ecdsa_method, method, method_size,
88 struct openssl_method_common_st *method local
[all...]
/external/boringssl/src/crypto/x509v3/
H A Dv3_akey.c69 static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
71 static AUTHORITY_KEYID *v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
86 static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
114 static AUTHORITY_KEYID *v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method, argument
/external/boringssl/src/ssl/
H A Ds3_meth.c81 static const SSL_METHOD method = { local
85 return &method;
95 static const SSL_METHOD method = { local
99 return &method;
103 static const SSL_METHOD method = { local
107 return &method;
111 static const SSL_METHOD method = { local
115 return &method;
119 static const SSL_METHOD method = { local
123 return &method;
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DBenchmarkMethods.java51 throw new IllegalArgumentException("invalid method parameters: " + benchmarkMethod);
60 * <p>This method does not check the correctness of the argument types.
62 static boolean isTimeMethod(Method method) { argument
63 return method.getName().startsWith("time") && Util.isPublic(method);
67 * For instruments that use {@link #isTimeMethod} to identify their methods, this method checks
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DArbitraryMeasurementWorker.java42 @BenchmarkMethod Method method,
44 super(benchmark, method);
46 ArbitraryMeasurement annotation = method.getAnnotation(ArbitraryMeasurement.class);
40 ArbitraryMeasurementWorker( @enchmark Object benchmark, @BenchmarkMethod Method method, @WorkerOptions Map<String, String> workerOptions) argument
H A DMacrobenchmarkWorker.java47 @Inject MacrobenchmarkWorker(@Benchmark Object benchmark, @BenchmarkMethod Method method, argument
49 super(benchmark, method);

Completed in 520 milliseconds

1234567891011>>