HomeSort by relevance Sort by last modified time
    Searched refs:states (Results 26 - 50 of 845) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/common/
rbbicst.pl 33 $states{"pop"} = 255; # Add the "pop" to the list of defined state names.
66 if ($states{$state_name} != 0) {
69 $states{$state_name} = $num_states;
165 # We read all states first, before writing anything, so that the state numbers
166 # for the destination states are all available to be written.
188 # Check that all of the destination states have been defined
191 $states{"exit"} = 0; # Predefined state name, terminates state machine.
193 if ($states{$state_dest_state[$state]} == 0 && $state_dest_state[$state] ne "exit") {
197 if ($state_push_state[$state] ne "" && $states{$state_push_state[$state]} == 0) {
306 print " $states{$state_dest_state[$state]},"
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
SwitchCompatUtils.java 68 final int[][] states = new int[3][]; local
72 states[i] = new int[] { -android.R.attr.state_enabled };
75 states[i] = new int[] { android.R.attr.state_checked };
79 states[i] = new int[0];
83 return new ColorStateList(states, colors);
88 final int[][] states = new int[3][]; local
92 states[i] = new int[] { -android.R.attr.state_enabled };
95 states[i] = new int[] { android.R.attr.state_checked };
99 states[i] = new int[0];
102 return new ColorStateList(states, colors)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureStateQueryTests.cpp 134 } states[] = local
215 for (int stateNdx = 0; stateNdx < DE_LENGTH_OF_ARRAY(states); ++stateNdx)
217 if (!isLegalTesterForTarget(textureTargets[targetNdx].target, states[stateNdx].tester))
220 // for old targets, check only new states
221 if (!textureTargets[targetNdx].newInGLES31 && !states[stateNdx].newInGLES31)
224 if (isExtendedParamQuery(states[stateNdx].tester))
229 std::string() + states[stateNdx].name + verifierSuffix,
230 states[stateNdx].desc,
233 states[stateNdx].tester));
235 else if (isIsVectorQuery(states[stateNdx].tester)
    [all...]
  /device/google/marlin/power/
Power.cpp 70 hidl_vec<PowerStatePlatformSleepState> states; local
77 states.resize(0);
81 states.resize(platform_mode_id::RPM_MODE_COUNT);
84 state = &states[platform_mode_id::RPM_MODE_XO];
118 state = &states[platform_mode_id::RPM_MODE_VMIN];
128 _hidl_cb(states, Status::SUCCESS);
146 subsystem.states.resize(WLAN_STATE_COUNT);
149 state = &subsystem.states[WLAN_STATE_ACTIVE];
157 state = &subsystem.states[WLAN_STATE_DEEP_SLEEP];
  /external/python/cpython2/Demo/tkinter/ttk/
widget_state.py 1 """Sample demo showing widget states and some font styling."""
4 states = ['active', 'disabled', 'focus', 'pressed', 'selected', variable
7 for state in states[:]:
8 states.append("!" + state)
11 nostate = states[len(states) // 2:]
30 # a list to hold all the widgets that will have their states changed
49 # keep only the valid states
50 goodstates = [state for state in newstates if state in states]
51 # define a new font size based on amount of states
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StateAdapter.java 84 public boolean same(Vector<State> states) {
86 if (states.size() + 1 != getCount()) {
91 if (!state.equals(states.elementAt(i-1))) {
98 public void fill(Vector<State> states) {
99 if (same(states)) {
104 addAll(states);
  /frameworks/base/core/java/android/bluetooth/
IBluetoothPan.aidl 33 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
IBluetoothPbapClient.aidl 30 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
grammar.py 47 states -- a list of DFAs, where each DFA is a list of
48 states, each state is is a list of arcs, and each
52 Final states are represented by a special arc of
56 pairs, where DFA is an item from the states list
79 self.states = []
109 new.states = self.states[:]
120 print "states"
121 pprint(self.states)
  /external/libmojo/mojo/public/c/system/tests/
core_unittest_pure_c.c 65 struct MojoHandleSignalsState states[1]; local
67 MojoWaitMany(&handle0, &signals, 1, 1, &result_index, states));
72 EXPECT_EQ(MOJO_HANDLE_SIGNAL_WRITABLE, states[0].satisfied_signals);
75 states[0].satisfiable_signals);
  /external/libnetfilter_conntrack/include/internal/
extern.h 24 extern const char *const states[TCP_CONNTRACK_MAX];
  /external/ply/ply/example/yply/
ylex.py 16 states = (('code', 'exclusive'),) variable
  /frameworks/native/libs/binder/
ProcessInfoService.cpp 30 /*out*/ int32_t* states) {
40 err = pis->getProcessStatesFromPids(length, /*in*/ pids, /*out*/ states);
54 ALOGW("%s: Could not retrieve process states from ProcessInfoService after %d retries.",
61 /*in*/ int32_t* pids, /*out*/ int32_t* states,
73 /*in*/ pids, /*out*/ states, /*out*/ scores);
87 ALOGW("%s: Could not retrieve process states and scores "
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
grammar.py 47 states -- a list of DFAs, where each DFA is a list of
48 states, each state is a list of arcs, and each
52 Final states are represented by a special arc of
56 pairs, where DFA is an item from the states list
79 self.states = []
109 new.states = self.states[:]
120 print "states"
121 pprint(self.states)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
grammar.py 47 states -- a list of DFAs, where each DFA is a list of
48 states, each state is a list of arcs, and each
52 Final states are represented by a special arc of
56 pairs, where DFA is an item from the states list
79 self.states = []
109 new.states = self.states[:]
120 print "states"
121 pprint(self.states)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 47 states -- a list of DFAs, where each DFA is a list of
48 states, each state is a list of arcs, and each
52 Final states are represented by a special arc of
56 pairs, where DFA is an item from the states list
79 self.states = []
109 new.states = self.states[:]
120 print "states"
121 pprint(self.states)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 47 states -- a list of DFAs, where each DFA is a list of
48 states, each state is a list of arcs, and each
52 Final states are represented by a special arc of
56 pairs, where DFA is an item from the states list
79 self.states = []
109 new.states = self.states[:]
120 print "states"
121 pprint(self.states)
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
StateListDrawableTest.java 24 int[] states = {R.attr.state_pressed}; local
25 stateListDrawable.addState(states, drawable);
28 Drawable drawableForState = shadow.getDrawableForState(states);
  /developers/build/prebuilts/gradle/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
ThumbnailRadioButton.java 89 StateListDrawable states = new StateListDrawable(); local
90 states.addState(new int[]{android.R.attr.state_checked},
92 states.addState(new int[]{},
96 setBackground(states);
99 setBackgroundDrawable(states);
  /developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
ThumbnailRadioButton.java 89 StateListDrawable states = new StateListDrawable(); local
90 states.addState(new int[]{android.R.attr.state_checked},
92 states.addState(new int[]{},
96 setBackground(states);
99 setBackgroundDrawable(states);
  /development/samples/browseable/RenderScriptIntrinsic/src/com.example.android.renderscriptintrinsic/
ThumbnailRadioButton.java 87 StateListDrawable states = new StateListDrawable(); local
88 states.addState(new int[]{android.R.attr.state_checked},
90 states.addState(new int[]{},
94 setBackground(states);
96 setBackgroundDrawable(states);
  /external/bison/src/
state.h 33 A core represents one state. States are numbered in the NUMBER
35 state 0 and NSTATES is the number of states. (FIXME: This sentence
51 lookahead token alone). When the states are generated, these
56 contains a vector of numbers of the states that transitions can go
57 to. The accessing_symbol fields of those states' cores say what
68 states should explicitly be errors (for implementing %nonassoc).
91 | Numbering states. |
114 state *states[1]; member in struct:__anon13334
119 TRANSITIONS->states[Num]? Can be a token (amongst which the error
123 (Transitions->states[Num]->accessing_symbol
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicViewHelper.java 41 * Generate the pressed/focused states if necessary.
51 StateListDrawable states = new StateListDrawable(); local
52 states.addState(new int[] {android.R.attr.state_pressed}, outlineD);
53 states.addState(new int[] {android.R.attr.state_focused}, outlineD);
54 states.addState(new int[] {}, originalD);
55 v.setImageDrawable(states);
60 * Invalidates the pressed/focused states.
  /frameworks/base/core/java/android/util/
StateSet.java 25 * one or more of those states.
128 * A state set that does not contain any valid states.
145 * prohibited (if negative) {@link android.view.View} states.
146 * @param stateSet an array of {@link android.view.View} states
164 // We use negative values to indicate must-NOT-match states.
172 // We've reached the end of states to match.
177 // Continue checking other must-not-match states.
184 // Continue checking other other must-match states.
193 // We've reached the end of states to match and we didn't
205 * prohibited (if negative) {@link android.view.View} states
    [all...]
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
BlockingStateCallback.java 35 * requested type arrives. Unobserved states are states that have occurred since
98 * Total number of reachable states
160 * Wait until the one of the desired states is observed, checking all
165 * @param states Set of desired states to observe a transition to.
169 * @throws TimeoutRuntimeException if none of the states is observed before timeout.
172 public int waitForAnyOfStates(Collection<Integer> states, final long timeout) {
181 appendStates(s, states);
194 if (states.contains(nextState)) break
    [all...]

Completed in 1024 milliseconds

12 3 4 5 6 7 8 91011>>