HomeSort by relevance Sort by last modified time
    Searched full:actioncode (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/host/
UserMetrics.js 37 var actionCode = WebInspector.UserMetrics._ActionCodes[actionName];
38 this[actionName] = new WebInspector.UserMetrics._Recorder(actionCode);
96 WebInspector.UserMetrics._Recorder = function(actionCode)
98 this._actionCode = actionCode;
InspectorFrontendHost.js 212 * @param {number} actionCode
214 recordActionTaken: function(actionCode) { },
449 * @param {number} actionCode
451 recordActionTaken: function(actionCode)
  /frameworks/base/core/java/com/android/internal/view/
IInputContext.aidl 56 void performEditorAction(int actionCode);
InputConnectionWrapper.java 323 public boolean performEditorAction(int actionCode) {
325 mIInputContext.performEditorAction(actionCode);
  /frameworks/base/core/java/com/android/internal/widget/
EditableInputConnection.java 137 public boolean performEditorAction(int actionCode) {
138 if (DEBUG) Log.v(TAG, "performEditorAction " + actionCode);
139 mTextView.onEditorAction(actionCode);
  /frameworks/base/media/jni/
android_media_MediaCodec.cpp 566 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;
642 CHECK(msg->findInt32("actionCode", &actionCode));
645 obj = (jobject)createCodecException(env, err, actionCode);
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 733 int32_t err, actionCode;
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) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFrontendHost.idl 53 [Custom] void recordActionTaken(unsigned long actionCode);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsRequest.java 193 public void setActionCode(int actionCode) {
194 mActionCode = actionCode;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddchgr.h 164 /* CHANGER_SEND_VOLUME_TAG_INFORMATION.ActionCode constants */
304 ULONG ActionCode;
tdi.h 379 USHORT ActionCode;
  /frameworks/av/include/media/stagefright/
MediaErrors.h 97 enum ActionCode {
MediaCodec.h 300 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
BaseInputConnectionTest.java 85 int actionCode = 1;
88 assertTrue(mConnection.performEditorAction(actionCode));
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
AdapterInputConnection.java 249 public boolean performEditorAction(int actionCode) {
250 if (DEBUG) Log.w(TAG, "performEditorAction [" + actionCode + "]");
251 if (actionCode == EditorInfo.IME_ACTION_NEXT) {
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 77 private static final String KEY_ACTION_CODE = "actionCode";
227 int actionCode = mRequest.getActionCode();
228 switch (actionCode) {
PeopleActivity.java 449 int actionCode = mRequest.getActionCode();
452 switch (actionCode) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteDatabase.cpp 269 int SQLiteDatabase::authorizerFunction(void* userData, int actionCode, const char* parameter1, const char* parameter2, const char* /*databaseName*/, const char* /*trigger_or_view*/)
274 switch (actionCode) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
dbghelp.h 310 typedef BOOL (CALLBACK *PSYMBOL_REGISTERED_CALLBACK64)(HANDLE hProcess,ULONG ActionCode,ULONG64 CallbackData,ULONG64 UserContext);
326 typedef BOOL (CALLBACK *PSYMBOL_REGISTERED_CALLBACK)(HANDLE hProcess,ULONG ActionCode,PVOID CallbackData,PVOID UserContext);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 310 typedef BOOL (CALLBACK *PSYMBOL_REGISTERED_CALLBACK64)(HANDLE hProcess,ULONG ActionCode,ULONG64 CallbackData,ULONG64 UserContext);
326 typedef BOOL (CALLBACK *PSYMBOL_REGISTERED_CALLBACK)(HANDLE hProcess,ULONG ActionCode,PVOID CallbackData,PVOID UserContext);
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
AllIntentsActivity.java 569 private Intent buildFilterIntent(int actionCode, boolean legacy) {
573 // request.setActionCode(actionCode);
  /frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java 402 public boolean performEditorAction(int actionCode) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java     [all...]
  /frameworks/base/core/java/android/widget/
NumberPicker.java     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_dbg_common.h 307 typedef WINBOOL (CALLBACK *PSYMBOL_REGISTERED_CALLBACK64)(HANDLE hProcess,ULONG ActionCode,ULONG64 CallbackData,ULONG64 UserContext);
323 typedef WINBOOL (CALLBACK *PSYMBOL_REGISTERED_CALLBACK)(HANDLE hProcess,ULONG ActionCode,PVOID CallbackData,PVOID UserContext);
    [all...]

Completed in 3242 milliseconds

1 2