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

123456

/frameworks/volley/src/com/android/volley/toolbox/
H A DJsonObjectRequest.java38 * @param method the HTTP method to use
45 public JsonObjectRequest(int method, String url, JSONObject jsonRequest, argument
47 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
H A DJsonRequest.java56 public JsonRequest(int method, String url, String requestBody, Listener<T> listener, argument
58 super(method, url, errorListener);
H A DStringRequest.java34 * Creates a new request with the given method.
36 * @param method the request {@link Method} to use
41 public StringRequest(int method, String url, Listener<String> listener, argument
43 super(method, url, errorListener);
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
H A DTestDelegates.java36 * {@link LayoutlibDelegate}, and look for a matching method in the delegate (named the same
38 * If the original native method is not static, then we make sure the delegate method also
86 // with @LayoutlibDelegate, look for a matching method in the delegate class.
87 // The annotation is automatically added by layoutlib_create when it replace a method
99 // if the method is not static, then the class is added as the first parameter
120 // try to load the method with the given parameter types.
124 // check that the method has the annotation
127 "Delegate method %1$s for class %2$s does not have the @LayoutlibDelegate annotation",
132 // check that the method i
171 getMethodName(Method method) argument
175 getMethodName(Method method, Class<?>[] parameters) argument
[all...]
/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);
/frameworks/base/core/java/android/text/method/
H A DAllCapsTransformationMethod.java16 package android.text.method;
H A DMovementMethod.java17 package android.text.method;
28 * the movement method for purposes of content navigation. The framework automatically
29 * selects an appropriate movement method based on the content of the {@link TextView}.
53 * Returns true if this movement method allows arbitrary selection
54 * of any text; false if it has no selection (like a movement method
H A DDialerKeyListener.java17 package android.text.method;
52 * 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;
221 for (Object method : methods) {
222 content.removeSpan(method);
/frameworks/support/v4/ics/android/support/v4/view/
H A DPagerTitleStripIcs.java20 import android.text.method.SingleLineTransformationMethod;
/frameworks/base/core/java/android/view/
H A DViewDebug.java87 * When resolveId is true, and if the annotated field/method return value
363 * @deprecated This method is now unused and invoking it is a no-op
371 * @deprecated This method is now unused and invoking it is a no-op
379 * @deprecated This method is now unused and invoking it is a no-op
387 * @deprecated This method is now unused and invoking it is a no-op
395 * @deprecated This method is now unused and invoking it is a no-op
403 * @deprecated This method is now unused and invoking it is a no-op
964 final Method method = methods[i];
965 if (method.getParameterTypes().length == 0 &&
966 method
1002 callMethodOnAppropriateTheadBlocking(final Method method, final Object object) argument
1463 invokeViewMethod(final View view, final Method method, final Object[] args) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DEditText.java24 import android.text.method.ArrowKeyMovementMethod;
25 import android.text.method.MovementMethod;
34 * with a key listener and a movement method wouldn't do!
/frameworks/volley/tests/src/com/android/volley/mock/
H A DTestRequest.java36 public Base(int method, String url, Response.ErrorListener listener) { argument
37 super(method, url, listener);
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.cpp137 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "booleanValue", "()Z"); local
138 result = MakeIntValue(env->CallBooleanMethod(object, method) == JNI_TRUE ? 1 : 0);
140 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "intValue", "()I"); local
141 result = MakeIntValue(env->CallIntMethod(object, method));
143 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "floatValue", "()F"); local
144 result = MakeFloatValue(env->CallFloatMethod(object, method));
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java504 public Bundle call(String method, String arg, Bundle extras) { argument
507 if (!method.startsWith("android:")) {
509 return super.call(method, arg, extras);
523 if (METHOD_CREATE_DOCUMENT.equals(method)) {
540 } else if (METHOD_DELETE_DOCUMENT.equals(method)) {
549 throw new UnsupportedOperationException("Method not supported " + method);
552 throw new IllegalStateException("Failed call " + method, e);
/frameworks/base/libs/androidfw/
H A DZipUtils.cpp281 int method, flags; local
287 method = getc(fp);
291 if (method == EOF || flags == EOF)
293 if (method != ZipFileRO::kCompressDeflated)
340 *pCompressionMethod = method;
H A DZipFileRO.cpp71 #define kCDEMethod 10 // offset to compression method
531 int method = get2LE(ptr + kCDEMethod); local
533 *pMethod = method;
646 if (method == kCompressStored &&
693 int method; local
698 if (!getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL)) {
703 if (method == kCompressStored) {
733 int method; local
739 if (!getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL)) {
766 if (method
797 int method; local
[all...]
/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java312 private void handleException(IAccountAuthenticatorResponse response, String method, argument
316 Log.v(TAG, method + "(" + data + ")", e);
321 Log.v(TAG, method + "(" + data + ")", e);
324 method + " not supported");
327 Log.v(TAG, method + "(" + data + ")", e);
330 method + " not supported");
332 Log.w(TAG, method + "(" + data + ")", e);
334 method + " failed");
/frameworks/base/core/java/android/net/http/
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...]
/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.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/base/core/tests/coretests/src/android/text/util/
H A DLinkifyTest.java21 import android.text.method.LinkMovementMethod;
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java61 public Bundle call(String method, String arg, Bundle extras) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DCompatTextView.java23 import android.text.method.TransformationMethod;
/frameworks/webview/chromium/tools/
H A Dgenerate_local_manifest.py41 method='xml')

Completed in 644 milliseconds

123456