Searched refs:actionCode (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java137 public boolean performEditorAction(int actionCode) { argument
138 if (DEBUG) Log.v(TAG, "performEditorAction " + actionCode);
139 mTextView.onEditorAction(actionCode);
/frameworks/base/core/java/com/android/internal/view/
H A DIInputContext.aidl56 void performEditorAction(int actionCode);
H A DInputConnectionWrapper.java323 public boolean performEditorAction(int actionCode) { argument
325 mIInputContext.performEditorAction(actionCode);
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp612 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) {
624 switch (actionCode) {
626 actionCode = gCodecActionCodes.codecActionTransient;
629 actionCode = gCodecActionCodes.codecActionRecoverable;
632 actionCode = 0; // everything else is fatal
648 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get());
698 int32_t err, actionCode; local
700 CHECK(msg->findInt32("actionCode", &actionCode));
703 obj = (jobject)createCodecException(env, err, actionCode);
611 createCodecException( JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) argument
817 throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) argument
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp1033 int32_t err, actionCode; local
1035 CHECK(msg->findInt32("actionCode", &actionCode));
1037 ALOGE("Codec reported err %#x, actionCode %d, while in state %d",
1038 err, actionCode, mState);
1055 setState(actionCode == ACTION_CODE_FATAL ?
1062 setState(actionCode == ACTION_CODE_FATAL ?
1094 if (actionCode == ACTION_CODE_FATAL) {
1114 onError(err, actionCode);
1116 switch (actionCode) {
2683 onError(status_t err, int32_t actionCode, const char *detail) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h376 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
/frameworks/base/media/java/android/media/
H A DMediaCodec.java1957 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { argument
1960 mActionCode = actionCode;
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java2277 public void onEditorAction(int actionCode) { argument
2278 super.onEditorAction(actionCode);
2279 if (actionCode == EditorInfo.IME_ACTION_DONE) {
H A DTextView.java4762 * @param actionCode The code of the action being performed.
4766 public void onEditorAction(int actionCode) { argument
4771 actionCode, null)) {
4781 if (actionCode == EditorInfo.IME_ACTION_NEXT) {
4791 } else if (actionCode == EditorInfo.IME_ACTION_PREVIOUS) {
4801 } else if (actionCode == EditorInfo.IME_ACTION_DONE) {
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java402 public boolean performEditorAction(int actionCode) { argument

Completed in 672 milliseconds