/external/chromium_org/content/common/android/ |
address_parser_unittest.cc | 42 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);
|
address_parser.cc | 162 size_t state_last_word, state_index; local 164 &tokenizer, &state_index)) { 194 if (!IsZipValid(words[zip_word], state_index))
|
address_parser_internal.cc | 253 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) { 426 return IsZipValidForState(word, state_index); 429 bool IsZipValidForState(const Word& word, size_t state_index) { 504 if ((zip_prefix >= zip_range[state_index].low && 505 zip_prefix <= zip_range[state_index].high) | [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/rand/ |
md_rand.c | 139 static int state_num=0,state_index=0; variable 185 state_index=0; 229 st_idx=state_index; 240 /* state_index <= state_num <= STATE_SIZE */ 241 state_index += num; 242 if (state_index >= STATE_SIZE) 244 state_index%=STATE_SIZE; 249 if (state_index > state_num) 250 state_num=state_index; 252 /* state_index <= state_num <= STATE_SIZE * [all...] |
/external/e2fsprogs/ext2ed/ |
main.c | 465 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/openssl/crypto/rand/ |
md_rand.c | 139 static int state_num=0,state_index=0; variable 185 state_index=0; 229 st_idx=state_index; 240 /* state_index <= state_num <= STATE_SIZE */ 241 state_index += num; 242 if (state_index >= STATE_SIZE) 244 state_index%=STATE_SIZE; 249 if (state_index > state_num) 250 state_num=state_index; 252 /* state_index <= state_num <= STATE_SIZE * [all...] |