HomeSort by relevance Sort by last modified time
    Searched refs:states (Results 1 - 25 of 642) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
IProcessInfoService.aidl 27 void getProcessStatesFromPids(in int[] pids, out int[] states);
32 * in the states array to indicate that no process with the given PID exists.
34 void getProcessStatesAndOomScoresFromPids(in int[] pids, out int[] states, out int[] scores);
  /system/connectivity/shill/test-scripts/
test-compat 11 states = [ "unknown", "asleep", "connecting", "connected", "disconnected" ] variable
15 print "System is %s" % (states[state])
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
relax-1.s 1 ! Check limits of PT assembler relaxation states. Unfortunately, we can't
  /external/icu/icu4c/source/tools/toolutil/
ucmstate.c 154 /* adjust "final valid" states according to the state flags */
186 ucm_addState(UCMStates *states, const char *s) {
189 if(states->countStates==MBCS_MAX_STATE_COUNT) {
190 fprintf(stderr, "ucm error: too many states (maximum %u)\n", MBCS_MAX_STATE_COUNT);
194 error=parseState(s, states->stateTable[states->countStates],
195 &states->stateFlags[states->countStates]);
201 ++states->countStates;
207 UCMStates *states; local
    [all...]
  /frameworks/native/include/binder/
IProcessInfoService.h 32 /*out*/ int32_t* states) = 0;
36 /*out*/ int32_t* states,
ProcessInfoService.h 37 status_t getProcessStatesImpl(size_t length, /*in*/ int32_t* pids, /*out*/ int32_t* states);
46 * for that process into the "states" output array, or
53 /*out*/ int32_t* states) {
55 /*out*/ states);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
CombinedEventsManager.java 41 /** Events states. */
42 private final List<EventState> states; field in class:CombinedEventsManager
54 states = new ArrayList<EventState>();
72 states.add(new EventState(handler, maxCheckInterval,
84 for (EventState state : states) {
95 states.clear();
99 * @return a collection of the events states
103 return states;
110 return states.isEmpty();
129 if (states.isEmpty())
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraStateHolder.java 117 * @param states Expected states.
121 public boolean waitForStates(final int states) {
122 Log.v(TAG, "waitForStates - states = " + Integer.toBinaryString(states));
126 return (states | getState()) == states;
135 * @param states States to avoid.
139 public boolean waitToAvoidStates(final int states) {
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
dot.stg 33 dfa(decisionRanks,states,edges,rankdir,startState,useBox) ::= <<
37 <states; separator="\n">
42 nfa(decisionRanks,states,edges,rankdir,startState) ::= <<
46 <states; separator="\n">
51 decision_rank(states) ::= <<
52 {rank=same; rankdir=TB; <states; separator="; ">}
  /external/libxml2/
dbgen.pl 14 @states = ("AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA",
28 $state = $states [($i / 100) % 50];
dbgenattr.pl 14 @states = ("AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA",
28 $state = $states [($i / 100) % 50];
testAutomata.c 37 xmlAutomataStatePtr states[1000]; local
42 states[i] = NULL;
58 states[0] = xmlAutomataGetInitState(am);
59 if (states[0] == NULL) {
88 if (states[from] == NULL)
89 states[from] = xmlAutomataNewState(am);
97 if (states[to] == NULL)
98 states[to] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[to]
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
WorkspaceStateTransitionAnimation.java 134 * Stores the transition states for convenience.
138 // Raw states
180 * Manages the animations between each of the workspace states.
233 TransitionStates states = new TransitionStates(fromState, toState); local
234 int workspaceDuration = getAnimationDuration(states);
235 animateWorkspace(states, animated, workspaceDuration, layerViews,
237 animateBackgroundGradient(states, animated, BACKGROUND_FADE_OUT_DURATION);
248 private int getAnimationDuration(TransitionStates states) {
249 if (states.workspaceToAllApps || states.overviewToAllApps)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSamplerStateQueryTests.cpp 116 } states[] = local
170 for (int stateNdx = 0; stateNdx < DE_LENGTH_OF_ARRAY(states); ++stateNdx)
173 if (!states[stateNdx].newInGLES31)
176 if (isExtendedParamQuery(states[stateNdx].tester))
181 std::string() + states[stateNdx].name + verifierSuffix,
182 states[stateNdx].desc,
184 states[stateNdx].tester));
186 else if (isIsVectorQuery(states[stateNdx].tester))
190 std::string() + states[stateNdx].name + verifierSuffix,
191 states[stateNdx].desc
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
OpenIntToDoubleHashMap.java 76 /** States table. */
77 private byte[] states; field in class:OpenIntToDoubleHashMap
124 states = new byte[capacity];
139 states = new byte[length];
140 System.arraycopy(source.states, 0, states, 0, length);
186 if (states[index] == FREE) {
191 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT) {
216 if (states[index] == FREE) {
221 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT)
    [all...]
OpenIntToFieldHashMap.java 82 /** States table. */
83 private byte[] states; field in class:OpenIntToFieldHashMap
135 states = new byte[capacity];
151 states = new byte[length];
152 System.arraycopy(source.states, 0, states, 0, length);
198 if (states[index] == FREE) {
203 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT) {
228 if (states[index] == FREE) {
233 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fSamplerStateQueryTests.cpp 78 } states[] = local
91 for (int stateNdx = 0; stateNdx < DE_LENGTH_OF_ARRAY(states); ++stateNdx)
95 std::string() + states[stateNdx].name + getVerifierSuffix(verifier),
96 states[stateNdx].desc,
98 states[stateNdx].tester)));
es3fTextureStateQueryTests.cpp 90 } states[] = local
119 for (int stateNdx = 0; stateNdx < DE_LENGTH_OF_ARRAY(states); ++stateNdx)
121 if (!isLegalTesterForTarget(textureTargets[targetNdx].target, states[stateNdx].tester))
126 std::string() + textureTargets[targetNdx].name + "_" + states[stateNdx].name + getVerifierSuffix(verifier),
127 states[stateNdx].desc,
130 states[stateNdx].tester)));
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
StateWaiter.java 34 * requested type arrives. Unobserved states are states that have occurred since
60 * <p>All {@code state}/{@code states} arguments used in other methods must be
63 * @param stateNames an array of string names, used to mark the range of the valid states
104 * Wait until the one of the desired {@code states} is observed, checking all
107 * <p>Any intermediate state transitions that are not in {@code states} are ignored.</p>
111 * @param states Set of desired states to observe a transition to.
117 * @throws TimeoutRuntimeException if none of the states is observed before timeout.
120 public int waitForAnyOfStates(Collection<Integer> states, final long timeoutMs)
    [all...]
  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorStateDrawable.java 40 protected boolean onStateChange(int[] states) {
42 for (int state : states) {
55 return super.onStateChange(states);
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISMultiTouch.h 128 /** @remarks Clear out the set of input states. Should be called after input has been processed by the application */
134 /** @remarks Returns the first n touch states. Useful if you know your app only needs to
137 std::vector<MultiTouchState> states; local
140 states.push_back(mStates[i]);
143 return states;
146 /** @remarks Returns the first n touch states. Useful if you know your app only needs to
149 std::vector<MultiTouchState> states; local
152 states.push_back(mStates[i]);
155 return states;
  /frameworks/native/libs/binder/
IProcessInfoService.cpp 32 /*out*/ int32_t* states)
46 if (replyLen > 0 && (err = reply.read(states, length * sizeof(*states))) != NO_ERROR) {
53 /*in*/ int32_t* pids, /*out*/ int32_t* states, /*out*/ int32_t* scores)
72 states, length * sizeof(*states))) != NO_ERROR) {
  /external/icu/icu4c/source/i18n/
regexcst.pl 30 $states{"pop"} = 255; # Add the "pop" to the list of defined state names.
63 if ($states{$state_name} != 0) {
66 $states{$state_name} = $num_states;
162 # We read all states first, before writing anything, so that the state numbers
163 # for the destination states are all available to be written.
185 # Check that all of the destination states have been defined
188 $states{"exit"} = 0; # Predefined state name, terminates state machine.
190 if ($states{$state_dest_state[$state]} == 0 && $state_dest_state[$state] ne "exit") {
194 if ($state_push_state[$state] ne "" && $states{$state_push_state[$state]} == 0) {
278 print " {doNOP, 0, 0, 0, TRUE}\n"; # State 0 is a dummy. Real states start with index = 1
    [all...]
  /cts/tests/tests/text/src/android/text/style/cts/
TextAppearanceSpanTest.java 32 int[][] states = new int[][] { new int[0], new int[0] }; local
34 ColorStateList csl = new ColorStateList(states, colors);
69 int[][] states = new int[][] { new int[0], new int[0] }; local
71 ColorStateList csl = new ColorStateList(states, colors);
78 int[][] states = new int[][] { new int[0], new int[0] }; local
80 ColorStateList csl = new ColorStateList(states, colors);
100 int[][] states = new int[][] { new int[0], new int[0] }; local
102 ColorStateList csl = new ColorStateList(states, colors);
118 int[][] states = new int[][] { new int[0], new int[0] }; local
120 ColorStateList csl = new ColorStateList(states, colors)
133 int[][] states = new int[][] { new int[0], new int[0] }; local
142 int[][] states = new int[][] { new int[0], new int[0] }; local
154 int[][] states = new int[][] { new int[0], new int[0] }; local
    [all...]
  /external/icu/icu4c/source/common/
rbbicst.pl 29 $states{"pop"} = 255; # Add the "pop" to the list of defined state names.
62 if ($states{$state_name} != 0) {
65 $states{$state_name} = $num_states;
161 # We read all states first, before writing anything, so that the state numbers
162 # for the destination states are all available to be written.
184 # Check that all of the destination states have been defined
187 $states{"exit"} = 0; # Predefined state name, terminates state machine.
189 if ($states{$state_dest_state[$state]} == 0 && $state_dest_state[$state] ne "exit") {
193 if ($state_push_state[$state] ne "" && $states{$state_push_state[$state]} == 0) {
302 print " $states{$state_dest_state[$state]},"
    [all...]

Completed in 1329 milliseconds

1 2 3 4 5 6 7 8 91011>>