Home
last modified time | relevance | path

Searched defs:PropertyMatcher (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/googletest/src/matchers/
Dproperty_matcher.rs153 struct PropertyMatcher<OuterT, ExtractorT, MatcherT> { struct
154 extractor: ExtractorT,
155 property_desc: &'static str,
156 inner: MatcherT,
157 phantom: PhantomData<OuterT>,
160 …impl<InnerT, OuterT, ExtractorT, MatcherT> Matcher for PropertyMatcher<OuterT, ExtractorT, Matcher… implementation
/aosp_15_r20/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
H A DAccessibilityEventFilterUtils.java214 public static class PropertyMatcher<T> extends TypeSafeMatcher<AccessibilityEvent> { class
219 public PropertyMatcher(T property, String description, in PropertyMatcher() method in PropertyMatcher