Searched defs:method (Results 26 - 50 of 78) sorted by relevance

1234

/frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
H A DTestCaseCollector.java49 * The class name may be in "<class name>#<method name>" format
63 * The class name may be in "<class name>#<method name>" format
79 * Adds class to test by providing class name and method name in separate strings
92 for (Method method : methods) {
93 if (mFilter.accept(method)) {
94 addSingleTestMethod(clazz, method.getName());
108 protected void addSingleTestMethod(Class<?> clazz, String method) { argument
114 testCase.setName(method);
137 * Determine if a class and its method should be accepted into test suite
143 * Determine that based on the method signatur
146 accept(Method method) argument
[all...]
/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java280 private void handleException(IAccountAuthenticatorResponse response, String method, argument
284 Log.v(TAG, method + "(" + data + ")", e);
289 Log.v(TAG, method + "(" + data + ")", e);
292 method + " not supported");
295 Log.v(TAG, method + "(" + data + ")", e);
298 method + " not supported");
300 Log.w(TAG, method + "(" + data + ")", e);
302 method + " failed");
/frameworks/base/core/java/android/text/method/
H A DArrowKeyMovementMethod.java17 package android.text.method;
29 * A movement method that provides cursor movement and selection.
H A DCharacterPickerDialog.java17 package android.text.method;
H A DMultiTapKeyListener.java17 package android.text.method;
24 import android.text.method.TextKeyListener.Capitalize;
221 for (Object method : methods) {
222 content.removeSpan(method);
H A DQwertyKeyListener.java17 package android.text.method;
20 import android.text.method.TextKeyListener.Capitalize;
405 * Call this method when you have done or are about to do an
H A DReplacementTransformationMethod.java17 package android.text.method;
29 * This transformation method causes the characters in the {@link #getOriginal}
H A DBaseMovementMethod.java17 package android.text.method;
147 * {@link #onKeyDown(TextView, Spannable, int, KeyEvent)} calls this method once
149 * {@link #onKeyOther(TextView, Spannable, KeyEvent)} calls this method repeatedly
H A DPasswordTransformationMethod.java17 package android.text.method;
H A DTextKeyListener.java17 package android.text.method;
H A DMetaKeyKeyListener.java17 package android.text.method;
209 * Call this method after you handle a keypress so that the meta
246 * Call this if you are a method that ignores the locked meta state
370 * Call this if you are a method that ignores the locked meta state
453 * Call this method after you handle a keypress so that the meta
/frameworks/base/core/jni/
H A Dandroid_nio_utils.cpp82 static jmethodID findStaticMethod(JNIEnv* env, jclass c, const char method[], argument
84 jmethodID m = env->GetStaticMethodID(c, method, params);
85 LOG_FATAL_IF(!m, "Unable to find method %s", method);
H A Dandroid_net_NetUtils.cpp141 jmethodID method = env->GetStaticMethodID(cls, "getByName", local
145 jobject inetAddressObject = env->CallStaticObjectMethodA(cls, method, args);
149 method = env->GetMethodID(cls, "<init>", "(Ljava/net/InetAddress;)V");
151 jobject routeInfoObject = env->NewObjectA(cls, method, args);
154 method = env->GetMethodID(cls, "addRoute", "(Landroid/net/RouteInfo;)V");
156 env->CallVoidMethodA(info, method, args);
/frameworks/base/test-runner/src/android/test/mock/
H A DMockIContentProvider.java45 throw new UnsupportedOperationException("unimplemented mock method");
51 throw new UnsupportedOperationException("unimplemented mock method");
55 throw new UnsupportedOperationException("unimplemented mock method");
60 throw new UnsupportedOperationException("unimplemented mock method");
64 throw new UnsupportedOperationException("unimplemented mock method");
68 throw new UnsupportedOperationException("unimplemented mock method");
72 throw new UnsupportedOperationException("unimplemented mock method");
77 throw new UnsupportedOperationException("unimplemented mock method");
82 throw new UnsupportedOperationException("unimplemented mock method");
87 throw new UnsupportedOperationException("unimplemented mock method");
90 call(String method, String request, Bundle args) argument
[all...]
H A DMockContentProvider.java108 public Bundle call(String method, String request, Bundle args) argument
110 return MockContentProvider.this.call(method, request, args);
173 throw new UnsupportedOperationException("unimplemented mock method");
178 throw new UnsupportedOperationException("unimplemented mock method");
183 throw new UnsupportedOperationException("unimplemented mock method");
188 throw new UnsupportedOperationException("unimplemented mock method");
194 throw new UnsupportedOperationException("unimplemented mock method");
199 throw new UnsupportedOperationException("unimplemented mock method");
207 throw new UnsupportedOperationException("unimplemented mock method");
212 throw new UnsupportedOperationException("unimplemented mock method");
224 call(String method, String request, Bundle args) argument
[all...]
/frameworks/native/libs/utils/
H A DZipUtils.cpp279 int method, flags; local
285 method = getc(fp);
289 if (method == EOF || flags == EOF)
291 if (method != ZipFileRO::kCompressDeflated)
338 *pCompressionMethod = method;
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java235 public Bundle call(String method, String arg, Bundle extras) argument
238 return mContentProvider.call(method, arg, extras);
H A DContentProviderNative.java252 String method = data.readString();
256 Bundle responseBundle = call(method, stringArg, args);
561 public Bundle call(String method, String request, Bundle args) argument
568 data.writeString(method);
H A DIContentProvider.java54 public Bundle call(String method, String arg, Bundle extras) throws RemoteException; argument
H A DContentProvider.java76 * main thread, and must avoid performing lengthy operations. See the method
255 public Bundle call(String method, String arg, Bundle extras) { argument
256 return ContentProvider.this.call(method, arg, extras);
421 * this content provider. This method can be called from multiple
443 * this content provider. This method can be called from multiple
465 * this content provider. This method can be called from multiple
476 * This method is called for all registered content providers on the
493 * from this method. (Instead, override
503 * This method is always called on the application main thread, and must
507 * Override this method t
1100 call(String method, String arg, Bundle extras) argument
[all...]
/frameworks/base/core/java/android/net/http/
H A DRequest.java102 * @param method GET/POST/PUT
111 Request(String method, HttpHost host, HttpHost proxyHost, String path, argument
122 if (bodyProvider == null && !"POST".equalsIgnoreCase(method)) {
123 mHttpRequest = new BasicHttpRequest(method, getUri());
126 method, getUri());
188 * method: it calls addHeader for each pair in the map.
468 * Derived executors can override this method to handle
471 * @param request the request, to obtain the executed method
H A DRequestQueue.java246 * If platform notifications have been enabled, call this method
289 * @param method "GET" or "POST."
297 String url, String method,
301 return queueRequest(url, uri, method, headers, eventHandler,
309 * @param method "GET" or "POST."
317 String url, WebAddress uri, String method, Map<String, String> headers,
333 req = new Request(method, httpHost, mProxyHost, uri.getPath(), bodyProvider,
344 this, url, uri, method, headers, bodyProvider, bodyLength,
371 String method, Map<String, String> headers,
380 Request req = new Request(method, hos
296 queueRequest( String url, String method, Map<String, String> headers, EventHandler eventHandler, InputStream bodyProvider, int bodyLength) argument
316 queueRequest( String url, WebAddress uri, String method, Map<String, String> headers, EventHandler eventHandler, InputStream bodyProvider, int bodyLength) argument
370 queueSynchronousRequest(String url, WebAddress uri, String method, Map<String, String> headers, EventHandler eventHandler, InputStream bodyProvider, int bodyLength) argument
[all...]
H A DRequestHandle.java63 String method, Map<String, String> headers,
72 mMethod = method == null? "GET" : method;
87 String method, Map<String, String> headers,
90 this(requestQueue, url, uri, method, headers, bodyProvider, bodyLength,
266 * @return HTTP request method (GET, PUT, etc).
62 RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, String method, Map<String, String> headers, InputStream bodyProvider, int bodyLength, Request request) argument
86 RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, String method, Map<String, String> headers, InputStream bodyProvider, int bodyLength, Request request, Connection conn) argument
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestGrouping.java113 * @return The {@link TestGrouping} for method chaining.
135 * @return The {@link TestGrouping} for method chaining.
146 * if that method was never called.
249 public boolean apply(Method method) { argument
250 return ((method.getParameterTypes().length == 0) &&
251 (method.getName().startsWith("test")) &&
252 (method.getReturnType().getSimpleName().equals("void")));
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DWifiDisplaySink.cpp408 AString method; local
410 data->getRequestField(0, &method);
418 if (method.startsWith("RTSP/")) {
445 if (method == "OPTIONS") {
447 } else if (method == "GET_PARAMETER") {
449 } else if (method == "SET_PARAMETER") {

Completed in 400 milliseconds

1234