Searched defs:method (Results 101 - 125 of 128) sorted by last modified time

123456

/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java17 package android.text.method;
H A DHideReturnsTransformationMethod.java17 package android.text.method;
20 * This transformation method causes any carriage return characters (\r)
H A DKeyListener.java17 package android.text.method;
50 * return any other value, a soft input method will be created when the
53 * not be used, instead the soft input method will take care of managing
H A DLinkMovementMethod.java17 package android.text.method;
30 * A movement method that traverses links in the text buffer and scrolls if necessary.
H A DMetaKeyKeyListener.java17 package android.text.method;
170 * is stored into the text buffer. This method retrieves the meta state
268 * Call this method after you handle a keypress so that the meta
305 * Call this if you are a method that ignores the locked meta state
429 * Call this if you are a method that ignores the locked meta state
512 * Call this method after you handle a keypress so that the meta
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 DMultiTapKeyListener.java17 package android.text.method;
24 import android.text.method.TextKeyListener.Capitalize;
221 for (Object method : methods) {
222 content.removeSpan(method);
H A DNumberKeyListener.java17 package android.text.method;
H A DPasswordTransformationMethod.java17 package android.text.method;
H A DQwertyKeyListener.java17 package android.text.method;
20 import android.text.method.TextKeyListener.Capitalize;
406 * 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 DScrollingMovementMethod.java17 package android.text.method;
25 * A movement method that interprets movement keys by scrolling the text buffer.
H A DSingleLineTransformationMethod.java17 package android.text.method;
20 * This transformation method causes any newline characters (\n) to be
H A DTextKeyListener.java17 package android.text.method;
H A DTimeKeyListener.java17 package android.text.method;
H A DTouch.java17 package android.text.method;
H A DTransformationMethod.java17 package android.text.method;
39 * This method is called when the TextView that uses this
H A DTransformationMethod2.java16 package android.text.method;
H A DWordIterator.java18 package android.text.method;
151 // so this method can be removed.
170 // so this method can be removed.
/frameworks/base/core/java/android/view/
H A DViewDebug.java95 * When resolveId is true, and if the annotated field/method return value
388 * @deprecated This method is now unused and invoking it is a no-op
396 * @deprecated This method is now unused and invoking it is a no-op
404 * @deprecated This method is now unused and invoking it is a no-op
412 * @deprecated This method is now unused and invoking it is a no-op
420 * @deprecated This method is now unused and invoking it is a no-op
428 * @deprecated This method is now unused and invoking it is a no-op
837 * Rather than using reflection, it uses View's encode method to obtain all the properties.
1076 for (final Method method : methods) {
1077 // Ensure the method retur
1122 callMethodOnAppropriateTheadBlocking(final Method method, final Object object) argument
1617 invokeViewMethod(final View view, final Method method, final Object[] args) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java458 Log.e(LOG_TAG, "The method setOnClickFillInIntent is available " +
828 Method method;
841 method = methods.get(mPair);
842 if (method == null) {
845 method = klass.getMethod(methodName);
847 method = klass.getMethod(methodName, paramType);
850 throw new ActionException("view: " + klass.getName() + " doesn't have method: "
854 if (!method.isAnnotationPresent(RemotableViewMethod.class)) {
856 + " can't use method with RemoteViews: "
860 methods.put(new MutablePair<String, Class<?>>(methodName, paramType), method);
870 getAsyncMethod(Method method) argument
[all...]
H A DRemoteViewsAdapter.java917 private void processException(String method, Exception e) { argument
918 Log.e("RemoteViewsAdapter", "Error in " + method + ": " + e.getMessage());
1074 * This method allows an AdapterView using this Adapter to provide information about which
H A DTextView.java85 import android.text.method.AllCapsTransformationMethod;
86 import android.text.method.ArrowKeyMovementMethod;
87 import android.text.method.DateKeyListener;
88 import android.text.method.DateTimeKeyListener;
89 import android.text.method.DialerKeyListener;
90 import android.text.method.DigitsKeyListener;
91 import android.text.method.KeyListener;
92 import android.text.method.LinkMovementMethod;
93 import android.text.method.MetaKeyKeyListener;
94 import android.text.method
1914 setTransformationMethod(TransformationMethod method) argument
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp297 AString method; local
303 if (itemMeta->findString("cipher-method", &method)) {
310 method = "NONE";
312 buffer->meta()->setString("cipher-method", method.c_str());
314 if (method == "NONE") {
316 } else if (!(method == "AES-128")) {
317 ALOGE("Unsupported cipher method '%s'", method
410 AString method; local
1406 AString method; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp768 // support the method.
947 const AString &request, AString *method, AString *url) {
954 method->setTo(request, 0, space1);
988 AString method, url; local
989 GetMethodAndURL(*request, &method, &url);
999 A2.append(method);
946 GetMethodAndURL( const AString &request, AString *method, AString *url) argument

Completed in 1882 milliseconds

123456