Home
last modified time | relevance | path

Searched defs:ExpectedT (Results 1 – 7 of 7) sorted by relevance

/external/rust/android-crates-io/crates/googletest/src/matchers/
Dstr_matcher.rs170 fn ignoring_leading_whitespace(self) -> StrMatcher<ExpectedT>; in ignoring_leading_whitespace()
190 fn ignoring_trailing_whitespace(self) -> StrMatcher<ExpectedT>; in ignoring_trailing_whitespace()
214 fn ignoring_outer_whitespace(self) -> StrMatcher<ExpectedT>; in ignoring_outer_whitespace()
236 fn ignoring_ascii_case(self) -> StrMatcher<ExpectedT>; in ignoring_ascii_case()
271 fn times(self, times: impl Matcher<usize> + 'static) -> StrMatcher<ExpectedT>; in times() method
310 fn ignoring_leading_whitespace(self) -> StrMatcher<ExpectedT> { in ignoring_leading_whitespace()
318 fn ignoring_trailing_whitespace(self) -> StrMatcher<ExpectedT> { in ignoring_trailing_whitespace()
326 fn ignoring_outer_whitespace(self) -> StrMatcher<ExpectedT> { in ignoring_outer_whitespace()
331 fn ignoring_ascii_case(self) -> StrMatcher<ExpectedT> { in ignoring_ascii_case()
336 fn times(self, times: impl Matcher<usize> + 'static) -> StrMatcher<ExpectedT> { in times() method
Dsuperset_of_matcher.rs75 pub fn superset_of<ExpectedT>(subset: ExpectedT) -> SupersetOfMatcher<ExpectedT> { in superset_of()
Dsubset_of_matcher.rs74 pub fn subset_of<ExpectedT>(superset: ExpectedT) -> SubsetOfMatcher<ExpectedT> { in subset_of()
Dge_matcher.rs77 pub fn ge<ExpectedT>(expected: ExpectedT) -> GeMatcher<ExpectedT> { in ge()
Dle_matcher.rs77 pub fn le<ExpectedT>(expected: ExpectedT) -> LeMatcher<ExpectedT> { in le()
Dlt_matcher.rs77 pub fn lt<ExpectedT>(expected: ExpectedT) -> LtMatcher<ExpectedT> { in lt()
Dgt_matcher.rs77 pub fn gt<ExpectedT: Debug>(expected: ExpectedT) -> GtMatcher<ExpectedT> { in gt()