/dalvik/tests/094-pattern/ |
expected.txt | 1 str1 matches: true 2 str2 matches: false 3 str3 matches: true
|
/external/eigen/Eigen/src/ |
CMakeLists.txt | 4 if(NOT f MATCHES "\\.txt" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/[.].+" )
|
/external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/ |
contentscript.js | 7 matches = document.body.innerText.match(regex); 8 if (matches) { 10 count: matches.length // Pass the number of matches back.
|
/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.
|
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.
|
libxt_pkttype.man | 1 This module matches the link-layer packet type.
|
libxt_connmark.man | 1 This module matches the netfilter mark field associated with a connection 5 Matches packets in connections with the given mark value (if a mask is
|
libxt_mark.man | 1 This module matches the netfilter mark field associated with a packet 7 Matches packets with the given unsigned mark value (if a \fImask\fP is
|
/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/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("\\\\", "\\\\\\\\")
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/ |
regress-001.js | 33 for ( var matches = 0; matches < matches_array.length; matches++ ) { 35 "( " + str_regexp + " )[" + matches +"]", 36 matches_array[matches], 37 regexp[matches] );
|
/dalvik/dx/tests/104-verify-return-ops/ |
info.txt | 2 the appropriate types and that the opcode matches the method signature.
|
/external/webkit/LayoutTests/fast/encoding/ |
decoder-allow-null-chars-expected.txt | 1 This tests that we no longer strip nulls from tags. This matches Firefox behavior.
|
/external/clang/unittests/ASTMatchers/ |
ASTMatchersTest.cpp | 45 EXPECT_TRUE(matches("namespace x { class X {}; } using x::X;", 51 EXPECT_TRUE(matches("typedef int X;", NamedX)); 52 EXPECT_TRUE(matches("int X;", NamedX)); 53 EXPECT_TRUE(matches("class foo { virtual void X(); };", NamedX)); 54 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", NamedX)); 55 EXPECT_TRUE(matches("void foo() { int X; }", NamedX)); 56 EXPECT_TRUE(matches("namespace X { }", NamedX)); 57 EXPECT_TRUE(matches("enum X { A, B, C };", NamedX)); 64 EXPECT_TRUE(matches("typedef int Xa;", NamedX)); 65 EXPECT_TRUE(matches("int Xb;", NamedX)) [all...] |
/external/clang/include/clang/ASTMatchers/ |
ASTMatchers.h | 98 /// \brief If the provided matcher matches a node, binds the node to \c ID. 118 /// \brief Matches any node. 124 /// Example: \c DeclarationMatcher(anything()) matches all declarations, e.g., 136 /// \brief Matches declarations. 138 /// Examples matches \c X, \c C, and the friend declaration inside \c C; 147 /// \brief Matches a declaration of anything that could have a name. 149 /// Example matches \c X, \c S, the anonymous union type, \c i, and \c U; 160 /// \brief Matches C++ class declarations. 162 /// Example matches \c X, \c Z 171 /// \brief Matches C++ class template declarations [all...] |
/external/chromium/net/proxy/ |
proxy_bypass_rules_unittest.cc | 24 EXPECT_TRUE(rules.Matches(GURL("http://www.google.com"))); 25 EXPECT_TRUE(rules.Matches(GURL("ftp://www.google.com:99"))); 26 EXPECT_TRUE(rules.Matches(GURL("https://www.google.com:81"))); 29 EXPECT_FALSE(rules.Matches(GURL("http://foo.www.google.com"))); 30 EXPECT_FALSE(rules.Matches(GURL("http://xxx.google.com"))); 31 EXPECT_FALSE(rules.Matches(GURL("http://google.com"))); 32 EXPECT_FALSE(rules.Matches(GURL("http://www.google.com.baz.org"))); 44 EXPECT_TRUE(rules.Matches(GURL("http://www.google.com"))); 45 EXPECT_TRUE(rules.Matches(GURL("ftp://www.google.com:99"))); 46 EXPECT_TRUE(rules.Matches(GURL("https://a.google.com:81"))) [all...] |
/external/junit/src/org/junit/experimental/results/ |
ResultMatchers.java | 18 * Matches if the tests are all successful 25 * Matches if there are {@code count} failures 41 * Matches if the result has exactly one failure, and it contains {@code string} 45 public boolean matches(Object item) { 46 return item.toString().contains(string) && failureCountIs(1).matches(item); 56 * Matches if the result has one or more failures, and at least one of them 61 public boolean matches(Object item) {
|
/external/llvm/unittests/Support/ |
RegexTest.cpp | 27 SmallVector<StringRef, 1> Matches; 29 EXPECT_TRUE(r2.match("aa216b", &Matches)); 30 EXPECT_EQ(1u, Matches.size()); 31 EXPECT_EQ("216", Matches[0].str()); 34 EXPECT_TRUE(r3.match("9a:513b", &Matches)); 35 EXPECT_EQ(3u, Matches.size()); 36 EXPECT_EQ("9a:513", Matches[0].str()); 37 EXPECT_EQ("a", Matches[1].str()); 38 EXPECT_EQ("513", Matches[2].str()); 40 EXPECT_TRUE(r3.match("9:513b", &Matches)); [all...] |
/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;
|
/external/chromium/testing/gmock/test/ |
gmock-matchers_test.cc | 99 using testing::Matches; 192 // Returns the reason why x matches, or doesn't match, m. 271 EXPECT_TRUE(m.Matches(2)); 272 EXPECT_FALSE(m.Matches(3)); 286 EXPECT_TRUE(m.Matches(4)); 287 EXPECT_FALSE(m.Matches(5)); 293 EXPECT_TRUE(m1.Matches(5)); 294 EXPECT_FALSE(m1.Matches(6)); 300 EXPECT_TRUE(m1.Matches(NULL)); 302 EXPECT_FALSE(m1.Matches(&n)) [all...] |
/cts/tools/dex-tools/ |
TODO.txt | 4 Check if fileformat version matches dex reader
|