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

1 2 3 4 5

  /packages/apps/ContactsCommon/src/com/android/dialerbind/analytics/
AnalyticsInterface.java 20 void sendHitEvent(String categoryId, String actionId, String labelId);
AnalyticsActivity.java 23 public void sendHitEvent(String categoryId, String actionId, String labelId) {
AnalyticsDialogFragment.java 23 public void sendHitEvent(String categoryId, String actionId, String labelId) {
AnalyticsFragment.java 23 public void sendHitEvent(String categoryId, String actionId, String labelId) {
AnalyticsListFragment.java 23 public void sendHitEvent(String categoryId, String actionId, String labelId) {
AnalyticsPreferenceActivity.java 24 public void sendHitEvent(String categoryId, String actionId, String labelId) {
  /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.put(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 35 defaults.values().forEach(function(actionId) {
36 result.add(actionId);
61 actionIdsForKey.values().some(function(actionId) {
62 if (actionIdSet.hasOwnProperty(actionId)) {
127 * @param {string} actionId
131 function handler(actionId)
133 var result = this._actionRegistry.execute(actionId);
142 * @param {string} actionId
145 registerShortcut: function(actionId, shortcut)
150 this._defaultKeyToActions.put(String(key), actionId);
    [all...]
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
EditorAction.java 59 int actionId = editorInfo.actionId != 0 ? editorInfo.actionId :
62 if (actionId == EditorInfo.IME_ACTION_NONE) {
70 if (!inputConnection.performEditorAction(actionId)) {
75 "Failed to perform action %#x. Input connection no longer valid", actionId)))
  /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 + ")";
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
EditorInfoTest.java 33 info.actionId = 1;
59 assertEquals(info.actionId, targetInfo.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/services/Telephony/src/com/android/phone/
GetPin2Screen.java 78 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
79 if (actionId == EditorInfo.IME_ACTION_DONE) {
  /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,
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardPasswordView.java 296 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
299 && (actionId == EditorInfo.IME_NULL
300 || actionId == EditorInfo.IME_ACTION_DONE
301 || 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...]
  /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);

Completed in 1169 milliseconds

1 2 3 4 5