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

1234567891011>>

/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
H A Ddaemon.conf1 resample-method = speex-float-9
/external/clang/test/Modules/Inputs/
H A Dlookup_left.h2 - (int)method;
H A Dlookup_right.h3 - (double)method;
/external/mockito/src/org/mockito/internal/util/
H A DObjectMethodsGuru.java17 public boolean isToString(Method method) { argument
18 return isToString(new DelegatingMethod(method));
21 public boolean isToString(MockitoMethod method) { argument
22 return method.getReturnType() == String.class
23 && method.getParameterTypes().length == 0
24 && method.getName().equals("toString");
27 public boolean isEqualsMethod(Method method) { argument
28 return method.getName().equals("equals")
29 && method.getParameterTypes().length == 1
30 && method
33 isHashCodeMethod(Method method) argument
38 isCompareToMethod(Method method) argument
[all...]
/external/mockito/src/org/mockito/internal/creation/
H A DDelegatingMethod.java13 private final Method method; field in class:DelegatingMethod
15 public DelegatingMethod(Method method) { argument
16 assert method != null : "Method cannot be null";
17 this.method = method;
21 return method.getExceptionTypes();
25 return method;
29 return method.getName();
33 return method.getParameterTypes();
37 return method
[all...]
/external/chromium_org/third_party/webrtc/test/
H A Dfake_common.h18 #define WEBRTC_STUB(method, args) \
19 virtual int method args OVERRIDE { return 0; }
21 #define WEBRTC_STUB_CONST(method, args) \
22 virtual int method args const OVERRIDE { return 0; }
24 #define WEBRTC_BOOL_STUB(method, args) \
25 virtual bool method args OVERRIDE { return true; }
27 #define WEBRTC_VOID_STUB(method, args) \
28 virtual void method args OVERRIDE {}
30 #define WEBRTC_FUNC(method, args) \
31 virtual int method arg
[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/chromium_org/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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpMethod.java26 public static boolean invalidatesCache(String method) { argument
27 return method.equals("POST")
28 || method.equals("PATCH")
29 || method.equals("PUT")
30 || method.equals("DELETE");
33 public static boolean hasRequestBody(String method) { argument
34 return method.equals("POST")
35 || method.equals("PUT")
36 || method.equals("PATCH")
37 || method
[all...]
/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/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFetchUtils.h16 static bool isSimpleMethod(const String& method);
18 static bool isSimpleRequest(const String& method, const HTTPHeaderMap&);
19 static bool isForbiddenMethod(const String& method);
20 static bool isUsefulMethod(const String& method) { return !isForbiddenMethod(method); } argument
23 static bool isSimpleOrForbiddenRequest(const String& method, const HTTPHeaderMap&);
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dfakewebrtccommon.h35 #define WEBRTC_STUB(method, args) \
36 virtual int method args OVERRIDE { return 0; }
38 #define WEBRTC_STUB_CONST(method, args) \
39 virtual int method args const OVERRIDE { return 0; }
41 #define WEBRTC_BOOL_STUB(method, args) \
42 virtual bool method args OVERRIDE { return true; }
45 #define WEBRTC_BOOL_STUB_CONST(method, args) \
46 virtual bool method args const OVERRIDE { return true; }
49 #define WEBRTC_VOID_STUB(method, args) \
50 virtual void method arg
[all...]
/external/clang/test/Modules/
H A Dimport-decl.cpp14 -method;
18 [import method];
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dobject-literals-method.js10 method() {
14 assertEquals(42, object.method());
20 method() {
24 object.method();
30 method() {
35 var desc = Object.getOwnPropertyDescriptor(object, 'method');
47 method() {}
50 assertEquals(Function.prototype, Object.getPrototypeOf(object.method));
56 method() {}
60 new object.method;
[all...]
/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
105 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
105 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
105 eap_server_method_register(struct eap_method *method) argument
[all...]
/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/org/junit/rules/
H A DTestWatchman.java19 * public void failed(Throwable e, FrameworkMethod method) {
20 * watchedLog+= method.getName() + &quot; &quot; + e.getClass().getSimpleName()
25 * public void succeeded(FrameworkMethod method) {
26 * watchedLog+= method.getName() + &quot; &quot; + &quot;success!\n&quot;;
46 public Statement apply(final Statement base, final FrameworkMethod method, argument
51 starting(method);
54 succeeded(method);
58 failed(t, method);
61 finished(method);
68 * Invoked when a test method succeed
72 succeeded(FrameworkMethod method) argument
81 failed(Throwable e, FrameworkMethod method) argument
89 starting(FrameworkMethod method) argument
98 finished(FrameworkMethod method) argument
[all...]
/external/guava/guava-tests/test/com/google/common/eventbus/
H A DEventHandlerTest.java43 * Checks that a no-frills, no-issues method call is properly executed.
48 Method method = getRecordingMethod();
50 EventHandler handler = new EventHandler(this, method);
54 assertTrue("Handler must call provided method.", methodCalled);
75 Method method = getRecordingMethod();
77 new EventHandler(null, method);
85 Method method = getExceptionThrowingMethod();
86 EventHandler handler = new EventHandler(this, method);
98 Method method = getErrorThrowingMethod();
99 EventHandler handler = new EventHandler(this, method);
[all...]
/external/chromium_org/net/tools/flip_server/
H A Dspdy_util.cc16 std::string EncodeURL(std::string uri, std::string host, std::string method) { argument
19 return std::string(method + "_" + uri);
26 "http://" + host + uri, method + "_/", false);
28 filename = UrlToFilenameEncoder::Encode(uri, method + "_/", false);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-362128.js20 method = {};
23 method = genM("A");
29 return method.apply(receiver, arguments);
/external/mockito/src/org/mockito/internal/stubbing/answers/
H A DMethodInfo.java17 private Method method; field in class:MethodInfo
20 this.method = theInvocation.getMethod();
24 Class<?>[] exceptions = method.getExceptionTypes();
36 if (method.getReturnType().isPrimitive() || clazz.isPrimitive()) {
37 return Primitives.primitiveTypeOf(clazz) == Primitives.primitiveTypeOf(method.getReturnType());
39 return method.getReturnType().isAssignableFrom(clazz);
44 return this.method.getReturnType() == Void.TYPE;
48 return method.getReturnType().getSimpleName();
52 return method.getName();
56 return method
[all...]
/external/proguard/src/proguard/optimize/info/
H A DBackwardBranchMarker.java41 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
44 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
46 markBackwardBranch(method, branchInstruction.branchOffset);
50 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction) argument
52 markBackwardBranch(method, switchInstruction.defaultOffset);
56 markBackwardBranch(method, switchInstruction.jumpOffsets[index]);
64 * Marks the given method if the given branch offset is negative.
66 private void markBackwardBranch(Method method, int branchOffset) argument
70 setBranchesBackward(method);
75 private static void setBranchesBackward(Method method) argument
85 branchesBackward(Method method) argument
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DBlockingService.java51 Message callBlockingMethod(Descriptors.MethodDescriptor method, argument
58 Message getRequestPrototype(Descriptors.MethodDescriptor method); argument
63 Message getResponsePrototype(Descriptors.MethodDescriptor method); argument

Completed in 9630 milliseconds

1234567891011>>