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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/icu/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/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/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/chromium_org/third_party/libxml/src/
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/chromium_org/third_party/icu/source/common/
unorm_it.c 38 * chars and states either use the static buffers
41 * They are parallel arrays with states[] holding the getState() values
45 uint32_t *states; member in struct:UNormIterator
50 * api.limit: one past the last valid character in chars[], but states[limit] is valid
94 uint32_t *states; local
98 states=(uint32_t *)uprv_malloc((capacity+1)*4+capacity*2);
99 if(states==NULL) {
103 chars=(UChar *)(states+(capacity+1));
114 uprv_memcpy(states+delta+start, uni->states+start, (limit-start+1)*4)
    [all...]
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...]
  /external/chromium_org/components/invalidation/
fake_invalidation_state_tracker.cc 41 const UnackedInvalidationsMap& states) {
42 unacked_invalidations_map_ = states;
invalidation_state_tracker.h 55 virtual void SetSavedInvalidations(const UnackedInvalidationsMap& states) = 0;
  /external/chromium_org/third_party/icu/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...]
  /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/chromium_org/chrome/browser/signin/
easy_unlock_screenlock_state_handler_unittest.cc 344 std::vector<EasyUnlockScreenlockStateHandler::State> states; local
345 states.push_back(EasyUnlockScreenlockStateHandler::STATE_NO_BLUETOOTH);
346 states.push_back(EasyUnlockScreenlockStateHandler::STATE_NO_PHONE);
347 states.push_back(EasyUnlockScreenlockStateHandler::STATE_PHONE_UNSUPPORTED);
348 states.push_back(EasyUnlockScreenlockStateHandler::STATE_PHONE_UNLOCKABLE);
349 states.push_back(
351 states.push_back(EasyUnlockScreenlockStateHandler::STATE_PHONE_LOCKED);
353 for (size_t i = 0; i < states.size(); ++i) {
354 state_handler_->ChangeState(states[i]);
358 << "State: " << states[i]
384 std::vector<EasyUnlockScreenlockStateHandler::State> states; local
510 std::vector<EasyUnlockScreenlockStateHandler::State> states; local
755 std::vector<EasyUnlockScreenlockStateHandler::State> states; 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...]
  /external/chromium-trace/trace-viewer/src/ui/
mouse_mode_selector.css 26 background: url(../images/ui-states.png) 2px 3px no-repeat;
36 background-image: url(../images/ui-states.png);
45 background-image: url(../images/ui-states.png);
54 background-image: url(../images/ui-states.png);
  /external/chromium_org/base/i18n/
build_utf8_validator_tables.cc 13 // identical states.
280 // start bytes and target states. All input bytes in the range between the start
291 // as an initialiser for other states (since bytes from outside the desired
299 // a number (which is an index into the array of states).
302 // Create a new state corresponding to |set|, add it |states| and |state_map|
303 // and return the index it was given in |states|.
305 std::vector<State>* states,
312 ? MakeState(rest, states, state_map)
319 states->push_back(
323 base::checked_cast<uint8>(states->size() - 1)
455 std::vector<State> states = GenerateStates(pairs); local
    [all...]
  /external/chromium_org/sync/tools/
null_invalidation_state_tracker.h 28 const UnackedInvalidationsMap& states) OVERRIDE;
  /developers/build/prebuilts/gradle/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
ThumbnailRadioButton.java 87 StateListDrawable states = new StateListDrawable(); local
88 states.addState(new int[]{android.R.attr.state_checked},
90 states.addState(new int[]{},
94 setBackground(states);
96 setBackgroundDrawable(states);
  /developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
ThumbnailRadioButton.java 87 StateListDrawable states = new StateListDrawable(); local
88 states.addState(new int[]{android.R.attr.state_checked},
90 states.addState(new int[]{},
94 setBackground(states);
96 setBackgroundDrawable(states);
  /development/samples/browseable/RenderScriptIntrinsic/src/com.example.android.renderscriptintrinsic/
ThumbnailRadioButton.java 87 StateListDrawable states = new StateListDrawable(); local
88 states.addState(new int[]{android.R.attr.state_checked},
90 states.addState(new int[]{},
94 setBackground(states);
96 setBackgroundDrawable(states);
  /external/bison/src/
state.h 33 A core represents one state. States are numbered in the NUMBER
35 state 0 and NSTATES is the number of states. (FIXME: This sentence
51 lookahead token alone). When the states are generated, these
56 contains a vector of numbers of the states that transitions can go
57 to. The accessing_symbol fields of those states' cores say what
68 states should explicitly be errors (for implementing %nonassoc).
91 | Numbering states. |
114 state *states[1]; member in struct:__anon5010
119 TRANSITIONS->states[Num]? Can be a token (amongst which the error
123 (Transitions->states[Num]->accessing_symbol
    [all...]
state.c 44 transitions *res = xmalloc (offsetof (transitions, states) + states_size);
46 memcpy (res->states, the_states, states_size);
64 return shifts->states[j];
114 | States. |
169 transitions_new (s->transitions->num, s->transitions->states);
303 /* Initial capacity of states hash table. */
308 /* Two states are equal if they have the same core items. */
349 | Create the states hash table. |
364 | Free the states hash table, not the states.
452 state **states = NULL; variable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ThemeMac.mm 146 static void updateStates(NSCell* cell, ControlStates states)
152 bool pressed = states & PressedControlState;
158 bool enabled = states & EnabledControlState;
165 bool focused = states & FocusControlState;
172 bool indeterminate = (states & IndeterminateControlState);
173 bool checked = states & CheckedControlState;
182 static ThemeDrawState convertControlStatesToThemeDrawState(ThemeButtonKind kind, ControlStates states)
184 if (states & ReadOnlyControlState)
186 if (!(states & EnabledControlState))
190 if (states & PressedControlState)
    [all...]
  /external/aac/libSBRenc/src/
resampler.cpp 314 FDKmemclear(DownSampler->downFilter.states, sizeof(DownSampler->downFilter.states));
374 FIXP_BQS (*states)[2] = downFilter->states;
393 state1 = states[0][s1];
394 state2 = states[0][s2];
401 /* Load merged states (from next section) */
402 state1b = states[i+1][s1];
403 state2b = states[i+1][s2];
409 states[i+1][s2] = y<<1
    [all...]

Completed in 971 milliseconds

1 2 3 4 5 6 7 8 910