Searched defs:method (Results 1 - 25 of 1189) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/es6/
H A Dspread-call-new.js36 TestClass.prototype.method = function() {
41 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).method());
52 TestClass.prototype.method = function() {
57 assertEquals([1, 2, 3], (new TestClass(...[1, 2, 3])).method());
/external/boringssl/src/crypto/x509v3/
H A Dv3_enum.c88 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method, argument
94 for(enam = method->usr_data; enam->lname; enam++) {
97 return i2s_ASN1_ENUMERATED(method, e);
H A Dv3_ia5.c70 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
71 static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str);
84 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, argument
98 static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, argument
/external/opencv3/modules/cudaimgproc/perf/
H A Dperf_match_template.cpp67 const int method = GET_PARAM(3); local
79 cv::Ptr<cv::cuda::TemplateMatching> alg = cv::cuda::createTemplateMatching(image.type(), method);
89 TEST_CYCLE() cv::matchTemplate(image, templ, dst, method);
109 int method = GET_PARAM(3); local
121 cv::Ptr<cv::cuda::TemplateMatching> alg = cv::cuda::createTemplateMatching(image.type(), method);
131 TEST_CYCLE() cv::matchTemplate(image, templ, dst, method);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/
H A DWithoutTestDefaultsRunner.java12 @Override public void internalBeforeTest(Method method) { argument
/external/testng/src/main/java/org/testng/
H A DIInvokedMethodListener.java4 * A listener that gets invoked before and after a method is invoked by TestNG.
9 void beforeInvocation(IInvokedMethod method, ITestResult testResult); argument
11 void afterInvocation(IInvokedMethod method, ITestResult testResult); argument
H A DTestNGUtils.java10 * Create an ITestNGMethod for @code{method} based on @code{existingMethod}, which needs
13 public static ITestNGMethod createITestNGMethod(ITestNGMethod existingMethod, Method method) { argument
14 return new ClonedMethod(existingMethod, method);
/external/testng/src/main/java/org/testng/internal/
H A DDataProviderHolder.java12 Method method; field in class:DataProviderHolder
15 public DataProviderHolder(IDataProviderAnnotation annotation, Method method, Object instance) { argument
17 this.method = method;
/external/apache-http/src/org/apache/http/
H A DHttpRequestFactory.java53 HttpRequest newHttpRequest(String method, String uri) argument
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/chromeos_login_ext/
H A Dmain.js8 'method': 'loginUILoaded'
13 'method': 'completeLogin',
/external/clang/test/Profile/
H A Dcxx-class.cpp48 void method() { function in class:Simple
67 S.method();
/external/clang/test/Sema/
H A Dms_wide_predefined_expr.cpp17 void method() { function in class:PR13206::A
24 x.method();
/external/dbus/dbus/
H A Ddbus-server-win.c54 const char *method; local
58 method = dbus_address_entry_get_method (entry);
60 if (strcmp (method, "autolaunch") == 0)
/external/easymock/src/org/easymock/internal/
H A DILegacyMatcherMethods.java26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher); argument
/external/guava/guava/src/com/google/common/eventbus/
H A DSynchronizedEventSubscriber.java23 * Wraps a single-argument subscriber method on a specific object, and ensures
24 * that only one thread may enter the method at a time.
33 * Creates a new SynchronizedEventSubscriber to wrap {@code method} on
36 * @param target object to which the method applies.
37 * @param method subscriber method.
39 public SynchronizedEventSubscriber(Object target, Method method) { argument
40 super(target, method);
/external/guice/extensions/persist/src/com/google/inject/persist/finder/
H A DDynamicFinder.java27 private final Method method; field in class:DynamicFinder
30 public DynamicFinder(Method method) { argument
31 this.method = method;
32 this.finder = method.getAnnotation(Finder.class);
36 * Returns some metadata if the method is annotated {@code @Finder} or null.
38 * @param method a method you want to test as a dynamic finder
40 public static DynamicFinder from(Method method) { argument
41 return method
[all...]
/external/icu/android_icu4j/cts-coverage/src/main/tests/android/icu/cts/coverage/rules/
H A DULocaleDefaultRule.java25 * the duration of the test method.
35 public Statement apply(final Statement base, FrameworkMethod method, Object target) { argument
36 final ULocaleDefault annotation = method.getAnnotation(ULocaleDefault.class);
/external/junit/src/org/junit/rules/
H A DMethodRule.java8 * A MethodRule is an alteration in how a test method is run and reported.
9 * Multiple {@link MethodRule}s can be applied to a test method. The
10 * {@link Statement} that executes the method is passed to each annotated
17 * <li>{@link ErrorCollector}: collect multiple errors in one test method</li>
21 * <li>{@link TestName}: remember the test name for use during the method</li>
22 * <li>{@link TestWatchman}: add logic at events during method execution</li>
30 * Modifies the method-running {@link Statement} to implement an additional
34 * @param method The method to be run
35 * @param target The object on with the method wil
39 apply(Statement base, FrameworkMethod method, Object target) argument
[all...]
/external/libmicrohttpd/src/microspdy/
H A Dalstructures.h47 * HTTP method
49 char *method; member in struct:SPDY_Request
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DCallbackFilter.java23 * callback. The type of the callbacks chosen for each method affects
24 * the bytecode generated for that method in the subclass, and cannot
29 * Map a method to a callback.
31 * @param method the intercepted method
33 * @return the index into the array of callbacks (as specified by {@link Enhancer#setCallbacks}) to use for the method,
35 int accept(Method method, List<Method> allMethods); argument
H A DInvocationHandler.java33 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable; argument
H A DMethodInterceptor.java27 * All generated proxied methods call this method instead of the original method.
28 * The original method may either be invoked by normal reflection using the Method object,
31 * @param method intercepted Method
33 * @param proxy used to invoke super (non-intercepted method); may be called
35 * @throws Throwable any exception may be thrown; if so, super method will not be invoked
36 * @return any value compatible with the signature of the proxied method. Method returning void will ignore this value.
39 public Object intercept(Object obj, java.lang.reflect.Method method, Object[] args, argument
/external/nist-sip/java/javax/sip/header/
H A DAllowHeader.java9 void setMethod(String method) throws ParseException; argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpMethod.java19 public static boolean invalidatesCache(String method) { argument
20 return method.equals("POST")
21 || method.equals("PATCH")
22 || method.equals("PUT")
23 || method.equals("DELETE");
26 public static boolean requiresRequestBody(String method) { argument
27 return method.equals("POST")
28 || method.equals("PUT")
29 || method.equals("PATCH");
32 public static boolean permitsRequestBody(String method) { argument
[all...]
/external/opencv3/modules/imgproc/perf/
H A Dperf_matchTemplate.cpp27 int method = get<2>(GetParam()); local
39 TEST_CYCLE() matchTemplate(img, tmpl, result, method);
42 method == TM_CCORR_NORMED ||
43 method == TM_SQDIFF_NORMED ||
44 method == TM_CCOEFF_NORMED;
61 int method = get<2>(GetParam()); local
73 TEST_CYCLE() matchTemplate(img, tmpl, result, method);
76 method == TM_CCORR_NORMED ||
77 method == TM_SQDIFF_NORMED ||
78 method
[all...]

Completed in 1187 milliseconds

1234567891011>>