HomeSort by relevance Sort by last modified time
    Searched refs:states (Results 126 - 150 of 435) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
TargetDrawable.java 98 int[] states = d.getState(); local
99 for (int i = 0; i < states.length; i++) {
100 if (states[i] == android.R.attr.state_focused) {
  /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) {
  /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...]
  /external/chromium_org/chrome/browser/chromeos/login/signin/
oauth2_browsertest.cc 82 const std::set<OAuth2LoginManager::SessionRestoreState>& states) {
86 states_ = states;
301 std::set<OAuth2LoginManager::SessionRestoreState> states; local
302 states.insert(OAuth2LoginManager::SESSION_RESTORE_DONE);
303 states.insert(OAuth2LoginManager::SESSION_RESTORE_FAILED);
304 states.insert(OAuth2LoginManager::SESSION_RESTORE_CONNECTION_FAILED);
306 merge_session_waiter.WaitForStates(states);
  /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;
  /external/chromium_org/third_party/ply/
lex.py 121 self.lexstatere = {} # Dictionary mapping lexer states to master regexs
122 self.lexstateretext = {} # Dictionary mapping lexer states to regex strings
123 self.lexstaterenames = {} # Dictionary mapping lexer states to symbol names
125 self.lexstatestack = [] # Stack of lexer states
516 # state names, this function returns a tuple (states,tokenname) where states
527 states = tuple(parts[1:i])
529 states = ('INITIAL',)
531 if 'ANY' in states:
532 states = tuple(names
    [all...]
  /external/chromium_org/third_party/libxml/src/
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...]
  /external/libxml2/
xmlregexp.c 231 /* knowing states ponting to us can speed things up */
261 xmlRegStatePtr *states; member in struct:_xmlAutomata
275 xmlRegStatePtr *states; member in struct:_xmlRegexp
322 * A stack of rollback states
441 ret->states = ctxt->states;
468 * 1/ counting the effective number of states left
481 if (ret->states[i] != NULL) {
489 printf("Final: %d states\n", nbstates);
568 state = ret->states[i]
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_cmd.c     [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_cmd.c     [all...]
  /frameworks/base/core/java/android/content/
UndoManager.java 34 * 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 that were actually popped
    [all...]
  /external/chromium_org/content/browser/accessibility/
accessibility_tree_formatter_win.cc 28 "states",
81 // Avoid flakiness: these states depend on whether the window is focused
88 base::ListValue* states = new base::ListValue; local
92 states->AppendString(base::UTF16ToUTF8(*it));
94 dict->Set("states", states);
  /external/iproute2/misc/
ss.c 103 int states; member in struct:filter
110 .states = SS_ALL & ~((1<<SS_LISTEN)|(1<<SS_CLOSE)|(1<<SS_TIME_WAIT)|(1<<SS_SYN_RECV)),
1194 if (!(f->states & (1<<state)))
    [all...]
  /external/chromium_org/remoting/webapp/
fullscreen.js 52 * states. This allows the application to enter full-screen mode whenever its
  /external/llvm/test/MC/ARM/
arm-thumb-cpus.s 20 @ one or other of the execution states.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
FragmentActivityTest.java 86 Object[] states = (Object[]) outState.getSerializable(ShadowFragmentActivity.FRAGMENTS_TAG); local
87 SerializedFragmentState fragmentState = (SerializedFragmentState) states[1];
  /frameworks/base/core/java/android/bluetooth/
BluetoothA2dpSink.java 315 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
319 return mService.getDevicesMatchingConnectionStates(states);
BluetoothAvrcpController.java 180 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
184 return mService.getDevicesMatchingConnectionStates(states);
BluetoothPan.java 302 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
306 return mPanService.getDevicesMatchingConnectionStates(states);
  /frameworks/base/core/java/com/android/internal/view/
InputConnectionWrapper.java 395 public boolean clearMetaKeyStates(int states) {
397 mIInputContext.clearMetaKeyStates(states);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 396 public List<BluetoothDevice> getHealthDevicesMatchingConnectionStates(int[] states) {
399 return service.getHealthDevicesMatchingConnectionStates(states);
481 List<BluetoothDevice> getHealthDevicesMatchingConnectionStates(int[] states) {
483 List<BluetoothDevice> devices = lookupHealthDevicesMatchingStates(states);
755 private List<HealthChannel> findChannelByStates(BluetoothDevice device, int[] states) {
759 for (int state : states) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 62 states = ['open', 'closed'] variable in class:_posixfile_
70 (self.states[file.closed], file.name, file.mode, \
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 62 states = ['open', 'closed'] variable in class:_posixfile_
70 (self.states[file.closed], file.name, file.mode, \

Completed in 3095 milliseconds

1 2 3 4 56 7 8 91011>>