/frameworks/base/core/java/com/android/internal/widget/ |
D | EditableInputConnection.java | 136 public boolean performEditorAction(int actionCode) { in performEditorAction() argument 137 if (DEBUG) Log.v(TAG, "performEditorAction " + actionCode); in performEditorAction() 138 mTextView.onEditorAction(actionCode); in performEditorAction()
|
/frameworks/av/media/libstagefright/ |
D | MediaCodec.cpp | 273 virtual void onError(status_t err, enum ActionCode actionCode) override; 326 void CodecCallback::onError(status_t err, enum ActionCode actionCode) { in onError() argument 330 notify->setInt32("actionCode", actionCode); in onError() 1419 int32_t err, actionCode; in onMessageReceived() local 1421 CHECK(msg->findInt32("actionCode", &actionCode)); in onMessageReceived() 1424 err, actionCode, mState); in onMessageReceived() 1441 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived() 1447 setState(actionCode == ACTION_CODE_FATAL ? in onMessageReceived() 1454 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived() 1460 setState(actionCode == ACTION_CODE_FATAL ? in onMessageReceived() [all …]
|
/frameworks/base/media/jni/ |
D | android_media_MediaCodec.cpp | 645 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) { in createCodecException() argument 657 switch (actionCode) { in createCodecException() 659 actionCode = gCodecActionCodes.codecActionTransient; in createCodecException() 662 actionCode = gCodecActionCodes.codecActionRecoverable; in createCodecException() 665 actionCode = 0; // everything else is fatal in createCodecException() 681 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get()); in createCodecException() 731 int32_t err, actionCode; in handleCallback() local 733 CHECK(msg->findInt32("actionCode", &actionCode)); in handleCallback() 736 obj = (jobject)createCodecException(env, err, actionCode); in handleCallback() 850 static void throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) { in throwCodecException() argument [all …]
|
/frameworks/base/core/java/com/android/internal/view/ |
D | IInputContext.aidl | 58 void performEditorAction(int actionCode); in performEditorAction() argument
|
D | InputConnectionWrapper.java | 362 public boolean performEditorAction(int actionCode) { in performEditorAction() argument 364 mIInputContext.performEditorAction(actionCode); in performEditorAction()
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | CodecBase.h | 92 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
|
D | MediaCodec.h | 412 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
|
/frameworks/base/media/java/android/media/ |
D | MediaCodec.java | 2123 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { in CodecException() argument 2126 mActionCode = actionCode; in CodecException()
|
/frameworks/base/core/java/android/widget/ |
D | NumberPicker.java | 2351 public void onEditorAction(int actionCode) { in onEditorAction() argument 2352 super.onEditorAction(actionCode); in onEditorAction() 2353 if (actionCode == EditorInfo.IME_ACTION_DONE) { in onEditorAction()
|
D | TextView.java | 5924 public void onEditorAction(int actionCode) { 5929 actionCode, null)) { 5939 if (actionCode == EditorInfo.IME_ACTION_NEXT) { 5949 } else if (actionCode == EditorInfo.IME_ACTION_PREVIOUS) { 5959 } else if (actionCode == EditorInfo.IME_ACTION_DONE) {
|
/frameworks/base/core/java/android/view/inputmethod/ |
D | BaseInputConnection.java | 569 public boolean performEditorAction(int actionCode) { in performEditorAction() argument
|