HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 76 - 100 of 1488) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 71 public abstract boolean matches (String s); method in class:WCMatcher
72 public abstract boolean matches (char [] chars); method in class:WCMatcher
75 // private boolean matches (int pi, int si, final char [] string)
87 // return (si < string.length) && matches (pi + 1, si + 1, string);
92 // return matches (pi + 1, si, string) || ((si < string.length) && matches (pi, si + 1, string));
97 // return (si < string.length) && (m_pattern [pi] == string [si]) && matches (pi + 1, si + 1, string);
118 public final boolean matches (final String s) method in class:WCMatcher.AllMatcher
125 public final boolean matches (final char [] chars) method in class:WCMatcher.AllMatcher
137 public final boolean matches (final String s method in class:WCMatcher.EmptyMatcher
144 public final boolean matches (final char [] chars) method in class:WCMatcher.EmptyMatcher
156 public final boolean matches (final String s) method in class:WCMatcher.StartsWithMatcher
163 public final boolean matches (final char [] chars) method in class:WCMatcher.StartsWithMatcher
194 public final boolean matches (final String s) method in class:WCMatcher.EndsWithMatcher
201 public final boolean matches (final char [] chars) method in class:WCMatcher.EndsWithMatcher
233 public final boolean matches (final String s) method in class:WCMatcher.PatternMatcher
293 public final boolean matches (final char [] string) method in class:WCMatcher.PatternMatcher
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
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/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
PackageMatcher.java 24 * Matches the package name associated with ASTNodes.
34 public boolean matches(CompilationUnit cu) { method in class:PackageMatcher
36 return matches(aPackage);
39 public boolean matches(PackageDeclaration packageDeclaration) { method in class:PackageMatcher
  /external/python/cpython2/Demo/scripts/
find-uname.py 8 *** small letter a$ matches ***
15 *** horizontal line matches ***
32 matches = [(y,x) for (x,y) in unicode_names
34 if matches:
35 print "***", arg, "matches", "***"
36 for match in matches:
  /external/python/cpython3/Lib/
rlcompleter.py 89 self.matches = self.attr_matches(text)
91 self.matches = self.global_matches(text)
93 return self.matches[state]
103 """Compute matches when text is a simple name.
110 matches = []
122 matches.append(word)
127 matches.append(self._callable_postfix(val, word))
128 return matches
131 """Compute matches when text contains a dot.
159 matches = [
    [all...]
  /external/python/cpython3/Tools/scripts/
find-uname.py 8 *** small letter a$ matches ***
15 *** horizontal line matches ***
32 matches = [(y,x) for (x,y) in unicode_names
34 if matches:
35 print("***", arg, "matches", "***")
36 for match in matches:
  /developers/samples/android/notification/Bubbles/app/src/androidTest/java/com/example/android/bubbles/
MainActivityTest.kt 21 import androidx.test.espresso.assertion.ViewAssertions.matches
36 .check(matches(isDisplayed()))
38 onView(withHint("Type a message?")).check(matches(isDisplayed()))
  /external/caliper/examples/src/main/java/examples/
Utf8Benchmark.java 49 if (userFriendly.matches("(?i)(?:American|English|ASCII)")) {
52 } else if (userFriendly.matches("(?i)(?:French|Latin|Western.*European)")) {
56 } else if (userFriendly.matches("(?i)(?:Branch.*Prediction.*Hostile)")) {
59 } else if (userFriendly.matches("(?i)(?:Greek|Cyrillic|European|ISO.?8859)")) {
62 } else if (userFriendly.matches("(?i)(?:Chinese|Han|Asian|BMP)")) {
65 } else if (userFriendly.matches("(?i)(?:Cuneiform|rare|exotic|supplementary.*)")) {
  /external/guice/core/src/com/google/inject/matcher/
AbstractMatcher.java 47 public boolean matches(T t) { method in class:AbstractMatcher.AndMatcher
48 return a.matches(t) && b.matches(t);
80 public boolean matches(T t) { method in class:AbstractMatcher.OrMatcher
81 return a.matches(t) || b.matches(t);
  /external/libtextclassifier/utils/sentencepiece/
sorted_strings_table.cc 78 bool matches = true; local
83 matches = false;
88 if (matches) {
96 StringPiece input, std::vector<TrieMatch>* matches) const {
98 input, [matches](const TrieMatch match) { matches->push_back(match); });
  /external/easymock/src/org/easymock/internal/
ErrorMessage.java 44 public void appendTo(StringBuilder buffer, int matches) {
47 if (matches == 1) {
ArrayMatcher.java 28 return new ArrayEquals(expected).matches(actual);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/match/
SourceMatchers.java 29 public boolean matches(CompilationUnit cu) {
41 /** Returns a {@link SourceMatcher} that matches any {@link CompilationUnit}. */
47 * Returns a {@link SourceMatcher} that matches a {@link CompilationUnit} if it contains the
52 @Override public boolean matches(CompilationUnit cu) {
  /external/llvm/include/llvm/TableGen/
StringMatcher.h 29 /// not exit this code fragment. If nothing matches, execution falls through.
37 const std::vector<StringPair> &Matches;
42 const std::vector<StringPair> &matches, raw_ostream &os)
43 : StrVariableName(strVariableName), Matches(matches), OS(os) {}
48 bool EmitStringMatcherForChar(const std::vector<const StringPair*> &Matches,
  /external/mockito/src/main/java/org/mockito/internal/hamcrest/
HamcrestArgumentMatcher.java 20 public boolean matches(Object argument) { method in class:HamcrestArgumentMatcher
21 return this.matcher.matches(argument);
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Matches.java 12 public class Matches implements ArgumentMatcher<Object>, Serializable {
16 public Matches(String regex) {
20 public Matches(Pattern pattern) {
24 public boolean matches(Object actual) { method in class:Matches
25 return (actual instanceof String) && pattern.matcher((String) actual).matches();
29 return "matches(\"" + pattern.pattern().replaceAll("\\\\", "\\\\\\\\") + "\")";
  /external/proguard/src/proguard/util/
ListMatcher.java 52 public boolean matches(String string) method in class:ListMatcher
58 if (matcher.matches(string))
  /external/swiftshader/third_party/LLVM/utils/TableGen/
StringMatcher.h 29 /// not exit this code fragment. If nothing matches, execution falls through.
36 const std::vector<StringPair> &Matches;
41 const std::vector<StringPair> &matches, raw_ostream &os)
42 : StrVariableName(strVariableName), Matches(matches), OS(os) {}
48 bool EmitStringMatcherForChar(const std::vector<const StringPair*> &Matches,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
StringMatcher.h 30 /// not exit this code fragment. If nothing matches, execution falls through.
38 const std::vector<StringPair> &Matches;
43 const std::vector<StringPair> &matches, raw_ostream &os)
44 : StrVariableName(strVariableName), Matches(matches), OS(os) {}
49 bool EmitStringMatcherForChar(const std::vector<const StringPair *> &Matches,
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
CoverageFilters.h 25 /// Matches specific functions that pass the requirement of this filter.
31 virtual bool matches(const coverage::CoverageMapping &CM, function in class:llvm::CoverageFilter
42 /// Matches functions that contain a specific string in their name.
49 bool matches(const coverage::CoverageMapping &CM,
53 /// Matches functions whose name matches a certain regular expression.
60 bool matches(const coverage::CoverageMapping &CM,
66 /// Matches functions whose name appears in a SpecialCaseList in the
75 bool matches(const coverage::CoverageMapping &CM,
79 /// Matches numbers that pass a certain threshold
    [all...]
  /external/iproute2/tc/
m_skbedit.c 65 if (matches(*argv, "skbedit") != 0)
71 if (matches(*argv, "queue_mapping") == 0) {
80 } else if (matches(*argv, "priority") == 0) {
88 } else if (matches(*argv, "mark") == 0) {
96 } else if (matches(*argv, "ptype") == 0) {
99 if (matches(*argv, "host") == 0) {
101 } else if (matches(*argv, "broadcast") == 0) {
103 } else if (matches(*argv, "multicast") == 0) {
105 } else if (matches(*argv, "otherhost") == 0) {
114 } else if (matches(*argv, "help") == 0)
    [all...]
  /external/iproute2/ip/
iplink_vxlan.c 90 if (!matches(*argv, "id") ||
91 !matches(*argv, "vni")) {
100 } else if (!matches(*argv, "group")) {
114 } else if (!matches(*argv, "remote")) {
128 } else if (!matches(*argv, "local")) {
149 } else if (!matches(*argv, "dev")) {
161 } else if (!matches(*argv, "ttl") ||
162 !matches(*argv, "hoplimit")) {
176 } else if (!matches(*argv, "tos") ||
177 !matches(*argv, "dsfield"))
    [all...]
iplink_bond.c 172 if (matches(*argv, "mode") == 0) {
178 } else if (matches(*argv, "active_slave") == 0) {
184 } else if (matches(*argv, "clear_active_slave") == 0) {
186 } else if (matches(*argv, "miimon") == 0) {
191 } else if (matches(*argv, "updelay") == 0) {
196 } else if (matches(*argv, "downdelay") == 0) {
201 } else if (matches(*argv, "use_carrier") == 0) {
206 } else if (matches(*argv, "arp_interval") == 0) {
211 } else if (matches(*argv, "arp_ip_target") == 0) {
229 } else if (matches(*argv, "arp_validate") == 0)
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
CharSequenceMatcher.java 28 public boolean matches(CharSequence actual) { method in class:CharSequenceMatcher
  /external/brotli/c/enc/
static_dict.h 24 /* Matches data against static dictionary words, and for each length l,
25 for which a match is found, updates matches[l] to be the minimum possible
27 Returns 1 if matches have been found, otherwise 0.
29 matches array is at least BROTLI_MAX_STATIC_DICTIONARY_MATCH_LEN + 1 long
34 uint32_t* matches);

Completed in 743 milliseconds

1 2 34 5 6 7 8 91011>>