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/av/media/libstagefright/
H A DMediaCodec.cpp733 int32_t err, actionCode; local
735 CHECK(msg->findInt32("actionCode", &actionCode));
737 ALOGE("Codec reported err %#x, actionCode %d, while in state %d",
738 err, actionCode, mState);
755 setState(actionCode == ACTION_CODE_FATAL ?
762 setState(actionCode == ACTION_CODE_FATAL ?
794 if (actionCode == ACTION_CODE_FATAL) {
814 onError(err, actionCode);
816 switch (actionCode) {
2146 onError(status_t err, int32_t actionCode, const char *detail) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp566 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) {
578 switch (actionCode) {
580 actionCode = gCodecActionCodes.codecActionTransient;
583 actionCode = gCodecActionCodes.codecActionRecoverable;
586 actionCode = 0; // everything else is fatal
590 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get());
640 int32_t err, actionCode; local
642 CHECK(msg->findInt32("actionCode", &actionCode));
645 obj = (jobject)createCodecException(env, err, actionCode);
565 createCodecException( JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) argument
733 throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DMediaCodec.h300 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
/frameworks/base/media/java/android/media/
H A DMediaCodec.java671 CodecException(int errorCode, int actionCode, String detailMessage) { argument
674 mActionCode = actionCode;
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java2220 public void onEditorAction(int actionCode) { argument
2221 super.onEditorAction(actionCode);
2222 if (actionCode == EditorInfo.IME_ACTION_DONE) {
H A DTextView.java4472 * @param actionCode The code of the action being performed.
4476 public void onEditorAction(int actionCode) { argument
4481 actionCode, null)) {
4491 if (actionCode == EditorInfo.IME_ACTION_NEXT) {
4501 } else if (actionCode == EditorInfo.IME_ACTION_PREVIOUS) {
4511 } 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 900 milliseconds