/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/search/ |
D | search.go | 23 type Match struct { struct 24 pattern string // the pattern itself 25 Dirs []string // if the pattern is local, directories that potentially contain matching packages 26 Pkgs []string // matching packages (import paths) 27 Errs []error // errors matching the patterns to packages, NOT errors loading those packages 42 func (m *Match) Pattern() string { return m.pattern } 45 func (m *Match) AddError(err error) { 52 func (m *Match) IsLiteral() bool { 58 func (m *Match) IsLocal() bool { 64 func (m *Match) IsMeta() bool { [all …]
|
/aosp_15_r20/external/licenseclassifier/v2/ |
H A D | classifier.go | 29 type Match struct { struct 30 Name string 31 Confidence float64 32 MatchType string 33 Variant string 34 StartLine int 35 EndLine int 36 StartTokenIndex int 37 EndTokenIndex int 321 func (c *Classifier) Match(in []byte) Results { func [all …]
|
/aosp_15_r20/external/pytorch/torch/_inductor/fx_passes/ |
H A D | split_cat.py | 156 match: Match, 212 def normalize_split_default(match: Match, *args, **kwargs): 224 def remove_split_with_size_one(match: Match, *args, **kwargs): 262 def normalize_unbind_default(match: Match, *args, **kwargs): 298 def normalize_cat_default(match: Match, *args, **kwargs): 359 def normalize_stack_default(match: Match, *args, **kwargs): 404 def normalize_squeeze_default(match: Match, *args, **kwargs): 443 def normalize_reshape_default(match: Match, *args, **kwargs): 509 match: Match, 1186 match: Match, split_input: torch.fx.Node, split_sizes: List[int], dim: int [all …]
|
H A D | quantization.py | 56 def _get_pattern_output_dtype(match: Match): 316 def qconv(match: Match, *args, **kwargs): 403 def qlinear(match: Match, *args, **kwargs): 461 def qlinear_binary(match: Match, *args, **kwargs): 633 def qconv_binary(match: Match, *args, **kwargs): 1241 def qmaxpool2d(match: Match, *args, **kwargs): 1380 def qcat(match: Match, inputs, dim, **kwargs): 1421 def qreshape(match: Match, *args, **kwargs): 1470 def woq(match: Match, *args, **kwargs): 1630 def dequant_promotion(match: Match, *args, **kwargs): [all …]
|
H A D | post_grad.py | 209 def is_valid_mm_plus_mm(match: Match): 275 match: Match, shape, background_val, dtype, dim, selector, val 316 def mm_plus_mm(match: Match, mat1, mat2, mat3, mat4): 396 def uint4x2_mixed_mm(match: Match, mat1, mat2, mat2_mm_shape, mat2_dtype): 419 def mixed_mm(match: Match, mat1, mat2, mat2_dtype): 441 def pointless_cumsum_replacement(match: Match, shape, fill_value, device, dtype, dim): 814 def _(match: Match, *args, **kwargs): 836 def _(match: Match, *args, **kwargs): 856 def _(match: Match, *args, **kwargs): 998 def unfuse_bias_add_to_pointwise(match: Match, mat1, mat2, *, inp): [all …]
|
H A D | joint_graph.py | 491 def fix_iota_device(match: Match, length, start, step, dtype, device, requires_grad): 544 def pointless_convert(match: Match, arg, dtype1: torch.dtype, dtype2: torch.dtype): 562 def pointless_view(match: Match, arg, size): 643 def mul_softmax_pattern(match: Match, *, inp, other, dim, keepdim, dtype=None): 670 def div_softmax_pattern(match: Match, *, inp, other, dim, keepdim, dtype=None):
|
H A D | decompose_mem_bound_mm.py | 83 def print_decompose_pattern(match: Match, inputs: List[torch.fx.Node]): 99 def decompose_bmm(match: Match, mat1: torch.fx.Node, mat2: torch.fx.Node): 118 match: Match, 141 match: Match,
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/aho-corasick-1.1.3/src/packed/teddy/ |
H A D | generic.rs | 26 pub(crate) struct Match { struct 32 impl Match { impl 118 ) -> Option<Match> { in find() 153 ) -> Option<Match> { in find_one() 188 ) -> Option<Match> { in find() 216 ) -> Option<Match> { in find_one() 245 ) -> Option<Match> { in find() 276 ) -> Option<Match> { in find_one() 312 ) -> Option<Match> { in find() 350 ) -> Option<Match> { in find_one() [all …]
|
/aosp_15_r20/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/sentencepiece/ |
H A D | double_array_trie.h | 41 struct Match { struct 42 Match() {} in Match() argument 43 Match(int id, int match_length) : id(id), match_length(match_length) {} in Match() function 47 bool operator==(const Match& m) const { argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/aho-corasick/src/ |
D | automaton.rs | 143 ) -> Option<Match>; in get_match() 191 ) -> Option<Match> { in standard_find_at() 216 ) -> Option<Match> { in standard_find_at_imp() 276 ) -> Option<Match> { in leftmost_find_at() 301 ) -> Option<Match> { in leftmost_find_at_imp() 376 ) -> Option<Match> { in leftmost_find_at_no_state() 399 ) -> Option<Match> { in leftmost_find_at_no_state_imp() 482 ) -> Option<Match> { in overlapping_find_at() 518 ) -> Option<Match> { in earliest_find_at() 540 ) -> Option<Match> { in find_at() [all …]
|
D | lib.rs | 239 pub struct Match { struct 254 impl Match { argument 295 fn increment(&self, by: usize) -> Match { in increment() 300 fn from_span(id: usize, start: usize, end: usize) -> Match { in from_span()
|
D | ahocorasick.rs | 211 pub fn earliest_find<B: AsRef<[u8]>>(&self, haystack: B) -> Option<Match> { in earliest_find() 283 pub fn find<B: AsRef<[u8]>>(&self, haystack: B) -> Option<Match> { in find() 551 F: FnMut(&Match, &str, &mut String) -> bool, in replace_all_with() 617 F: FnMut(&Match, &[u8], &mut Vec<u8>) -> bool, in replace_all_with_bytes() 844 F: FnMut(&Match, &[u8], &mut W) -> io::Result<()>, in stream_replace_all_with() 1092 ) -> Option<Match> { in overlapping_find_at() 1118 ) -> Option<Match> { in earliest_find_at() 1135 ) -> Option<Match> { in find_at_no_state() 1177 fn next(&mut self) -> Option<Match> { in next() 1250 fn next(&mut self) -> Option<Match> { in next() [all …]
|
/aosp_15_r20/external/libtextclassifier/native/utils/container/ |
H A D | string-set.h | 28 struct Match { struct 29 Match() {} in Match() argument 30 Match(int id, int match_length) : id(id), match_length(match_length) {} in Match() function 39 std::vector<Match>* matches) const = 0; argument
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/aho-corasick-1.1.3/src/ |
H A D | automaton.rs | 357 ) -> Result<Option<Match>, MatchError> { in try_find() 501 F: FnMut(&Match, &str, &mut String) -> bool, in try_replace_all_with() 538 F: FnMut(&Match, &[u8], &mut Vec<u8>) -> bool, in try_replace_all_with_bytes() 618 F: FnMut(&Match, &[u8], &mut W) -> std::io::Result<()>, in try_stream_replace_all_with() 824 pub fn get_match(&self) -> Option<Match> { in get_match() 876 fn search(&self) -> Option<Match> { in search() 912 mut m: Match, in handle_overlapping_empty_match() 913 ) -> Option<Match> { in handle_overlapping_empty_match() 927 fn next(&mut self) -> Option<Match> { in next() 964 fn next(&mut self) -> Option<Match> { in next() [all …]
|
H A D | ahocorasick.rs | 404 pub fn find<'h, I: Into<Input<'h>>>(&self, input: I) -> Option<Match> { in find() 771 F: FnMut(&Match, &str, &mut String) -> bool, in replace_all_with() 840 F: FnMut(&Match, &[u8], &mut Vec<u8>) -> bool, in replace_all_with_bytes() 1024 ) -> Result<Option<Match>, MatchError> { in try_find() 1531 F: FnMut(&Match, &str, &mut String) -> bool, in try_replace_all_with() 1607 F: FnMut(&Match, &[u8], &mut Vec<u8>) -> bool, in try_replace_all_with_bytes() 1838 F: FnMut(&Match, &[u8], &mut W) -> Result<(), std::io::Error>, in try_stream_replace_all_with() 2053 fn next(&mut self) -> Option<Match> { in next() 2078 fn next(&mut self) -> Option<Match> { in next() 2108 fn next(&mut self) -> Option<Result<Match, std::io::Error>> { in next() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/aho-corasick/src/packed/teddy/ |
D | runtime.rs | 108 ) -> Option<Match> { in find_at() 212 ) -> Option<Match> { in verify128() 244 ) -> Option<Match> { in verify256() 277 ) -> Option<Match> { in verify_fat256() 337 ) -> Option<Match> { in verify64() 364 ) -> Option<Match> { in verify_bucket() 376 ) -> Match { in verify_bucket() 439 ) -> Option<Match> { in find_at() 489 ) -> Option<Match> { in find_at() 539 ) -> Option<Match> { in find_at() [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/util/ |
H A D | iter.rs | 378 F: FnMut(&Input<'_>) -> Result<Option<Match>, MatchError>, in advance() 427 ) -> Result<Option<Match>, MatchError> in try_advance() 429 F: FnMut(&Input<'_>) -> Result<Option<Match>, MatchError>, in try_advance() 542 F: FnMut(&Input<'_>) -> Result<Option<Match>, MatchError>, in into_matches_iter() 671 m: Match, in handle_overlapping_empty_match() 673 ) -> Result<Option<Match>, MatchError> in handle_overlapping_empty_match() 675 F: FnMut(&Input<'_>) -> Result<Option<Match>, MatchError>, in handle_overlapping_empty_match() 849 fn next(&mut self) -> Option<Result<Match, MatchError>> { in next() 902 fn next(&mut self) -> Option<Match> { in next()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/aho-corasick-1.1.3/src/util/ |
H A D | search.rs | 825 pub struct Match { struct 832 impl Match { argument 857 pub fn new<S: Into<Span>>(pattern: PatternID, span: S) -> Match { in new() 891 pub fn must<S: Into<Span>>(pattern: usize, span: S) -> Match { in must() 955 pub fn offset(&self, offset: usize) -> Match { in offset() method
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/ir/ |
H A D | subgraph_matcher.h | 18 struct Match { struct 28 * `struct Match`). argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/tracing-subscriber/src/filter/env/ |
D | field.rs | 17 pub(crate) struct Match { struct 19 pub(crate) value: Option<ValueMatch>, argument 150 impl Match { impl 180 impl fmt::Display for Match { implementation 190 impl Ord for Match { implementation 214 impl PartialOrd for Match { implementation
|
/aosp_15_r20/external/pytorch/torch/_inductor/ |
H A D | pattern_matcher.py | 142 class Match: class 185 def extend(self, other: Match) -> None: 977 def apply(self, match: Match, graph: torch.fx.Graph, node: torch.fx.Node) -> None: 1006 def apply(self, match: Match, graph: torch.fx.Graph, node: torch.fx.Node) -> None: 1024 def apply(self, match: Match, graph: torch.fx.Graph, node: torch.fx.Node) -> None: 1035 match: Match, 1183 def apply(self, match: Match, graph: torch.fx.Graph, node: torch.fx.Node) -> None: 1193 def _return_true(match: Match) -> bool: 1211 extra_check: Callable[[Match], bool] = _return_true, 1231 def check_fn(match: Match) -> bool: [all …]
|
/aosp_15_r20/external/skia/src/core/ |
H A D | SkRecordOpts.cpp | 53 Match; typedef 126 Match; typedef 160 typedef Pattern<Is<SaveLayer>, IsSingleDraw, Is<Restore>> Match; typedef 218 Is<Restore>, Is<Restore>, Is<Restore>> Match; typedef
|
/aosp_15_r20/external/angle/build/android/gyp/ |
H A D | create_unwind_table.py | 334 match: re.Match) -> Tuple[AddressUnwind, int]: 355 match: re.Match) -> Tuple[AddressUnwind, int]: 388 match: re.Match) -> Tuple[AddressUnwind, int]: 437 match: re.Match) -> Tuple[AddressUnwind, int]: 459 match: re.Match) -> Tuple[AddressUnwind, int]:
|
/aosp_15_r20/external/cronet/build/android/gyp/ |
H A D | create_unwind_table.py | 334 match: re.Match) -> Tuple[AddressUnwind, int]: 355 match: re.Match) -> Tuple[AddressUnwind, int]: 388 match: re.Match) -> Tuple[AddressUnwind, int]: 437 match: re.Match) -> Tuple[AddressUnwind, int]: 459 match: re.Match) -> Tuple[AddressUnwind, int]:
|
/aosp_15_r20/external/licenseclassifier/stringclassifier/ |
H A D | classifier.go | 164 type Match struct { struct 165 Name string // Name of knownValue that was matched 166 Confidence float64 // Confidence percentage 167 Offset int // The offset into the unknown string the match was made 168 Extent int // The length from the offset into the unknown string
|