Searched refs:state_index (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/content/common/android/
H A Daddress_parser_internal.h74 size_t* state_index);
77 CONTENT_EXPORT bool IsZipValid(const Word& word, size_t state_index);
78 CONTENT_EXPORT bool IsZipValidForState(const Word& word, size_t state_index);
H A Daddress_parser_internal.cc253 size_t* state_index) {
295 char state_index; // Relative to two-character code alphabetical order. member in struct:content::address_parser::internal::StateNameInfo
370 *state_index = state_two_letter_accumulative[first_index] +
407 *state_index = state_names[state].state_index;
415 bool IsZipValid(const Word& word, size_t state_index) { argument
426 return IsZipValidForState(word, state_index);
429 bool IsZipValidForState(const Word& word, size_t state_index) { argument
504 if ((zip_prefix >= zip_range[state_index].low &&
505 zip_prefix <= zip_range[state_index]
249 FindStateStartingInWord(WordList* words, size_t state_first_word, size_t* state_last_word, String16Tokenizer* tokenizer, size_t* state_index) argument
[all...]
H A Daddress_parser.cc162 size_t state_last_word, state_index; local
164 &tokenizer, &state_index)) {
194 if (!IsZipValid(words[zip_word], state_index))
H A Daddress_parser_unittest.cc42 bool GetState(const std::string& state, size_t* state_index) const {
53 state_index);
57 size_t state_index; local
58 return GetState(state, &state_index);
62 size_t state_index; local
63 EXPECT_TRUE(GetState(state, &state_index));
69 return ::IsZipValid(words.front(), state_index);
/external/openssl/crypto/rand/
H A Dmd_rand.c139 static int state_num=0,state_index=0; variable
184 state_index=0;
231 st_idx=state_index;
242 /* state_index <= state_num <= STATE_SIZE */
243 state_index += num;
244 if (state_index >= STATE_SIZE)
246 state_index%=STATE_SIZE;
251 if (state_index > state_num)
252 state_num=state_index;
254 /* state_index <
[all...]
/external/e2fsprogs/ext2ed/
H A Dmain.c465 int state_index=-1; local
475 state_index++;
476 if (state==state_index) {
486 state_index++;
487 if (state==state_index)
497 state_index++;
498 if (state==state_index)
506 state_index++;
507 if (state==state_index)
/external/chromium_org/base/i18n/
H A Dbuild_utf8_validator_tables.cc400 for (uint8 state_index = 0; state_index < states.size(); ++state_index) {
401 const uint8 shift = shifts[state_index];
406 static_cast<int>(state_index),
407 static_cast<int>(state_offset[state_index]));
410 if (next_range < states[state_index].size() &&
411 states[state_index][next_range].from == i) {
412 target_state = states[state_index][next_range].target_state;
/external/chromium_org/ui/views/controls/combobox/
H A Dcombobox.cc254 for (size_t state_index = 0; state_index < arraysize(button_states);
255 state_index++) {
256 Button::ButtonState state = button_states[state_index];

Completed in 201 milliseconds