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

/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java136 public boolean performEditorAction(int actionCode) { argument
137 if (DEBUG) Log.v(TAG, "performEditorAction " + actionCode);
138 mTextView.onEditorAction(actionCode);
/frameworks/base/core/java/com/android/internal/view/
H A DIInputContext.aidl57 void performEditorAction(int actionCode);
H A DInputConnectionWrapper.java338 public boolean performEditorAction(int actionCode) { argument
340 mIInputContext.performEditorAction(actionCode);
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp630 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) {
642 switch (actionCode) {
644 actionCode = gCodecActionCodes.codecActionTransient;
647 actionCode = gCodecActionCodes.codecActionRecoverable;
650 actionCode = 0; // everything else is fatal
666 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get());
716 int32_t err, actionCode; local
718 CHECK(msg->findInt32("actionCode", &actionCode));
721 obj = (jobject)createCodecException(env, err, actionCode);
629 createCodecException( JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) argument
835 throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) argument
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp1092 int32_t err, actionCode; local
1094 CHECK(msg->findInt32("actionCode", &actionCode));
1096 ALOGE("Codec reported err %#x, actionCode %d, while in state %d",
1097 err, actionCode, mState);
1114 setState(actionCode == ACTION_CODE_FATAL ?
1121 setState(actionCode == ACTION_CODE_FATAL ?
1153 if (actionCode == ACTION_CODE_FATAL) {
1173 onError(err, actionCode);
1175 switch (actionCode) {
2796 onError(status_t err, int32_t actionCode, const char *detail) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h387 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
/frameworks/base/media/java/android/media/
H A DMediaCodec.java2061 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { argument
2064 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.java4890 * @param actionCode The code of the action being performed.
4894 public void onEditorAction(int actionCode) { argument
4899 actionCode, null)) {
4909 if (actionCode == EditorInfo.IME_ACTION_NEXT) {
4919 } else if (actionCode == EditorInfo.IME_ACTION_PREVIOUS) {
4929 } else if (actionCode == EditorInfo.IME_ACTION_DONE) {
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java570 public boolean performEditorAction(int actionCode) { argument

Completed in 284 milliseconds