Searched defs:states (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealth.java392 * states.
394 * <p> If none of the devices match any of the given states,
403 * @param states Array of states. States can be one of
409 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { argument
412 return mService.getHealthDevicesMatchingConnectionStates(states);
H A DBluetoothInputDevice.java388 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { argument
392 return mService.getDevicesMatchingConnectionStates(states);
H A DBluetoothHeadsetClient.java35 * connection, calls states and calls actions.
541 * @param states collection of states
542 * @return list of devices that state matches the states listed in
543 * <code>states</code>; empty list if nothing matches the
544 * <code>states</code>
547 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { argument
551 return mService.getDevicesMatchingConnectionStates(states);
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java67 * // Use the combined meta states from the event and the key listener.
110 // so as not to conflict with any meta key states publicly defined by KeyEvent.
417 public void clearMetaKeyState(View view, Editable content, int states) { argument
418 clearMetaKeyState(content, states);
421 public static void clearMetaKeyState(Editable content, int states) { argument
422 if ((states&META_SHIFT_ON) != 0) content.removeSpan(CAP);
423 if ((states&META_ALT_ON) != 0) content.removeSpan(ALT);
424 if ((states&META_SYM_ON) != 0) content.removeSpan(SYM);
425 if ((states&META_SELECTING) != 0) content.removeSpan(SELECTING);
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java169 public boolean clearMetaKeyStates(int states) { argument
172 MetaKeyKeyListener.clearMetaKeyState(content, states);
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java395 public boolean clearMetaKeyStates(int states) { argument
397 mIInputContext.clearMetaKeyStates(states);
H A DIInputConnectionWrapper.java154 public void clearMetaKeyStates(int states) { argument
155 dispatchMessage(obtainMessageII(DO_CLEAR_META_KEY_STATES, states, 0));
/frameworks/base/core/java/android/content/
H A DUndoManager.java34 * a stack of undo states; each state can have one or more undo operations
139 // number of undo states we write to not exceed X bytes.
211 * Set the maximum number of undo states that will be retained.
221 * Return the current maximum number of undo states.
228 * Perform undo of last/top <var>count</var> undo states. The states impacted
231 * undo states will be visible and available for undo. If non-null, only those
232 * states that contain one of the owners specified here will be visible.
233 * @param count Number of undo states to pop.
234 * @return Returns the number of undo states tha
686 findPrevState(ArrayList<UndoState> states, UndoOwner[] owners, int from) argument
710 findNextState(ArrayList<UndoState> states, UndoOwner[] owners, int from) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessStatsService.java56 static final int MAX_HISTORIC_STATES = 8; // Maximum number of historic states we will keep.
403 static int[] parseStateList(String[] states, int mult, String arg, boolean[] outSep, argument
422 for (int j=0; j<states.length; j++) {
423 if (str.equals(states[j])) {
587 pw.println(" --checkin: perform a checkin: print and delete old committed states.");
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuBuilder.java364 public void restoreActionViewStates(Bundle states) { argument
365 if (states == null) {
369 SparseArray<Parcelable> viewStates = states.getSparseParcelableArray(
381 subMenu.restoreActionViewStates(states);
385 final int expandedId = states.getInt(EXPANDED_ACTION_VIEW_ID);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuBuilder.java386 public void restoreActionViewStates(Bundle states) { argument
387 if (states == null) {
391 SparseArray<Parcelable> viewStates = states.getSparseParcelableArray(
403 subMenu.restoreActionViewStates(states);
407 final int expandedId = states.getInt(EXPANDED_ACTION_VIEW_ID);
/frameworks/base/core/java/android/os/
H A DBatteryStats.java367 // Total number of process states we track.
639 // These states always appear directly in the first int token
663 public int states; field in class:BatteryStats.HistoryItem
780 dest.writeInt(states);
808 states = src.readInt();
847 states = 0;
874 states = o.states;
905 && states == o.states
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java2809 // states.
5235 // Clear out the positional check states, we'll rebuild it below from IDs.
5756 public boolean clearMetaKeyStates(int states) { argument
5757 return getTarget().clearMetaKeyStates(states);

Completed in 908 milliseconds

12