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

1 2 3

  /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 + ")";
  /tools/motodev/src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/
PopupMenuActionDelegate.java 85 private final String actionId;
87 private ActionHandlers(String actionId)
89 this.actionId = actionId;
100 if (h.actionId.equals(id))
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 168 final int actionId = mEditorInfo.imeOptions & EditorInfo.IME_MASK_ACTION;
174 return actionId;
179 final int actionId = imeAction();
180 return actionId == IME_ACTION_CUSTOM_LABEL ? mEditorInfo.actionId : actionId;
261 public static String actionName(int actionId) {
262 return (actionId == IME_ACTION_CUSTOM_LABEL) ? "actionCustomLabel"
263 : EditorInfoCompatUtils.imeActionName(actionId);
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/action/
PopupMenuActionDelegate.java 157 private final String actionId;
159 private ActionHandlers(String actionId)
161 this.actionId = actionId;
172 if (h.actionId.equals(id))
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
EditorInfoTest.java 33 info.actionId = 1;
59 assertEquals(info.actionId, targetInfo.actionId);
BaseInputConnectionTest.java 80 int actionId = 2;
83 assertFalse(mConnection.performContextMenuAction(actionId));
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 223 public int actionId = 0;
332 + " actionId=" + actionId);
356 dest.writeInt(actionId);
378 res.actionId = source.readInt();
  /packages/apps/Phone/src/com/android/phone/
GetPin2Screen.java 75 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
76 if (actionId == EditorInfo.IME_ACTION_DONE) {
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/action/
PopupMenuActionDelegate.java 242 private final String actionId;
244 private ActionHandlers(String actionId)
246 this.actionId = actionId;
257 if (h.actionId.equals(id))
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardAbsKeyInputView.java 197 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
199 if (actionId == EditorInfo.IME_NULL || actionId == EditorInfo.IME_ACTION_DONE
200 || actionId == EditorInfo.IME_ACTION_NEXT) {
  /packages/apps/Settings/src/com/android/settings/
ConfirmLockPassword.java 187 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
189 if (actionId == EditorInfo.IME_NULL
190 || actionId == EditorInfo.IME_ACTION_DONE
191 || actionId == EditorInfo.IME_ACTION_NEXT) {
ChooseLockPassword.java 432 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
434 if (actionId == EditorInfo.IME_NULL
435 || actionId == EditorInfo.IME_ACTION_DONE
436 || actionId == EditorInfo.IME_ACTION_NEXT) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 164 final String actionId = isProp ?
220 final Prop prop = (props != null) ? props.get(actionId) : null;
223 editedProperty(actionId);
233 boolean isStyle = actionId.equals(ATTR_STYLE);
234 boolean isText = actionId.equals(ATTR_TEXT);
235 boolean isHint = actionId.equals(ATTR_HINT);
241 ? (isStyle ? firstNode.getStringAttr(ATTR_STYLE, actionId)
242 : firstNode.getStringAttr(ANDROID_URI, actionId))
249 } else if (actionId.equals(ATTR_CLASS) && selectedNodes.size() >= 1 &&
254 v = inputAttributeValue(firstNode, actionId);
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
HeavyWeightSwitcherActivity.java 104 void setIconAndText(int iconId, int actionId, int descriptionId,
119 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/DeskClock/src/com/android/deskclock/
LabelDialogFragment.java 89 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
90 if (actionId == EditorInfo.IME_ACTION_DONE) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
PasswordUnlockScreen.java 374 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
376 if (actionId == EditorInfo.IME_NULL || actionId == EditorInfo.IME_ACTION_DONE
377 || 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/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) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothNameDialogFragment.java 136 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
137 if (actionId == EditorInfo.IME_ACTION_DONE) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyCodeDescriptionMapper.java 212 final int actionId = keyboardId.imeActionId();
221 switch (actionId) {
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChat.java 222 public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
224 if (actionId == EditorInfo.IME_NULL && event.getAction() == KeyEvent.ACTION_UP) {
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountServerBaseFragment.java 296 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
297 if (actionId == EditorInfo.IME_ACTION_DONE) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar 

Completed in 696 milliseconds

1 2 3