Searched defs:states (Results 1 - 25 of 122) sorted by relevance

12345

/external/skia/src/sksl/lex/
H A DNFA.cpp11 std::vector<int> states = fStartStates; local
14 for (int id : states) {
29 states = next;
32 for (int id : states) {
H A DRegexNode.cpp50 std::vector<int> states = fChildren[0].createStates(nfa, accept); local
51 result.insert(result.end(), states.begin(), states.end());
52 states = fChildren[1].createStates(nfa, accept);
53 result.insert(result.end(), states.begin(), states.end());
H A DDFAState.h17 Label(std::vector<int> states) argument
18 : fStates(std::move(states)) {}
/external/skqp/src/sksl/lex/
H A DNFA.cpp11 std::vector<int> states = fStartStates; local
14 for (int id : states) {
29 states = next;
32 for (int id : states) {
H A DRegexNode.cpp50 std::vector<int> states = fChildren[0].createStates(nfa, accept); local
51 result.insert(result.end(), states.begin(), states.end());
52 states = fChildren[1].createStates(nfa, accept);
53 result.insert(result.end(), states.begin(), states.end());
H A DDFAState.h17 Label(std::vector<int> states) argument
18 : fStates(std::move(states)) {}
/external/mesa3d/src/intel/vulkan/tests/
H A Dstate_pool_free_list_only.c47 /* 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]);
H A Dstate_pool_test_helper.h41 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/python/cpython2/Demo/tkinter/ttk/
H A Dwidget_state.py1 """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...]
/external/aac/libSBRenc/src/
H A Dresampler.h121 FIXP_BQS states[MAXNR_SECTIONS + 1][2]; /*! state buffer */ member in struct:__anon695
/external/deqp/modules/gles3/functional/
H A Des3fSamplerStateQueryTests.cpp78 } 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)));
H A Des3fTextureStateQueryTests.cpp90 } 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/libmojo/mojo/public/c/system/tests/
H A Dcore_unittest_pure_c.c65 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/src/conntrack/
H A Dsnprintf.c29 const char *const states[TCP_CONNTRACK_MAX] = { variable
/external/ply/ply/test/
H A Dlex_opt_alias.py4 # Tests ability to match up functions with states, aliases, and
15 states = (('instdef','inclusive'),('spam','exclusive')) variable
H A Dlex_state1.py16 states = 'comment' variable
H A Dlex_state2.py16 states = ('comment','example') variable
H A Dlex_state3.py17 states = ((comment, 'inclusive'), variable
H A Dlex_state4.py17 states = (('comment', 'exclsive'),) variable
H A Dlex_state5.py16 states = (('comment', 'exclusive'), variable
H A Dlex_state_noerror.py16 states = (('comment', 'exclusive'),) variable
H A Dlex_state_norule.py16 states = (('comment', 'exclusive'), variable
H A Dlex_state_try.py16 states = (('comment', 'exclusive'),) variable
/external/tcpdump/
H A Dprint-hsrp.c50 /* HSRP states and associated names. */
51 static const struct tok states[] = { variable in typeref:struct:tok
109 ND_PRINT((ndo, "state=%s ", tok2str(states, "Unknown (%d)", hp->hsrp_state)));
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
H A DCombinedEventsManager.java41 /** 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
[all...]

Completed in 612 milliseconds

12345