Searched refs:match_index (Results 1 - 9 of 9) sorted by relevance
/third_party/rust/crates/aho-corasick/src/ |
H A 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 in get_match() [all...] |
H A D | automaton.rs | 130 /// detected match. If no match exists or if `match_index` exceeds the 135 /// If the given state ID is correct and if the `match_index` is less than 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() 490 // 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 in overlapping_find_at() [all...] |
H A D | ahocorasick.rs | 1091 match_index: &mut usize, in overlapping_find_at() 1099 match_index, in overlapping_find_at() 1106 match_index, in overlapping_find_at() 1223 match_index: usize, 1242 match_index: 0, in new() 1256 &mut self.match_index, in next()
|
/third_party/rust/crates/regex/tests/ |
H A D | macros.rs | 111 ($name:ident, $res:expr, $text:expr, $($match_index:expr),*) => { 117 let expected = vec![$($match_index),*];
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A 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()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | shader_query.cpp | 1930 unsigned match_index = 0; in validate_io() local 1954 match_index = j; in validate_io() 1965 match_index = j; in validate_io() 1990 outputs[match_index] = NULL; in validate_io() 1992 if (match_index < num_outputs) in validate_io() 1993 outputs[match_index] = outputs[num_outputs]; in validate_io()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-regexp-object.c | 2259 uint32_t match_index = 1; in ecma_regexp_split_helper() local 2260 while (match_index <= match_length) in ecma_regexp_split_helper() 2263 result = ecma_op_object_get_by_uint32_index (match_array_p, match_index++); in ecma_regexp_split_helper()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | tls_openssl.c | 1834 int i, ret = 0, len, config_dn_field_index, match_index = 0; in match_dn_field() local 1859 match_index++; in match_dn_field() 1862 if (match_index != config_dn_field_index) in match_dn_field()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | tls_openssl.c | 1874 int i, ret = 0, len, config_dn_field_index, match_index = 0; in match_dn_field() local 1899 match_index++; in match_dn_field() 1902 if (match_index != config_dn_field_index) in match_dn_field()
|
Completed in 25 milliseconds