/external/libchrome/base/i18n/ |
D | string_search.cc | 41 const string16& in_this, size_t* match_index, size_t* match_length) { in Search() argument 54 if (match_index) in Search() 55 *match_index = index; in Search() 65 if (match_index) in Search() 66 *match_index = static_cast<size_t>(index); in Search() 74 size_t* match_index, in StringSearchIgnoringCaseAndAccents() argument 77 in_this, match_index, match_length); in StringSearchIgnoringCaseAndAccents()
|
D | string_search.h | 28 size_t* match_index, 44 size_t* match_index,
|
/external/vboot_reference/cgpt/ |
D | cgpt.c | 58 int match_index = 0; in main() local 79 match_index = i; in main() 85 match_index = i; in main() 91 return cmds[match_index].fp(argc, argv); in main()
|
/external/rust/crates/aho-corasick/src/ |
D | dfa.rs | 61 match_index: &mut usize, in overlapping_find_at() 69 match_index, in overlapping_find_at() 76 match_index, in overlapping_find_at() 83 match_index, in overlapping_find_at() 90 match_index, in overlapping_find_at() 186 match_index: usize, in get_match() 189 self.repr().get_match(id, match_index, end) in get_match() 245 match_index: usize, in get_match() 248 self.repr().get_match(id, match_index, end) in get_match() 306 match_index: usize, in get_match() [all …]
|
D | automaton.rs | 141 match_index: usize, in get_match() 481 match_index: &mut usize, in overlapping_find_at() 488 if *match_index < match_count { in overlapping_find_at() 491 let result = self.get_match(*state_id, *match_index, at); in overlapping_find_at() 493 *match_index += 1; in overlapping_find_at() 497 *match_index = 0; in overlapping_find_at() 501 *match_index = 1; in overlapping_find_at()
|
D | ahocorasick.rs | 1103 match_index: &mut usize, in overlapping_find_at() 1111 match_index, in overlapping_find_at() 1118 match_index, in overlapping_find_at() 1236 match_index: usize, field 1256 match_index: 0, in new() 1270 &mut self.match_index, in next()
|
D | nfa.rs | 247 match_index: usize, in get_match() 254 state.matches.get(match_index).map(|&(id, len)| Match { in get_match()
|
/external/llvm-project/lldb/examples/python/ |
D | memory.py | 258 match_index = string.find(bytes, options.data) 259 while match_index != -1: 262 match_index, start_addr, match_index), file=result) 263 match_index = string.find(bytes, options.data, match_index + 1)
|
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
D | expect.py | 37 spawn.match_index = index 54 spawn.match_index = index 58 spawn.match_index = None 73 spawn.match_index = index 77 spawn.match_index = None 89 spawn.match_index = None
|
D | spawnbase.py | 44 self.match_index = None
|
D | pty_spawn.py | 219 s.append('match_index: ' + str(self.match_index))
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 398 self.match_index = None 473 s.append('match_index: ' + str(self.match_index)) 1381 self.match_index = index 1382 return self.match_index 1400 self.match_index = index 1401 return self.match_index 1404 self.match_index = None 1413 self.match_index = index 1414 return self.match_index 1417 self.match_index = None [all …]
|
/external/rust/crates/regex/tests/ |
D | macros.rs | 111 ($name:ident, $res:expr, $text:expr, $($match_index:expr),*) => { 117 let expected = vec![$($match_index),*];
|
/external/protobuf/python/google/protobuf/pyext/ |
D | repeated_scalar_container.cc | 541 Py_ssize_t match_index = -1; in Subscript() local 545 match_index = i; in Subscript() 549 if (match_index == -1) { in Subscript() 553 if (AssignItem(pself, match_index, NULL) < 0) { in Subscript()
|
/external/mesa3d/src/mesa/main/ |
D | shader_query.cpp | 1703 unsigned match_index = 0; in validate_io() local 1727 match_index = j; in validate_io() 1738 match_index = j; in validate_io() 1763 outputs[match_index] = NULL; in validate_io() 1765 if (match_index < num_outputs) in validate_io() 1766 outputs[match_index] = outputs[num_outputs]; in validate_io()
|
/external/libaom/libaom/av1/encoder/ |
D | compound_type.c | 87 int *match_index) { in find_comp_rd_in_stats() argument 92 *match_index = j; in find_comp_rd_in_stats() 878 int match_index) { in populate_reuse_comp_type_data() argument 880 x->comp_rd_stats[match_index].interinter_comp.type; in populate_reuse_comp_type_data() 884 mbmi->interinter_comp = x->comp_rd_stats[match_index].interinter_comp; in populate_reuse_comp_type_data() 1240 int match_index = 0; in av1_compound_type_rd() local 1243 comp_model_dist, comp_rs2, &match_index); in av1_compound_type_rd() 1282 rate_mv, rd, match_index); in av1_compound_type_rd()
|
D | tx_search.c | 335 int32_t match_index = -1; in find_mb_rd_info() local 342 match_index = index; in find_mb_rd_info() 347 return match_index; in find_mb_rd_info() 3254 const int match_index = find_mb_rd_info(mb_rd_record, ref_best_rd, hash); in av1_pick_recursive_tx_size_type_yrd() local 3255 if (match_index != -1) { in av1_pick_recursive_tx_size_type_yrd() 3256 MB_RD_INFO *tx_rd_info = &mb_rd_record->tx_rd_info[match_index]; in av1_pick_recursive_tx_size_type_yrd() 3340 const int match_index = find_mb_rd_info(mb_rd_record, ref_best_rd, hash); in av1_pick_uniform_tx_size_type_yrd() local 3341 if (match_index != -1) { in av1_pick_uniform_tx_size_type_yrd() 3342 MB_RD_INFO *tx_rd_info = &mb_rd_record->tx_rd_info[match_index]; in av1_pick_uniform_tx_size_type_yrd()
|
/external/linux-kselftest/tools/testing/selftests/tc-testing/ |
D | tdc.py | 299 match_index = re.findall(match_pattern, procout) 300 if len(match_index) != int(tidx["matchCount"]):
|
/external/wpa_supplicant_8/src/crypto/ |
D | tls_openssl.c | 1865 int i, ret = 0, len, config_dn_field_index, match_index = 0; in match_dn_field() local 1890 match_index++; in match_dn_field() 1893 if (match_index != config_dn_field_index) in match_dn_field()
|