HomeSort by relevance Sort by last modified time
    Searched refs:actionId (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ActionRegistry.js 26 var actionId = extension.descriptor()["actionId"];
27 console.assert(actionId);
28 console.assert(!this._actionsById.get(actionId));
29 this._actionsById.set(actionId, extension);
41 actionIds.forEach(function(actionId) {
42 var extension = this._actionsById.get(actionId);
47 return extension.descriptor()["actionId"];
52 * @param {string} actionId
55 execute: function(actionId)
    [all...]
ShortcutRegistry.js 37 defaults.values().forEach(function(actionId) {
38 result.add(actionId);
54 * @param {string} actionId
57 shortcutDescriptorsForAction: function(actionId)
59 return this._defaultActionToShortcut.get(actionId).values();
138 * @param {string} actionId
142 function handler(actionId)
144 var result = this._actionRegistry.execute(actionId);
153 * @param {string} actionId
156 registerShortcut: function(actionId, shortcut
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
EditorInfoCompatUtils.java 41 final int actionId = imeOptions & EditorInfo.IME_MASK_ACTION;
42 switch (actionId) {
60 return "actionUnknown(" + actionId + ")";
  /frameworks/support/v4/api21/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatApi21.java 55 static Object newAccessibilityAction(int actionId, CharSequence label) {
56 return new AccessibilityAction(actionId, label);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
EditorInfoTest.java 33 info.actionId = 1;
59 assertEquals(info.actionId, targetInfo.actionId);
BaseInputConnectionTest.java 86 int actionId = 2;
89 assertFalse(mConnection.performContextMenuAction(actionId));
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 229 * for the "enter" key (see {@link #actionId}). Remember the key where
243 public int actionId = 0;
372 + " actionId=" + actionId);
396 dest.writeInt(actionId);
419 res.actionId = source.readInt();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardLayoutSetActionLabelBase.java 84 final int actionId, final int labelResId) {
87 doTestActionKeyLabelResIdInLocale(tag, subtype, actionId, labelLocale, labelResId);
91 final InputMethodSubtype subtype, final int actionId, final Locale labelLocale,
94 editorInfo.imeOptions = actionId;
133 final int actionId, final String iconName) {
136 editorInfo.imeOptions = actionId;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ShortcutNameActivity.java 87 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
88 if (actionId == EditorInfo.IME_ACTION_DONE) {
ConversationUpdater.java 82 * @param actionId the unique id for the action responsible for this delete: R.id.archive, ...
88 int actionId, final Collection<Conversation> target, final DestructiveAction action,
  /packages/services/Telephony/src/com/android/phone/settings/fdn/
GetPin2Screen.java 81 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
82 if (actionId == EditorInfo.IME_ACTION_DONE) {
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardPasswordView.java 298 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
301 && (actionId == EditorInfo.IME_NULL
302 || actionId == EditorInfo.IME_ACTION_DONE
303 || actionId == EditorInfo.IME_ACTION_NEXT);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 163 final String actionId = isProp ?
203 final Prop prop = (props != null) ? props.get(actionId) : null;
206 editedProperty(actionId);
216 boolean isStyle = actionId.equals(ATTR_STYLE);
217 boolean isText = actionId.equals(ATTR_TEXT);
218 boolean isHint = actionId.equals(ATTR_HINT);
224 ? (isStyle ? firstNode.getStringAttr(ATTR_STYLE, actionId)
225 : firstNode.getStringAttr(ANDROID_URI, actionId))
232 } else if (actionId.equals(ATTR_CLASS) && selectedNodes.size() >= 1 &&
237 v = inputAttributeValue(firstNode, actionId);
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
LoginPrompt.java 46 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
47 if (actionId == EditorInfo.IME_ACTION_DONE) {
  /frameworks/base/core/java/com/android/internal/app/
HeavyWeightSwitcherActivity.java 103 void setIconAndText(int iconId, int actionId, int descriptionId,
118 setText(actionId, getString(actionStr, appName));
  /frameworks/base/tests/SerialChat/src/com/android/serialchat/
SerialChat.java 105 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
106 if (/* actionId == EditorInfo.IME_ACTION_DONE && */ mSerialPort != null) {
120 Log.d(TAG, "onEditorAction " + actionId + " event: " + event);
  /packages/apps/Browser/src/com/android/browser/
HttpAuthenticationDialog.java 117 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
118 if (actionId == EditorInfo.IME_ACTION_DONE) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
EditTextFragment.java 143 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
145 return mEditorActionListener.onEditorAction(v, actionId, event);
  /packages/apps/Settings/src/com/android/settings/
ConfirmLockPassword.java 276 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
278 if (actionId == EditorInfo.IME_NULL
279 || actionId == EditorInfo.IME_ACTION_DONE
280 || actionId == EditorInfo.IME_ACTION_NEXT) {
  /frameworks/base/libs/usb/tests/AccessoryChat/src/com/android/accessorychat/
AccessoryChat.java 154 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
155 if (actionId == EditorInfo.IME_ACTION_DONE && mOutputStream != null) {
164 Log.d(TAG, "onEditorAction " + actionId + " event: " + event);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 240 public static String actionName(final int actionId) {
241 return (actionId == InputTypeUtils.IME_ACTION_CUSTOM_LABEL) ? "actionCustomLabel"
242 : EditorInfoCompatUtils.imeActionName(actionId);
  /external/chromium_org/tools/android/memconsumer/java/src/org/chromium/memconsumer/
MemConsumer.java 61 public boolean onEditorAction (TextView v, int actionId, KeyEvent event) {
  /external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/shell/
AwShellActivity.java 169 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
170 if ((actionId != EditorInfo.IME_ACTION_GO) && (event == null ||
  /external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/
ChromeShellToolbar.java 141 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
142 if ((actionId != EditorInfo.IME_ACTION_GO) && (event == null ||
  /packages/apps/Browser/src/com/android/browser/preferences/
GeneralPreferencesFragment.java 148 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
149 if (actionId == EditorInfo.IME_ACTION_DONE) {

Completed in 626 milliseconds

1 2 3 4 5