Home
last modified time | relevance | path

Searched refs:mActions (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/ndefpush/
DNdefPushProtocol.java40 private byte[] mActions; field in NdefPushProtocol
45 mActions = new byte[1]; in NdefPushProtocol()
46 mActions[0] = action; in NdefPushProtocol()
59 mActions = new byte[numMessages]; in NdefPushProtocol()
60 System.arraycopy(actions, 0, mActions, 0, numMessages); in NdefPushProtocol()
97 mActions = new byte[mNumMessages]; in NdefPushProtocol()
102 mActions[i] = input.readByte(); in NdefPushProtocol()
141 if(mActions[i] == ACTION_IMMEDIATE) { in getImmediate()
156 output.writeByte(mActions[i]); in toByteArray()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DQuickContactListFragment.java43 private List<Action> mActions; field in QuickContactListFragment
70 mActions = actions; in setActions()
79 if (mActions == null || mListView == null) return; in configureAdapter()
84 return mActions.size(); in configureAdapter()
89 return mActions.get(position); in configureAdapter()
100 final Action action = mActions.get(position); in configureAdapter()
DQuickContactActivity.java134 private ActionMultiMap mActions = new ActionMultiMap(); field in QuickContactActivity
397 for (List<Action> actionChildren : mActions.values()) { in bindData()
406 final Set<String> containedTypes = new HashSet<String>(mActions.keySet()); in bindData()
462 mActions.put(action.getMimeType(), action, front); in considerAdd()
477 List<Action> children = mActions.get(mimeType); in inflateAction()
586 final List<Action> actions = mActions.get(mimeType); in getItem()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DActionBatch.java608 private final Queue<Action> mActions; field in ActionBatch
611 mActions = new LinkedList<Action>(); in ActionBatch()
615 mActions.add(a); in add()
623 for (final Action a : that.mActions) { in append()
636 Queue<Action> remainingActions = mActions; in execute()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DGalleryActionBar.java50 private ArrayList<Integer> mActions; field in GalleryActionBar
198 mActions = new ArrayList<Integer>(); in createDialogData()
202 mActions.add(item.action); in createDialogData()
295 final ArrayList<Integer> actions = mActions; in showClusterDialog()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
DReplayer.java69 final int numActions = replayData.mActions.size(); in replay()
99 final int action = replayData.mActions.get(index); in replay()
DMotionEventReader.java70 final ArrayList<Integer> mActions = new ArrayList<Integer>(); field in MotionEventReader.ReplayData
331 replayData.mActions.add(actionType); in addMotionEventData()