/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);
|
/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
|
/frameworks/native/libs/binder/include/binder/ |
ProcessInfoService.h | 37 status_t getProcessStatesImpl(size_t length, /*in*/ int32_t* pids, /*out*/ int32_t* states); 39 /*out*/ int32_t* states, /*out*/ int32_t *scores); 48 * for that process into the "states" output array, or 55 /*out*/ int32_t* states) { 57 /*out*/ states); 62 * for that process into the "states" output array, or 71 /*out*/ int32_t* states, /*out*/ int32_t *scores) { 73 length, /*in*/ pids, /*out*/ states, /*out*/ scores);
|
IProcessInfoService.h | 32 /*out*/ int32_t* states) = 0; 36 /*out*/ int32_t* states,
|
/external/icu/icu4c/source/tools/toolutil/ |
ucmstate.c | 156 /* adjust "final valid" states according to the state flags */ 188 ucm_addState(UCMStates *states, const char *s) { 191 if(states->countStates==MBCS_MAX_STATE_COUNT) { 192 fprintf(stderr, "ucm error: too many states (maximum %u)\n", MBCS_MAX_STATE_COUNT); 196 error=parseState(s, states->stateTable[states->countStates], 197 &states->stateFlags[states->countStates]); 203 ++states->countStates; 209 UCMStates *states; local [all...] |
/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...] |
/external/mesa3d/src/intel/vulkan/tests/ |
state_pool_free_list_only.c | 47 /* Grab and return enough states that the state pool test below won't 51 struct anv_state states[NUM_THREADS * STATES_PER_THREAD]; local 53 states[i] = anv_state_pool_alloc(&state_pool, 16, 16); 54 assert(states[i].offset != 0); 58 anv_state_pool_free(&state_pool, states[i]);
|
state_pool_test_helper.h | 41 struct anv_state states[chunk_size]; local 47 states[i] = anv_state_pool_alloc(job->pool, 16, 16); 48 memset(states[i].map, 139, 16); 49 assert(states[i].offset != 0); 53 anv_state_pool_free(job->pool, states[i]);
|
/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);
|
/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 | 32 $states{"pop"} = 255; # Add the "pop" to the list of defined state names. 65 if ($states{$state_name} != 0) { 68 $states{$state_name} = $num_states; 164 # We read all states first, before writing anything, so that the state numbers 165 # for the destination states are all available to be written. 187 # Check that all of the destination states have been defined 190 $states{"exit"} = 0; # Predefined state name, terminates state machine. 192 if ($states{$state_dest_state[$state]} == 0 && $state_dest_state[$state] ne "exit") { 196 if ($state_push_state[$state] ne "" && $states{$state_push_state[$state]} == 0) { 282 print " {doNOP, 0, 0, 0, TRUE}\n"; # State 0 is a dummy. Real states start with index = 1 [all...] |
/hardware/interfaces/power/1.0/ |
IPower.hal | 76 * Report cumulative info on the statistics on platform-level sleep states 79 * Higher the index in the returned <states> vector deeper the state is 83 * @return states of power states the device supports 88 generates (vec<PowerStatePlatformSleepState> states, Status retval);
|
/hardware/interfaces/power/1.1/ |
types.hal | 20 * PowerStateSubsystemSleepState represents the sleep states 55 * and all the sleep states this susbsystem is capable of getting into. 66 * states represents the list of sleep states supported by this susbsystem. 67 * Higher the index in the returned <states> vector deeper the state is 72 * or the subsystem does not have any sleep states. 74 vec<PowerStateSubsystemSleepState> states;
|