/external/icu/icu4c/source/tools/toolutil/ |
ucmstate.cpp | 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...] |
/external/antlr/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 | 48 /* Grab and return enough states that the state pool test below won't 52 struct anv_state states[NUM_THREADS * STATES_PER_THREAD]; local 54 states[i] = anv_state_pool_alloc(&state_pool, 16, 16); 55 assert(states[i].offset != 0); 59 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]);
|
/external/skia/src/sksl/lex/ |
NFA.cpp | 11 std::vector<int> states = fStartStates; local 14 for (int id : states) { 29 states = next; 32 for (int id : states) {
|
DFAState.h | 17 Label(std::vector<int> states) 18 : fStates(std::move(states)) {}
|
/external/skqp/src/sksl/lex/ |
NFA.cpp | 11 std::vector<int> states = fStartStates; local 14 for (int id : states) { 29 states = next; 32 for (int id : states) {
|
DFAState.h | 17 Label(std::vector<int> states) 18 : fStates(std::move(states)) {}
|
/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...] |
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...] |
/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)));
|
/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...] |
/external/v8/src/third_party/utf8-decoder/ |
utf8-decoder.h | 58 static constexpr uint8_t states[] = { local 71 *state = static_cast<State>(states[*state + type]);
|
/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...] |
/external/u-boot/arch/arm/dts/ |
fsl-imx8-ca53.dtsi | 20 idle-states { 50 cpu-idle-states = <&CPU_SLEEP>; 59 cpu-idle-states = <&CPU_SLEEP>; 68 cpu-idle-states = <&CPU_SLEEP>; 77 cpu-idle-states = <&CPU_SLEEP>;
|
/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];
|
/device/generic/goldfish/power/ |
Power.cpp | 84 hidl_vec<PowerStatePlatformSleepState> states; local 86 states.resize(0); 87 _hidl_cb(states, Status::SUCCESS); 96 subsystem.states.resize(WLAN_STATE_COUNT); 99 state = &subsystem.states[WLAN_STATE_ACTIVE]; 107 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...] |