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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
decision-rank.st 1 {rank=same; rankdir=TB; <states; separator="; ">}
dfa.st 4 <states; separator="\n">
nfa.st 4 <states; separator="\n">
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
color1-expected-completion46a.txt 2 <item /> : Drawable states.
  /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...]
  /external/iptables/extensions/
libxt_state.man 5 Where state is a comma separated list of the connection states to match. Only a
6 subset of the states unterstood by "conntrack" are recognized: \fBINVALID\fP,
  /frameworks/av/media/libstagefright/
ProcessInfo.cpp 35 int32_t states; local
36 status_t err = service->getProcessStatesFromPids(length, &pid, &states);
41 ALOGV("pid %d states %d", pid, states);
42 if (states < 0) {
47 *priority = states;
  /external/jmonkeyengine/engine/src/core/com/jme3/app/state/
AppStateManager.java 69 * List holding the attached app states that are pending
71 * the running app states.
76 * Holds the active states once they are initialized.
78 private final SafeArrayList<AppState> states = new SafeArrayList<AppState>(AppState.class); field in class:AppStateManager
81 * List holding the detached app states that are pending
87 // synchronized separately.... but always on the states list. This
99 synchronized (states){
105 synchronized (states){
111 synchronized (states){
112 return states.getArray();
    [all...]
  /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/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...]
  /cts/tools/signature-tools/src/signature/compare/model/
DeltaType.java 24 * States that an element was added to the toApi.
28 * States that an element was removed from the toApi.
32 * States that an element changed.
  /external/chromium-trace/trace-viewer/tracing/tracing/model/
compound_event_selection_state.html 21 * selected states other than just "yes, no". This enum encodes those
22 * various possible states.
25 // Basic bit states.
  /external/libxml2/
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...]
  /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...]
  /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/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerGetCurrentPositionStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
31 * 1. It is valid to call getCurrentPosition() in the following states:
33 * 2. It is invalid to call getCurrentPosition() in the following states:
39 // Valid states.
49 // Invalid states.
MediaPlayerGetDurationStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
31 * 1. It is valid to call getDuration() in the following states:
33 * 2. It is invalid to call getDuration() in the following states:
39 // Valid states.
48 // Invalid states.
MediaPlayerGetVideoHeightStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
31 * 1. It is valid to call getVideoHeight() in the following states:
33 * 2. It is invalid to call getVideoHeight() in the following states:
39 // Valid states.
51 // Invalid states.
MediaPlayerGetVideoWidthStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
31 * 1. It is valid to call getVideoWidth() in the following states:
33 * 2. It is invalid to call getVideoWidth() in the following states:
39 // Valid states.
51 // Invalid states.
MediaPlayerIsPlayingStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
31 * 1. It is valid to call isPlaying() in the following states:
33 * 2. It is invalid to call isPlaying() in the following states:
39 // Valid states.
51 // Invalid states.
MediaPlayerPauseStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
31 * 1. It is valid to call pause() in the following states:
33 * 2. It is invalid to call pause() in the following states:
39 // Valid states.
45 // Invalid states.
MediaPlayerResetStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
31 * 1. It is valid to call reset() in the following states:
33 * 2. It is invalid to call reset() in the following states:
39 // Valid states.
51 // Invalid states.
MediaPlayerSeekToStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
31 * 1. It is valid to call seekTo() in the following states:
33 * 2. It is invalid to call seekTo() in the following states:
39 // Valid states.
46 // Invalid states.
MediaPlayerSetAudioStreamTypeStateUnitTest.java 25 * Unit test class to test the set of valid and invalid states that
32 * 1. It is valid to call setAudioStreamType() in the following states:
34 * 2. It is invalid to call setAudioStreamType() in the following states:
40 // Valid states.
52 // Invalid states.
MediaPlayerSetLoopingStateUnitTest.java 24 * Unit test class to test the set of valid and invalid states that
32 * 1. It is valid to call setLooping() in the following states:
34 * 2. It is invalid to call setLooping() in the following states:
40 // Valid states.
52 // Invalid states.

Completed in 1214 milliseconds

1 2 3 4 5 6 7 8 91011>>