Home
last modified time | relevance | path

Searched refs:actionCode (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DUserMetrics.js37 var actionCode = WebInspector.UserMetrics._ActionCodes[actionName];
38 this[actionName] = new WebInspector.UserMetrics._Recorder(actionCode);
118 WebInspector.UserMetrics._Recorder = function(actionCode) argument
120 this._actionCode = actionCode;
DInspectorFrontendHostStub.js169 recordActionTaken: function(actionCode) argument
Dexterns.js270 InspectorFrontendHostAPI.prototype.recordActionTaken = function(actionCode) {} argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
DAdapterInputConnection.java216 public boolean performEditorAction(int actionCode) { in performEditorAction() argument
217 if (DEBUG) Log.w(TAG, "performEditorAction [" + actionCode + "]"); in performEditorAction()
218 if (actionCode == EditorInfo.IME_ACTION_NEXT) { in performEditorAction()
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
DSQLiteDatabase.cpp362 int SQLiteDatabase::authorizerFunction(void* userData, int actionCode, const char* parameter1, cons… in authorizerFunction() argument
367 switch (actionCode) { in authorizerFunction()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorFrontendHost.idl49 [Custom] void recordActionTaken(unsigned long actionCode);