HomeSort by relevance Sort by last modified time
    Searched full:actionid (Results 1 - 23 of 23) sorted by null

  /cts/tests/tests/view/src/android/view/inputmethod/cts/
EditorInfoTest.java 55 info.actionId = 1;
81 assertEquals(info.actionId, targetInfo.actionId);
BaseInputConnectionTest.java 122 int actionId = 2;
125 assertFalse(mConnection.performContextMenuAction(actionId));
  /packages/apps/Settings/src/com/android/settings/
ConfirmLockPassword.java 123 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
125 if (actionId == EditorInfo.IME_NULL) {
ChooseLockPassword.java 307 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
309 if (actionId == EditorInfo.IME_NULL) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditorContributor.java 56 protected IAction getAction(ITextEditor editor, String actionID) {
57 return (editor == null ? null : editor.getAction(actionID));
  /frameworks/base/libs/usb/tests/AccessoryChat/src/com/android/accessorychat/
AccessoryChat.java 152 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
153 if (actionId == EditorInfo.IME_ACTION_DONE && mOutputStream != null) {
162 Log.d(TAG, "onEditorAction " + actionId + " event: " + event);
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 176 public int actionId = 0;
250 + " actionId=" + actionId);
274 dest.writeInt(actionId);
296 res.actionId = source.readInt();
  /frameworks/base/core/java/com/android/internal/app/
HeavyWeightSwitcherActivity.java 101 void setIconAndText(int iconId, int actionId, int descriptionId,
116 setText(actionId, getString(actionStr, appName));
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PasswordUnlockScreen.java 238 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
240 if (actionId == EditorInfo.IME_NULL) {
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChat.java 229 public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
231 if (actionId == EditorInfo.IME_NULL && event.getAction() == KeyEvent.ACTION_UP) {
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmutils.h 253 #define IOV_ISSET(actionid) ((actionid & IOV_SET) == IOV_SET)
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_common.c 208 dhd_doiovar(dhd_pub_t *dhd_pub, const bcm_iovar_t *vi, uint32 actionid, const char *name,
216 if ((bcmerror = bcm_iovar_lencheck(vi, arg, len, IOV_ISSET(actionid))) != 0)
222 switch (actionid) {
394 uint32 actionid; local
431 actionid = set ? IOV_SVAL(vi->varid) : IOV_GVAL(vi->varid);
432 bcmerror = dhd_doiovar(dhd_pub, vi, actionid, name, params, plen, arg, len, val_size);
    [all...]
dhd_sdio.c 2609 uint32 actionid; local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/bcmsdio/sys/
bcmsdh_sdmmc.c 409 uint32 actionid; local
446 actionid = set ? IOV_SVAL(vi->varid) : IOV_GVAL(vi->varid);
447 switch (actionid) {
    [all...]
bcmsdspi.c 269 uint32 actionid; local
306 actionid = set ? IOV_SVAL(vi->varid) : IOV_GVAL(vi->varid);
307 switch (actionid) {
    [all...]
bcmspibrcm.c 311 uint32 actionid; local
351 actionid = set ? IOV_SVAL(vi->varid) : IOV_GVAL(vi->varid);
352 switch (actionid) {
    [all...]
bcmsdstd.c 389 uint32 actionid; local
426 actionid = set ? IOV_SVAL(vi->varid) : IOV_GVAL(vi->varid);
427 switch (actionid) {
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 326 * @param actionId Identifier of the action. This will be either the
334 boolean onEditorAction(TextView v, int actionId, KeyEvent event);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 298 if (ei.actionId != 0) {
299 ic.performEditorAction(ei.actionId);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactsListActivity.java     [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java     [all...]
  /frameworks/base/core/res/res/values/
attrs.xml     [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java     [all...]

Completed in 532 milliseconds