Searched refs:method (Results 101 - 121 of 121) sorted by relevance

12345

/frameworks/base/core/java/android/text/method/
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 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/libs/androidfw/
H A DAssetManager.cpp1085 int method; local
1090 //pZipFile->getEntryInfo(entry, &method, &uncompressedLen, &compressedLen,
1092 if (!pZipFile->getEntryInfo(entry, &method, &uncompressedLen, NULL, NULL,
1105 if (method == ZipFileRO::kCompressStored) {
1110 pAsset = Asset::createFromCompressedMap(dataMap, method,
/frameworks/av/media/libstagefright/rtsp/
H A DMyTransmitter.h290 AString *request, const char *method, const char *url) {
310 A2.append(method);
289 addAuthentication( AString *request, const char *method, const char *url) argument
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java893 private void processException(String method, Exception e) { argument
894 Log.e("RemoteViewsAdapter", "Error in " + method + ": " + e.getMessage());
1065 * This method allows an AdapterView using this Adapter to provide information about which
H A DSpellChecker.java25 import android.text.method.WordIterator;
H A DEditor.java53 import android.text.method.KeyListener;
54 import android.text.method.MetaKeyKeyListener;
55 import android.text.method.MovementMethod;
56 import android.text.method.PasswordTransformationMethod;
57 import android.text.method.WordIterator;
203 // The get method will add the listener on controller creation.
276 // The user is entering text, so the input method is needed. We
542 * Unlike {@link TextView#textCanBeSelected()}, this method is based on the <i>current</i> state
552 * a password transformation. We should hence use isPasswordInputType instead of this method.
560 * However, this is like this for legacy reasons and we cannot break existing apps. This method
[all...]
H A DNumberPicker.java34 import android.text.method.NumberKeyListener;
616 // its draw() method is not called but dispatchDraw() is called
619 // draw() method to be called. Therefore, we declare we will draw.
1240 * not wrap. Hence, in such a case calling this method is a NOP.
1905 // soft input method!
/frameworks/base/services/java/com/android/server/
H A DTelephonyRegistry.java741 private boolean checkNotifyPermission(String method) { argument
746 String msg = "Modify Phone State Permission Denial: " + method + " from pid="
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp182 jmethodID method = env->GetMethodID(clazz, "set", "(IIJI)V"); local
183 env->CallVoidMethod(bufferInfo, method, offset, size, timeUs, flags);
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java30 import android.text.method.MetaKeyKeyListener;
H A DInputMethodManager.java58 * Central system API to the overall input method framework (IMF) architecture,
59 * which arbitrates interaction between applications and the current input method.
74 * <p>There are three primary parties involved in the input method
78 * <li> The <strong>input method manager</strong> as expressed by this class
83 * <li> An <strong>input method (IME)</strong> implements a particular
85 * to the current input method that is use, causing it to be created and run,
88 * method manager for input focus and control over the state of the IME. Only
103 * text views, so that the input method will have enough context to help the
105 * <li> Deal well with losing screen space when the input method is
119 * area, letting the user pick an input method, et
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewPlayer.cpp58 void (PreviewPlayer::*method)())
60 mMethod(method) {
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp71 void (AwesomePlayer::*method)())
73 mMethod(method) {
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionGroup.java147 // TODO: remove this method once SipWakeupTimer can better handle variety
1642 * method; false otherwise
1644 private static boolean isRequestEvent(String method, EventObject event) { argument
1648 return method.equals(requestEvent.getRequest().getMethod());
1660 * @return true if the event is a response event and the CSeqHeader method
1675 * CSeqHeader method match the given arguments; false otherwise
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java38 import android.text.method.MovementMethod;
90 * <p>An input method has significant discretion in how it goes about its
94 * to decide how to use them. For example, one input method could implement
122 * however else your input method wants to generate text. Most implementations
143 * <p>Often while the user is generating raw text, an input method wants to
163 * <p>Sometimes your input method UI is too large to integrate with the
165 * accomplished by switching to full-screen mode, causing the input method
201 * retrieved with {@link #getCurrentInputEditorInfo()} method. The most
206 * raw key events to it. An input method will also want to look at other
230 * This input method wil
[all...]
/frameworks/base/core/java/android/view/
H A DKeyEvent.java21 import android.text.method.MetaKeyKeyListener;
59 * input method. In particular, the default software keyboard will never send any
262 * interpreted as an ALT key by {@link android.text.method.MetaKeyKeyListener}. */
927 * {#link {@link #getRepeatCount()} method returns the number of times
2066 * {@link #META_SHIFT_LEFT_ON}, then this method ensures that the
2069 * {@link #META_SHIFT_ON}, then this method ensures that the modifier
2073 * then this method throws an illegal argument exception.
2155 * {@link #META_SHIFT_LEFT_ON}, then this method ensures that the
2158 * {@link #META_SHIFT_ON}, then this method ensures that the modifier
2162 * then this method throw
[all...]
/frameworks/base/media/java/android/media/
H A DAudioService.java1582 * This method must be called at first when sound effects are enabled
1697 * This method can be called to free some memory when
2546 boolean checkAudioSettingsPermission(String method) { argument
2551 String msg = "Audio Settings Permission Denial: " + method + " from pid="
4051 unlinkToDeath(); // unlink exception handled inside method
4722 unlinkToRcClientDeath();// unlink exception handled inside method
5035 * this method.
5187 * Note: using this method with rcClient == null is a way to "disable" the IRemoteControlClient
/frameworks/base/core/java/android/app/
H A DActivity.java55 import android.text.method.TextKeyListener;
268 * create views, bind data to lists, etc. This method also
307 * CPU, etc. Implementations of this method must be very quick because
308 * the next activity will not be resumed until this method returns.
338 * Activity#isFinishing} method.</td>
346 * are marked as being killable, after that method returns the process hosting the
349 * {@link #onPause} method to write any persistent data (such as user edits)
350 * to storage. In addition, the method
371 * process will not be killed by the system starting from the time the method
409 * {@link #onConfigurationChanged} method instea
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java51 import android.text.method.QwertyKeyListener;
342 * Convenience method: Append the specified text slice to the TextView's
1290 * this subclass method filters on the range from
1494 // Use this method to generate text to add to the list of addresses.
1523 // Use this method to generate text to display in a chip.
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java61 import android.text.method.ArrowKeyMovementMethod;

Completed in 357 milliseconds

12345