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

1 2 3 4 5 6 7 8 91011>>

  /art/test/094-pattern/
expected.txt 1 str1 matches: true
2 str2 matches: false
3 str3 matches: true
  /external/libxml2/result/pattern/
simple 1 Node /a matches pattern a
2 Node /a/b matches pattern b
3 Node /a/b matches pattern b
4 Node /a matches pattern /a
5 Node /a/b matches pattern a/b
6 Node /a/b/c matches pattern a/b/c
7 Node /a matches pattern //a
8 Node /a/b matches pattern //b
9 Node /a/b/c matches pattern //c
10 Node /a/b matches pattern a//
    [all...]
conj 1 Node /a matches pattern a|b
2 Node /a/b matches pattern a|b
3 Node /a/b/c[1]/b matches pattern a|b
4 Node /a/b/c[2]/b matches pattern a|b
5 Node /a/b/c[2]/c/b matches pattern a|b
6 Node /a/c/b matches pattern a|b
7 Node /a matches pattern a|c
8 Node /a/b/c[1] matches pattern a|c
9 Node /a/b/c[2] matches pattern a|c
10 Node /a/b/c[2]/c matches pattern a|
    [all...]
multiple 1 Node /c/b[1]/a[1] matches pattern a
2 Node /c/b[1]/a[2] matches pattern a
3 Node /c/c/b/a[1] matches pattern a
4 Node /c/c/b/a[2] matches pattern a
5 Node /c/b[2]/a[1] matches pattern a
6 Node /c/b[2]/a[2] matches pattern a
7 Node /c/b[1] matches pattern b
8 Node /c/c/b matches pattern b
9 Node /c/b[2] matches pattern b
10 Node /c matches pattern
    [all...]
namespaces 1 Node /a matches pattern //a
2 Node /a/b:b/a matches pattern //a
3 Node /a/*[4]/a matches pattern //a
4 Node /a/a:a matches pattern //a:a
5 Node /a/b:b/a/a:a matches pattern //a:a
6 Node /a/*[4] matches pattern //a:a
7 Node /a/c:a matches pattern //a:a
8 Node /a/b matches pattern //b
9 Node /a/a:a/b:b matches pattern //b:b
10 Node /a/b:b matches pattern //b:
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
WildcardMatcherTest.java 23 assertTrue(new WildcardMatcher("").matches(""));
24 assertFalse(new WildcardMatcher("").matches("abc"));
29 assertTrue(new WildcardMatcher("abc/def.txt").matches("abc/def.txt"));
34 assertFalse(new WildcardMatcher("abcdef").matches("abcDef"));
35 assertFalse(new WildcardMatcher("ABCDEF").matches("AbCDEF"));
40 assertFalse(new WildcardMatcher("rst.xyz").matches("rstAxyz"));
41 assertTrue(new WildcardMatcher("(x)+").matches("(x)+"));
46 assertTrue(new WildcardMatcher("*").matches(""));
47 assertTrue(new WildcardMatcher("*").matches("java/lang/Object"));
48 assertTrue(new WildcardMatcher("*Test").matches("jacoco/MatcherTest"))
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/
stats.h 6 int matches; member in struct:Stats
11 Stats() : matches(0),
18 matches += op.matches;
26 matches /= num;
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
UriPatternTypeTest.java 26 assertTrue(pattern.matches("/foo/asdf"));
27 assertTrue(pattern.matches("/foo/asdf?val=1"));
28 assertFalse(pattern.matches("/path/file.bar"));
29 assertFalse(pattern.matches("/path/file.bar?val=1"));
30 assertFalse(pattern.matches("/asdf"));
31 assertFalse(pattern.matches("/asdf?val=1"));
34 assertFalse(pattern.matches("/foo/asdf"));
35 assertFalse(pattern.matches("/foo/asdf?val=1"));
36 assertTrue(pattern.matches("/path/file.bar"));
37 assertTrue(pattern.matches("/path/file.bar?val=1"))
    [all...]
  /external/eigen/Eigen/src/
CMakeLists.txt 4 if(NOT f MATCHES "\\.txt" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/[.].+" )
  /external/iptables/extensions/
libip6t_hl.man 1 This module matches the Hop Limit field in the IPv6 header.
4 Matches if Hop Limit equals \fIvalue\fP.
7 Matches if Hop Limit is less than \fIvalue\fP.
10 Matches if Hop Limit is greater than \fIvalue\fP.
libipt_ttl.man 1 This module matches the time to live field in the IP header.
4 Matches the given TTL value.
7 Matches if TTL is greater than the given TTL value.
10 Matches if TTL is less than the given TTL value.
libip6t_frag.man 1 This module matches the parameters in Fragment header.
4 Matches the given Identification or range of it.
11 Matches if the reserved fields are filled with zero.
14 Matches on the first fragment.
17 Matches if there are more fragments.
20 Matches if this is the last fragment.
libip6t_ah.man 1 This module matches the parameters in Authentication header of IPsec packets.
4 Matches SPI.
10 Matches if the reserved field is filled with zero.
.gitignore 8 /matches.man
libipt_ah.man 1 This module matches the SPIs in Authentication header of IPsec packets.
libxt_esp.man 1 This module matches the SPIs in ESP header of IPsec packets.
  /external/eigen/Eigen/
CMakeLists.txt 9 if(NOT f MATCHES "\\.txt" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/[.].+" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/src")
  /external/dbus/cmake/modules/
ProjectSourceGroup.cmake 8 if(${mode} MATCHES "flat")
12 else(${mode} MATCHES "flat")
13 if(NOT ${mode} MATCHES "split")
15 endif(NOT ${mode} MATCHES "split")
16 endif(${mode} MATCHES "flat")
  /external/mockito/src/org/mockito/internal/matchers/
Matches.java 14 public class Matches extends ArgumentMatcher<Object> implements Serializable {
19 public Matches(String regex) {
23 public boolean matches(Object actual) { method in class:Matches
24 return (actual instanceof String) && ((String) actual).matches(regex);
28 description.appendText("matches(\"" + regex.replaceAll("\\\\", "\\\\\\\\")
  /packages/apps/Launcher3/tests/src/com/android/launcher3/allapps/
DefaultAppSearchAlgorithmTest.java 47 assertTrue(mAlgorithm.matches(getInfo("white cow"), "cow"));
48 assertTrue(mAlgorithm.matches(getInfo("whiteCow"), "cow"));
49 assertTrue(mAlgorithm.matches(getInfo("whiteCOW"), "cow"));
50 assertTrue(mAlgorithm.matches(getInfo("whitecowCOW"), "cow"));
51 assertTrue(mAlgorithm.matches(getInfo("white2cow"), "cow"));
53 assertFalse(mAlgorithm.matches(getInfo("whitecow"), "cow"));
54 assertFalse(mAlgorithm.matches(getInfo("whitEcow"), "cow"));
56 assertTrue(mAlgorithm.matches(getInfo("whitecowCow"), "cow"));
57 assertTrue(mAlgorithm.matches(getInfo("whitecow cow"), "cow"));
58 assertFalse(mAlgorithm.matches(getInfo("whitecowcow"), "cow"))
    [all...]
  /external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
events_view_test.html 114 // @param {Array<boolean>} matches Ordered list of whether or not each
115 // source matches |filter|. Order must match display order after
117 function checkFilter(filter, matches) {
121 for (var i = 0; i < matches.length; ++i) {
122 if (matches[i])
130 chai.assert.strictEqual(postFilter + ' of ' + matches.length,
135 chai.assert.strictEqual(matches.length, tbody.childElementCount, filter);
139 chai.assert.strictEqual(matches[i],
158 // |matches| is a 2-element array of booleans indicating which of the two
161 {text: 'http://www.google.com', matches: [true, true] }
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
Matches.java 2 * Matches
13 public final class Matches {
18 Matches(int countMax) {
  /packages/apps/Launcher3/src/com/android/launcher3/util/
StringFilter.java 12 public abstract boolean matches(String str); method in class:StringFilter
17 public boolean matches(String str) {
26 public boolean matches(String str) {
  /dalvik/dx/tests/104-verify-return-ops/
info.txt 2 the appropriate types and that the opcode matches the method signature.
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser_profiles/content_scripts1/Default/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/
manifest.json 6 { "matches": ["file://*"], "js": ["script.js"] }

Completed in 2116 milliseconds

1 2 3 4 5 6 7 8 91011>>