Searched refs:method (Results 26 - 50 of 91) sorted by relevance

1234

/frameworks/base/core/java/android/text/method/
H A DBaseKeyListener.java17 package android.text.method;
22 import android.text.method.TextKeyListener.Capitalize;
H A DDialerKeyListener.java17 package android.text.method;
48 * Overrides the superclass's lookup method to prefer the number field
H A DMultiTapKeyListener.java17 package android.text.method;
24 import android.text.method.TextKeyListener.Capitalize;
217 for (Object method : methods) {
218 content.removeSpan(method);
H A DDigitsKeyListener.java17 package android.text.method;
H A DNumberKeyListener.java17 package android.text.method;
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestMethod.java36 public TestMethod(Method method, Class<? extends TestCase> enclosingClass) { argument
37 this(method.getName(), enclosingClass);
H A DTestGrouping.java111 * @return The {@link TestGrouping} for method chaining.
133 * @return The {@link TestGrouping} for method chaining.
144 * if that method was never called.
243 public boolean apply(Method method) { argument
244 return ((method.getParameterTypes().length == 0) &&
245 (method.getName().startsWith("test")) &&
246 (method.getReturnType().getSimpleName().equals("void")));
/frameworks/base/core/tests/coretests/src/android/text/util/
H A DLinkifyTest.java21 import android.text.method.LinkMovementMethod;
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java62 String method, Map<String, String> headers,
71 mMethod = method == null? "GET" : method;
86 String method, Map<String, String> headers,
89 this(requestQueue, url, uri, method, headers, bodyProvider, bodyLength,
265 * @return HTTP request method (GET, PUT, etc).
61 RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, String method, Map<String, String> headers, InputStream bodyProvider, int bodyLength, Request request) argument
85 RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, String method, Map<String, String> headers, InputStream bodyProvider, int bodyLength, Request request, Connection conn) argument
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
/frameworks/base/libs/utils/
H A DZipFileRO.cpp87 #define kCDEMethod 10 // offset to compression method
496 int method = get2LE(ptr + kCDEMethod); local
498 *pMethod = method;
605 if (method == kCompressStored &&
680 int method; local
685 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL);
710 if (method == kCompressStored) {
740 int method; local
745 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL);
754 if (method
[all...]
H A DAsset.cpp168 int method; local
191 scanResult = ZipUtils::examineGzip(fp, &method, &uncompressedLen,
202 result = pAsset->openChunk(fd, offset, method, uncompressedLen,
276 int method, size_t uncompressedLen, AccessMode mode)
282 result = pAsset->openChunk(dataMap, method, uncompressedLen);
275 createFromCompressedMap(FileMap* dataMap, int method, size_t uncompressedLen, AccessMode mode) argument
/frameworks/base/services/java/com/android/server/
H A DMountService.java293 final String method; field in class:MountService.UmsEnableCallBack
295 UmsEnableCallBack(String path, String method, boolean force) { argument
297 this.method = method;
303 doShareUnshareVolume(path, method, true);
495 private void doShareUnshareVolume(String path, String method, boolean enable) { argument
497 if (!method.equals("ums")) {
498 throw new IllegalArgumentException(String.format("Method %s not supported", method));
503 "volume %sshare %s %s", (enable ? "" : "un"), path, method));
649 // FMT: NNN Share method <metho
791 doGetShareMethodAvailable(String method) argument
938 doGetVolumeShared(String path, String method) argument
974 notifyShareAvailabilityChange(String method, final boolean avail) argument
[all...]
H A DInputMethodManagerService.java133 final IInputMethod method; field in class:InputMethodManagerService.SessionState
139 + " method " + Integer.toHexString(
140 System.identityHashCode(method))
149 method = _method;
190 * Id of the currently selected input method.
201 * The client that is currently bound to an input method.
221 * The input method ID of the input method service that we are currently
233 * Set if the client has asked for the input method to be shown.
238 * Set if we were explicitly told to show the input method
438 MethodCallback(IInputMethod method) argument
851 onSessionCreated(IInputMethod method, IInputMethodSession session) argument
[all...]
/frameworks/base/voip/java/android/net/sip/
H A DSimpleSessionDescription.java161 * Returns the encryption method or {@code null} if it is not present.
175 * Sets the encryption method and the encryption key. The field will be
176 * removed if the method is {@code null}.
178 public void setEncryption(String method, String key) { argument
179 mFields.setEncryption(method, key);
426 * Returns the encryption method or {@code null} if it is not present.
450 * Sets the encryption method and the encryption key. The field will be
451 * removed if the method is {@code null}.
453 public void setEncryption(String method, String key) { argument
454 set("k", '=', (method
[all...]
/frameworks/base/tools/aidl/
H A Daidl_language.h100 method_type* method; member in union:lexer_type
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java121 public Bundle call(String method, String request, Bundle args) argument
123 return MockContentProvider.this.call(method, request, args);
170 throw new UnsupportedOperationException("unimplemented mock method");
175 throw new UnsupportedOperationException("unimplemented mock method");
180 throw new UnsupportedOperationException("unimplemented mock method");
185 throw new UnsupportedOperationException("unimplemented mock method");
191 throw new UnsupportedOperationException("unimplemented mock method");
196 throw new UnsupportedOperationException("unimplemented mock method");
204 throw new UnsupportedOperationException("unimplemented mock method");
209 throw new UnsupportedOperationException("unimplemented mock method");
221 call(String method, String request, Bundle args) argument
[all...]
H A DMockIContentProvider.java46 throw new UnsupportedOperationException("unimplemented mock method");
52 throw new UnsupportedOperationException("unimplemented mock method");
58 throw new UnsupportedOperationException("unimplemented mock method");
62 throw new UnsupportedOperationException("unimplemented mock method");
67 throw new UnsupportedOperationException("unimplemented mock method");
71 throw new UnsupportedOperationException("unimplemented mock method");
75 throw new UnsupportedOperationException("unimplemented mock method");
79 throw new UnsupportedOperationException("unimplemented mock method");
84 throw new UnsupportedOperationException("unimplemented mock method");
89 throw new UnsupportedOperationException("unimplemented mock method");
97 call(String method, String request, Bundle args) argument
[all...]
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java95 * Implemented method of the interface TestListener which will listen for the
105 * Implemented method of the interface TestListener which will listen for the
118 * Implemented method of the interface TestListener which will listen for an
284 Method method = getChildrenMethod(clazz);
285 if (method != null) {
286 String[] children = getChildren(method);
376 + " children method: " + className);
560 throw new RuntimeException("couldn't get children method for "
584 throw new RuntimeException("children method is not static");
689 Method method
[all...]
/frameworks/base/core/java/android/widget/
H A DDialerFilter.java27 import android.text.method.DialerKeyListener;
28 import android.text.method.KeyListener;
29 import android.text.method.TextKeyListener;
/frameworks/base/core/java/android/content/
H A DIContentProvider.java65 * Call an provider-defined method. This can be used to implement
68 * @param method Method name to call. Opaque to framework.
69 * @param request Nullable String argument passed to method.
70 * @param args Nullable Bundle argument passed to method.
72 public Bundle call(String method, String request, Bundle args) throws RemoteException; argument
H A DContentProvider.java71 * main thread, and must avoid performing lengthy operations. See the method
248 public Bundle call(String method, String request, Bundle args) { argument
249 return ContentProvider.this.call(method, request, args);
376 * this content provider. This method can be called from multiple
398 * this content provider. This method can be called from multiple
420 * this content provider. This method can be called from multiple
431 * This method is called for all registered content providers on the
448 * from this method. (Instead, override
458 * This method is always called on the application main thread, and must
462 * Override this method t
839 call(String method, String request, Bundle args) argument
[all...]
H A DContentProviderNative.java250 String method = data.readString();
254 Bundle responseBundle = call(method, stringArg, args);
549 public Bundle call(String method, String request, Bundle args) argument
556 data.writeString(method);
/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java21 import android.text.method.KeyListener;
67 // new method.
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPasswordUnlockScreen.java31 import android.text.method.DigitsKeyListener;
32 import android.text.method.TextKeyListener;

Completed in 3373 milliseconds

1234