/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
OrientationMenuAction.java | 61 // Show toggles for all the available states 67 List<State> states = device.getAllStates(); local 69 if (states.size() > 1 && current != null) { 77 for (State config : states) {
|
Configuration.java | 877 List<State> states = device.getAllStates(); local 878 for (int i = 0; i < states.size(); i++) { 879 if (states.get(i) == from) { 880 return states.get((i + 1) % states.size());
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
DecisionProbe.java | 60 * is represented internall with a DFA comprised of multiple states, each of 63 * Because of this, you need to iterate over this list of DFA states. You'll 66 * will be one of the iterated states from stateToSyntacticallyAmbiguousAltsSet. 74 /** Track all DFA states with nondeterministic alternatives. 113 /** The set of states w/o emanating edges and w/o resolving sem preds. */ 189 /** If no states are dead-ends, no alts are unreachable, there are 230 /** How many states does the DFA predictor have? */ 238 * conflict resolution or alts w/o accept states). 244 /** return set of states w/o emanating edges and w/o resolving sem preds. 245 * These states come about because the analysis algorithm had t [all...] |
DFA.java | 54 /** Prevent explosion of DFA states during conversion. The max number 55 * of states per alt in a single decision's DFA. 79 /** A set of all uniquely-numbered DFA states. Maps hash of DFAState 81 * existing DFA states. Map<DFAState,DFAState>. Use Map so 84 * a dup of states array. 90 * states, but the states are not unique. s3 might be same as s1 so 92 * then these states will all be unique as states[i] always points 99 protected Vector<DFAState> states = new Vector<DFAState>() field in class:DFA [all...] |
DFAState.java | 40 * to keep track of all possible states the NFA can be in after 43 * subset T of the states of the NFA that are reachable from the 46 * would be a bitset representing the set of states the 49 * a stack of states, tracking the closure operations as they 82 * dfa states, but it is only a valid value if the user has specified 87 /** The NFA->DFA algorithm may terminate leaving some states 109 * but try to isolate it to only those states whose closure operations 147 * prevent closures only on states contributed by closure not reach 155 /** As this state is constructed (i.e., as NFA states are added), we 158 * process this node eventually, we'll have to walk all states lookin 549 Set states = stateToConfigListMap.keySet(); local [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
Keyboard.java | 492 int[] states = KEY_STATE_NORMAL; local 496 states = KEY_STATE_PRESSED_ON; 498 states = KEY_STATE_NORMAL_ON; 503 states = KEY_STATE_PRESSED_OFF; 505 states = KEY_STATE_NORMAL_OFF; 509 states = KEY_STATE_PRESSED; 513 return states;
|
/frameworks/base/core/java/android/os/ |
BatteryStats.java | 449 // These states always appear directly in the first int token 474 public int states; field in class:BatteryStats.HistoryItem 499 dest.writeInt(states); 512 states = src.readInt(); 550 | (states&DELTA_STATE_MASK); 589 + " states=0x" + Integer.toHexString(states)); 603 | (states&(~DELTA_STATE_MASK)); 643 states = (firstToken&DELTA_STATE_MASK) | (stateInt&(~DELTA_STATE_MASK)); 652 + " states=0x" + Integer.toHexString(states)) [all...] |
/external/libxml2/ |
xmlregexp.c | 227 /* knowing states ponting to us can speed things up */ 257 xmlRegStatePtr *states; member in struct:_xmlAutomata 271 xmlRegStatePtr *states; member in struct:_xmlRegexp 318 * A stack of rollback states 437 ret->states = ctxt->states; 464 * 1/ counting the effective number of states left 477 if (ret->states[i] != NULL) { 485 printf("Final: %d states\n", nbstates); 564 state = ret->states[i] [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/ |
HeadsetService.java | 157 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 160 return service.getDevicesMatchingConnectionStates(states); 345 private List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 347 return mStateMachine.getDevicesMatchingConnectionStates(states);
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
BatteryHistoryChart.java | 374 aggrStates |= rec.states; 562 (rec.states&HistoryItem.STATE_BATTERY_PLUGGED_FLAG) != 0; 573 (rec.states&HistoryItem.STATE_SCREEN_ON_FLAG) != 0; 584 (rec.states&HistoryItem.STATE_GPS_ON_FLAG) != 0; 595 (rec.states&HistoryItem.STATE_WIFI_RUNNING_FLAG) != 0; 606 (rec.states&HistoryItem.STATE_WAKE_LOCK_FLAG) != 0; 618 if (((rec.states&HistoryItem.STATE_PHONE_STATE_MASK) 622 } else if ((rec.states&HistoryItem.STATE_PHONE_SCANNING_FLAG) != 0) { 625 bin = (rec.states&HistoryItem.STATE_SIGNAL_STRENGTH_MASK)
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothA2dp.java | 289 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 293 return mService.getDevicesMatchingConnectionStates(states);
|
BluetoothPan.java | 286 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 290 return mPanService.getDevicesMatchingConnectionStates(states);
|
BluetoothHealth.java | 395 * states. 397 * <p> If none of the devices match any of the given states, 406 * @param states Array of states. States can be one of 412 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 415 return mService.getHealthDevicesMatchingConnectionStates(states);
|
/frameworks/base/core/java/com/android/internal/view/ |
InputConnectionWrapper.java | 381 public boolean clearMetaKeyStates(int states) { 383 mIInputContext.clearMetaKeyStates(states);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/ |
HealthService.java | 382 public List<BluetoothDevice> getHealthDevicesMatchingConnectionStates(int[] states) { 385 return service.getHealthDevicesMatchingConnectionStates(states); 467 List<BluetoothDevice> getHealthDevicesMatchingConnectionStates(int[] states) { 469 List<BluetoothDevice> devices = lookupHealthDevicesMatchingStates(states); 741 private List<HealthChannel> findChannelByStates(BluetoothDevice device, int[] states) { 745 for (int state : states) { 762 List<BluetoothDevice> lookupHealthDevicesMatchingStates(int[] states) { 767 for (int state : states) [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/devices/ |
Device.java | 39 /** A list of phone states (landscape, portrait with keyboard out, etc.) */ 191 public void addAllState(Collection<? extends State> states) { 192 mState.addAll(states); 218 throw generateBuildException("Device states not configured");
|
/external/iproute2/misc/ |
ss.c | 101 int states; member in struct:filter 108 .states = SS_ALL & ~((1<<SS_LISTEN)|(1<<SS_CLOSE)|(1<<SS_TIME_WAIT)|(1<<SS_SYN_RECV)), 1185 if (!(f->states & (1<<state))) 1496 req.r.idiag_states = f->states; [all...] |
/external/icu4c/tools/toolutil/ |
ucm.c | 716 &ucm->states, m, 733 return ucm_checkBaseExt(&ucm->states, ucm->base, ucm->ext, ucm->ext, FALSE); 1022 ucm->states.stateFlags[0]=MBCS_STATE_FLAG_DIRECT; 1023 ucm->states.conversionType=UCNV_UNSUPPORTED_CONVERTER; 1024 ucm->states.outputType=-1; 1025 ucm->states.minCharLength=ucm->states.maxCharLength=1; [all...] |
/frameworks/base/core/java/android/inputmethodservice/ |
Keyboard.java | 479 int[] states = KEY_STATE_NORMAL; local 483 states = KEY_STATE_PRESSED_ON; 485 states = KEY_STATE_NORMAL_ON; 490 states = KEY_STATE_PRESSED_OFF; 492 states = KEY_STATE_NORMAL_OFF; 496 states = KEY_STATE_PRESSED; 500 return states; [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
ClipDrawableTest.java | 240 int[] states = new int[] {1, 2, 3}; local 241 assertFalse(mockClipDrawable.onStateChange(states)); 242 assertEquals(states, mockDrawable.getState());
|
/external/valgrind/main/callgrind/ |
threads.c | 107 CLG_(init_exec_stack)( &(t->states) ); 110 /* t->states.entry[0]->cxt = CLG_(get_cxt)(t->fns.bottom); */ 141 CLG_(copy_current_exec_stack)( &(t->states) ); 164 CLG_(set_current_exec_stack)( &(t->states) ); 302 /*--- Execution states in a thread & signal handlers ---*/
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
InputConnectionWrapperTest.java | 117 public boolean clearMetaKeyStates(int states) {
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hid/ |
HidService.java | 324 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 327 return service.getDevicesMatchingConnectionStates(states); 411 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 417 for (int state : states) {
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pan/ |
PanService.java | 236 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 239 return service.getDevicesMatchingConnectionStates(states); 301 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) { 307 for (int state : states) {
|
/external/v8/test/mjsunit/regress/ |
regress-1278.js | 31 // TypeRecordingBinaryOpStub transitions through different states.
|