HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 1 - 25 of 4107) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
daemon.conf 1 resample-method = speex-float-9
  /external/clang/test/Modules/Inputs/
lookup_left.h 2 - (int)method;
lookup_right.h 3 - (double)method;
  /external/mockito/src/org/mockito/internal/util/
ObjectMethodsGuru.java 11 import java.lang.reflect.Method;
17 public boolean isToString(Method method) {
18 return isToString(new DelegatingMethod(method));
21 public boolean isToString(MockitoMethod method) {
22 return method.getReturnType() == String.class
23 && method.getParameterTypes().length == 0
24 && method.getName().equals("toString");
27 public boolean isEqualsMethod(Method method) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtccommon.h 35 #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 args OVERRIDE {
    [all...]
  /external/mockito/src/org/mockito/internal/creation/
DelegatingMethod.java 7 import java.lang.reflect.Method;
13 private final Method method; field in class:DelegatingMethod
15 public DelegatingMethod(Method method) {
16 assert method != null : "Method cannot be null";
17 this.method = method;
21 return method.getExceptionTypes();
    [all...]
  /external/chromium_org/third_party/webrtc/test/
fake_common.h 18 #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 args OVERRID
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Allow.java 47 /** 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 {
77 if (method == null
    [all...]
  /external/chromium_org/base/android/
jni_registrar.cc 15 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++;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpMethod.java 26 public static boolean invalidatesCache(String method) {
27 return method.equals("POST")
28 || method.equals("PATCH")
29 || method.equals("PUT")
30 || method.equals("DELETE");
33 public static boolean hasRequestBody(String method) {
34 return method.equals("POST")
35 || method.equals("PUT")
36 || method.equals("PATCH")
37 || method.equals("DELETE"); // Permitted as spec is ambiguous
    [all...]
  /external/clang/test/Index/
complete-recovery.m 4 - (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/
FetchUtils.h 16 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); }
23 static bool isSimpleOrForbiddenRequest(const String& method, const HTTPHeaderMap&);
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
run 17 dx --debug --dump --method=run --rop-blocks 'ViewDebug$ViewServer.class'
  /external/clang/test/Modules/
import-decl.cpp 14 -method;
18 [import method];
  /cts/tests/tests/text/src/android/text/method/cts/
ReplacementTransformationMethodTest.java 17 package android.text.method.cts;
22 import android.text.method.ReplacementTransformationMethod;
50 MyReplacementTransformationMethod method = local
52 CharSequence result = method.getTransformation("010101", null);
55 mEditText.setTransformationMethod(method);
61 ReplacementTransformationMethod method = new MyReplacementTransformationMethod(ORIGINAL, local
65 method.getTransformation(null, null);
66 fail("The method should check whether the char sequence is null.");
71 assertEquals("", method.getTransformation("", null).toString());
76 ReplacementTransformationMethod method local
95 ReplacementTransformationMethod method = local
114 ReplacementTransformationMethod method = new MyReplacementTransformationMethod(ORIGINAL, local
    [all...]
CtsActivity.java 17 package android.text.method.cts;
20 import android.text.method.ArrowKeyMovementMethod;
21 import android.text.method.LinkMovementMethod;
22 import android.text.method.ScrollingMovementMethod;
HideReturnsTransformationMethodTest.java 17 package android.text.method.cts;
20 import android.text.method.HideReturnsTransformationMethod;
33 MyHideReturnsTranformationMethod method = new MyHideReturnsTranformationMethod(); local
34 TextMethodUtils.assertEquals(new char[] { '\r' }, method.getOriginal());
46 MyHideReturnsTranformationMethod method = new MyHideReturnsTranformationMethod(); local
47 TextMethodUtils.assertEquals(new char[] { '\uFEFF' }, method.getReplacement());
  /dalvik/dx/tests/115-merge/testdata/
Basic.java 7 String method() { method in class:Basic
8 return "this is a method result";
  /external/apache-http/src/org/apache/http/impl/
DefaultHttpRequestFactory.java 78 private static boolean isOneOf(final String[] methods, final String method) {
80 if (methods[i].equalsIgnoreCase(method)) {
92 String method = requestline.getMethod(); local
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)
106 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
object-literals-method.js 10 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/junit/src/org/junit/rules/
TestWatchman.java 19 * 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,
51 starting(method);
54 succeeded(method);
58 failed(t, method);
61 finished(method);
68 * Invoked when a test method succeed
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventHandlerTest.java 20 import java.lang.reflect.Method;
43 * Checks that a no-frills, no-issues method call is properly executed.
48 Method method = getRecordingMethod(); local
50 EventHandler handler = new EventHandler(this, method);
54 assertTrue("Handler must call provided method.", methodCalled);
75 Method method = getRecordingMethod(); local
77 new EventHandler(null, method);
85 Method method = getExceptionThrowingMethod() local
98 Method method = getErrorThrowingMethod(); local
119 Method method; local
142 Method method; local
165 Method method; local
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_float/d/
T_neg_float_5.d 6 .method public <init>()V
11 .end method
13 .method public run(F)F
18 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_int/d/
T_neg_int_6.d 6 .method public <init>()V
11 .end method
13 .method public run(I)I
18 .end method
  /external/chromium_org/net/tools/flip_server/
spdy_util.cc 16 std::string EncodeURL(std::string uri, std::string host, std::string method) {
19 return std::string(method + "_" + uri);
26 "http://" + host + uri, method + "_/", false);
28 filename = UrlToFilenameEncoder::Encode(uri, method + "_/", false);

Completed in 733 milliseconds

1 2 3 4 5 6 7 8 91011>>