Searched refs:method (Results 1 - 25 of 1980) sorted by relevance

1234567891011>>

/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")
24 || method.equals("MOVE"); // WebDAV
27 public static boolean requiresRequestBody(String method) { argument
28 return method.equals("POST")
29 || method.equals("PUT")
30 || method
35 permitsRequestBody(String method) argument
44 redirectsToGet(String method) argument
[all...]
/external/clang/test/SemaCXX/Inputs/
H A Doverride-system-header.h5 #define STDMETHOD(method) virtual void method
6 #define IFACEMETHOD(method) STDMETHOD(method)
/external/autotest/client/deps/graphics/graphics_test_extension/
H A Dfullscreen.js5 chrome.runtime.sendMessage({method: "setFullscreen"});
H A Dmove_and_set_fullscreen.js5 chrome.runtime.sendMessage({method: "moveAndSetFullscreen"});
/external/clang/test/CodeGenCXX/
H A Ddebug-info-ptr-to-member-function.cpp5 int method();
8 void foo(int (T::*method)()) {}
/external/clang/test/Modules/Inputs/
H A Dlookup_left.h2 - (int)method;
H A Dlookup_right.h3 - (double)method;
/external/webrtc/webrtc/tools/e2e_quality/audio/
H A Ddaemon.conf1 resample-method = speex-float-9
/external/webrtc/talk/media/webrtc/
H A Dfakewebrtccommon.h35 #define WEBRTC_STUB(method, args) \
36 int method args override { return 0; }
38 #define WEBRTC_STUB_CONST(method, args) \
39 int method args const override { return 0; }
41 #define WEBRTC_BOOL_STUB(method, args) \
42 bool method args override { return true; }
44 #define WEBRTC_BOOL_STUB_CONST(method, args) \
45 bool method args const override { return true; }
47 #define WEBRTC_VOID_STUB(method, args) \
48 void method arg
[all...]
/external/mockito/src/main/java/org/mockito/internal/creation/
H A DDelegatingMethod.java14 private final Method method; field in class:DelegatingMethod
16 public DelegatingMethod(Method method) { argument
17 assert method != null : "Method cannot be null";
18 this.method = method;
22 return method.getExceptionTypes();
26 return method;
30 return method.getName();
34 return method.getParameterTypes();
38 return method
[all...]
/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/nist-sip/java/gov/nist/javax/sip/header/
H A DAllow.java47 /** method field
49 protected String method; field in class:Allow
62 method = m;
65 /** get the method field
69 return method;
73 * Set the method member
74 * @param method method to set.
76 public void setMethod(String method) throws ParseException { argument
77 if (method
[all...]
/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
H A DPropertyInfoExtensions.cs50 var method = target.GetMethod;
51 return method != null && method.IsPublic ? method : null;
60 var method = target.SetMethod;
61 return method != null && method.IsPublic ? method : null;
/external/libmojo/base/android/
H A Djni_registrar.cc15 const RegistrationMethod* method,
18 const RegistrationMethod* end = method + count;
19 while (method != end) {
20 if (!method->func(env)) {
21 DLOG(ERROR) << method->name << " failed registration!";
24 method++;
14 RegisterNativeMethods(JNIEnv* env, const RegistrationMethod* method, size_t count) argument
/external/clang/test/Index/
H A Dcomplete-recovery.m4 - (void)method:(int)x;
8 - (void)method:(int)x {
9 A *a = [A method:1];
12 z = [a2 method:1];
13 blah ? blech : [a2 method:1];
14 (a * a2)([a2 method:1]);
15 B *a = [a2 method:1];
35 // CHECK-CC3: ObjCInstanceMethodDecl:{ResultType void}{TypedText method:}{Placeholder (int)} (32)
/external/clang/test/Modules/
H A Dimport-decl.cpp14 -method;
18 [import method];
/external/mockito/src/main/java/org/mockito/internal/util/
H A DObjectMethodsGuru.java16 public static boolean isToStringMethod(Method method) { argument
17 MockitoMethod m = new DelegatingMethod(method);
23 public static boolean isCompareToMethod(Method method) { argument
24 return Comparable.class.isAssignableFrom(method.getDeclaringClass())
25 && method.getName().equals("compareTo")
26 && method.getParameterTypes().length == 1
27 && method.getParameterTypes()[0] == method.getDeclaringClass();
/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
/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/clang/test/SemaCXX/
H A Dpr25181-crash-on-invalid.cpp6 void Foo<T>::method(T *) const throw() {} // expected-error {{nested name specifier 'Foo<T>::' for declaration does not refer into a class, class template or class template partial specialization}} function in class:Foo::Foo
/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/impl/
H A DDefaultHttpRequestFactory.java78 private static boolean isOneOf(final String[] methods, final String method) { argument
80 if (methods[i].equalsIgnoreCase(method)) {
92 String method = requestline.getMethod();
93 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
95 } else if (isOneOf(RFC2616_ENTITY_ENC_METHODS, method)) {
97 } else if (isOneOf(RFC2616_SPECIAL_METHODS, method)) {
100 throw new MethodNotSupportedException(method + " method not supported");
104 public HttpRequest newHttpRequest(final String method, final String uri) argument
106 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
[all...]
/external/junit/src/main/java/org/junit/runners/model/
H A DFrameworkMethod.java12 * Represents a method on a test class to be invoked at the appropriate point in
20 private final Method method; field in class:FrameworkMethod
23 * Returns a new {@code FrameworkMethod} for {@code method}
25 public FrameworkMethod(Method method) { argument
26 if (method == null) {
28 "FrameworkMethod cannot be created without an underlying method.");
30 this.method = method;
34 * Returns the underlying Java method
37 return method;
[all...]

Completed in 702 milliseconds

1234567891011>>