HomeSort by relevance Sort by last modified time
    Searched defs:matches (Results 1 - 25 of 487) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/catch2/include/internal/
catch_wildcard_pattern.cpp 31 bool WildcardPattern::matches( std::string const& str ) const { function in class:Catch::WildcardPattern
catch_test_spec.cpp 26 bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { function in class:Catch::TestSpec::NamePattern
27 return m_wildcardPattern.matches( toLower( testCase.name ) );
31 bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { function in class:Catch::TestSpec::TagPattern
38 bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { return !m_underlyingPattern->matches( testCase ); } function in class:Catch::TestSpec::ExcludedPattern
40 bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const { function in class:Catch::TestSpec::Filter
43 if( !pattern->matches( testCase ) )
52 bool TestSpec::matches( TestCaseInfo const& testCase ) const { function in class:Catch::TestSpec
53 // A TestSpec matches if any filter matches
    [all...]
  /external/llvm/tools/llvm-cov/
CoverageFilters.cpp 20 bool NameCoverageFilter::matches(const coverage::FunctionRecord &Function) { function in class:NameCoverageFilter
26 NameRegexCoverageFilter::matches(const coverage::FunctionRecord &Function) { function in class:NameRegexCoverageFilter
30 bool RegionCoverageFilter::matches(const coverage::FunctionRecord &Function) { function in class:RegionCoverageFilter
35 bool LineCoverageFilter::matches(const coverage::FunctionRecord &Function) { function in class:LineCoverageFilter
44 bool CoverageFilters::matches(const coverage::FunctionRecord &Function) { function in class:CoverageFilters
46 if (Filter->matches(Function))
53 CoverageFiltersMatchAll::matches(const coverage::FunctionRecord &Function) { function in class:CoverageFiltersMatchAll
55 if (!Filter->matches(Function))
  /external/mockito/src/main/java/org/mockito/
ArgumentMatcher.java 53 * public boolean matches(List list) {
127 boolean matches(T argument); method in interface:ArgumentMatcher
  /external/proguard/src/proguard/util/
ConstantMatcher.java 24 * This StringMatcher matches any string or no string at all.
30 private boolean matches; field in class:ConstantMatcher
36 public ConstantMatcher(boolean matches)
38 this.matches = matches;
44 public boolean matches(String string) method in class:ConstantMatcher
46 return matches;
EmptyStringMatcher.java 32 public boolean matches(String string) method in class:EmptyStringMatcher
StringMatcher.java 33 * Checks whether the given string matches.
35 * @return a boolean indicating whether the string matches the criterion.
37 public boolean matches(String string); method in interface:StringMatcher
NotMatcher.java 42 public boolean matches(String string) method in class:NotMatcher
44 return !matcher.matches(string);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
CoverageFilters.cpp 20 bool NameCoverageFilter::matches( function in class:NameCoverageFilter
27 bool NameRegexCoverageFilter::matches( function in class:NameRegexCoverageFilter
37 bool NameWhitelistCoverageFilter::matches( function in class:NameWhitelistCoverageFilter
43 bool RegionCoverageFilter::matches( function in class:RegionCoverageFilter
50 bool LineCoverageFilter::matches( function in class:LineCoverageFilter
61 bool CoverageFilters::matches(const coverage::CoverageMapping &CM, function in class:CoverageFilters
64 if (Filter->matches(CM, Function))
78 bool CoverageFiltersMatchAll::matches( function in class:CoverageFiltersMatchAll
82 if (!Filter->matches(CM, Function))
  /external/easymock/src/org/easymock/
ArgumentsMatcher.java 35 * Matches two arrays of arguments.
43 boolean matches(Object[] expected, Object[] actual); method in interface:ArgumentsMatcher
IArgumentMatcher.java 37 boolean matches(Object argument); method in interface:IArgumentMatcher
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DiagnosingMatcher.java 11 public final boolean matches(Object item) { method in class:DiagnosingMatcher
12 return matches(item, Description.NONE);
17 matches(item, mismatchDescription); method
20 protected abstract boolean matches(Object item, Description mismatchDescription); method in class:DiagnosingMatcher
Matcher.java 25 * This method matches against Object, instead of the generic type T. This is
31 * @return <code>true</code> if <var>item</var> matches, otherwise <code>false</code>.
35 boolean matches(Object item); method in interface:Matcher
41 * This method assumes that <code>matches(item)</code> is false, but
  /external/libtextclassifier/utils/sentencepiece/
double_array_trie_test.cc 42 std::vector<TrieMatch> matches; local
43 EXPECT_TRUE(trie.FindAllPrefixMatches("hello there", &matches));
44 EXPECT_EQ(matches.size(), 2);
45 EXPECT_EQ(matches[0].id, 0 /*hell*/);
46 EXPECT_EQ(matches[0].match_length, 4 /*hell*/);
47 EXPECT_EQ(matches[1].id, 1 /*hello*/);
48 EXPECT_EQ(matches[1].match_length, 5 /*hello*/);
52 std::vector<TrieMatch> matches; local
53 EXPECT_TRUE(trie.FindAllPrefixMatches("he", &matches));
54 EXPECT_THAT(matches, testing::IsEmpty())
58 std::vector<TrieMatch> matches; local
64 std::vector<TrieMatch> matches; local
70 std::vector<TrieMatch> matches; local
76 std::vector<TrieMatch> matches; local
82 std::vector<TrieMatch> matches; local
    [all...]
sorted_strings_table_test.cc 36 std::vector<TrieMatch> matches; local
37 EXPECT_TRUE(table.FindAllPrefixMatches("hello there", &matches));
38 EXPECT_EQ(matches.size(), 2);
39 EXPECT_EQ(matches[0].id, 0 /*hell*/);
40 EXPECT_EQ(matches[0].match_length, 4 /*hell*/);
41 EXPECT_EQ(matches[1].id, 1 /*hello*/);
42 EXPECT_EQ(matches[1].match_length, 5 /*hello*/);
46 std::vector<TrieMatch> matches; local
47 EXPECT_TRUE(table.FindAllPrefixMatches("he", &matches));
48 EXPECT_THAT(matches, testing::IsEmpty())
52 std::vector<TrieMatch> matches; local
58 std::vector<TrieMatch> matches; local
64 std::vector<TrieMatch> matches; local
70 std::vector<TrieMatch> matches; local
76 std::vector<TrieMatch> matches; local
82 std::vector<TrieMatch> matches; local
    [all...]
  /bionic/tests/
regex_test.cpp 42 regmatch_t matches[1]; local
44 ASSERT_EQ(0, regexec(&re, "abc", 1, matches, 0));
45 ASSERT_EQ(1, matches[0].rm_so);
46 ASSERT_EQ(2, matches[0].rm_eo);
  /cts/tests/autofillservice/src/android/autofillservice/cts/
CharSequenceMatcher.java 28 public boolean matches(CharSequence actual) { method in class:CharSequenceMatcher
  /external/brotli/scripts/
fix-win-bazel-build.py 8 matches = [] variable
11 matches.append(os.path.join(root, filename))
13 for match in matches:
  /external/easymock/src/org/easymock/internal/
AlwaysMatcher.java 25 public boolean matches(Object[] expected, Object[] actual) { method in class:AlwaysMatcher
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
AnyOf.java 20 public boolean matches(Object o) { method in class:AnyOf
21 return matches(o, true);
30 * Creates a matcher that matches if the examined object matches <b>ANY</b> of the specified matchers.
39 * Creates a matcher that matches if the examined object matches <b>ANY</b> of the specified matchers.
ShortcutCombination.java 16 public abstract boolean matches(Object o); method in class:ShortcutCombination
21 protected boolean matches(Object o, boolean shortcut) { method in class:ShortcutCombination
23 if (matcher.matches(o) == shortcut) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DictionaryMatcher.java 31 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, method in class:DictionaryMatcher
34 public int matches(CharacterIterator text, int maxLength, int[] lengths, method in class:DictionaryMatcher
36 return matches(text, maxLength, lengths, count, limit, null);
UnicodeFilter.java 28 * Default implementation of UnicodeMatcher::matches() for Unicode
29 * filters. Matches a single 16-bit code unit at offset.
32 public int matches(Replaceable text, method in class:UnicodeFilter
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryMatcher.java 30 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, method in class:DictionaryMatcher
33 public int matches(CharacterIterator text, int maxLength, int[] lengths, method in class:DictionaryMatcher
35 return matches(text, maxLength, lengths, count, limit, null);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/match/
SourceMatcher.java 21 * Matches a CompilationUnit.
25 boolean matches(CompilationUnit cu); method in interface:SourceMatcher

Completed in 6452 milliseconds

1 2 3 4 5 6 7 8 91011>>