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

12 3 4 5 6 7 8 91011>>

  /external/iptables/extensions/
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
libxt_socket.man 1 This matches if an open socket can be found by doing a socket lookup on the
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 111 /// \brief If the provided matcher matches a node, binds the node to \c ID.
131 /// \brief Matches any node.
137 /// Example: \c DeclarationMatcher(anything()) matches all declarations, e.g.,
147 /// \brief Matches the top declaration context.
157 /// matches "int X", but not "int Y".
161 /// \brief Matches typedef declarations.
168 /// matches "typedef int X"
171 /// \brief Matches AST nodes that were expanded within the main-file.
173 /// Example matches X but not Y
192 /// \brief Matches AST nodes that were expanded within system-header-files
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 60 EXPECT_TRUE(matches("namespace x { class X {}; } using x::X;",
66 EXPECT_TRUE(matches("typedef int X;", NamedX));
67 EXPECT_TRUE(matches("int X;", NamedX));
68 EXPECT_TRUE(matches("class foo { virtual void X(); };", NamedX));
69 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", NamedX));
70 EXPECT_TRUE(matches("void foo() { int X; }", NamedX));
71 EXPECT_TRUE(matches("namespace X { }", NamedX));
72 EXPECT_TRUE(matches("enum X { A, B, C };", NamedX));
79 EXPECT_TRUE(matches("typedef int Xa;", NamedX));
80 EXPECT_TRUE(matches("int Xb;", NamedX))
    [all...]
  /build/blueprint/pathtools/
glob_test.go 28 matches []string
36 matches: []string{"a", "b", "c", "d.ext", "e.ext"},
41 matches: []string{"d.ext", "e.ext"},
46 matches: []string{"a/a", "b/a"},
51 matches: []string{"a/a/a"},
56 matches: []string{"a/a/a"},
63 matches: []string{"a", "b", "c", "d.ext", "e.ext"},
68 matches: []string{"d.ext", "e.ext"},
73 matches: []string{"a/a", "b/a"},
78 matches: []string{"a/a"}
    [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/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
HC4.java 16 private final Matches matches; field in class:HC4
47 // space for one-byte matches.
48 matches = new Matches(niceLen - 1);
80 public Matches getMatches() {
81 matches.count = 0;
88 return matches;
107 // matches, also the second byte does, so there's no need to
111 matches.len[0] = 2
    [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/google-breakpad/src/testing/test/
gmock-matchers_test.cc 101 using testing::Matches;
196 // Returns the reason why x matches, or doesn't match, m.
275 EXPECT_TRUE(m.Matches(2));
276 EXPECT_FALSE(m.Matches(3));
290 EXPECT_TRUE(m.Matches(4));
291 EXPECT_FALSE(m.Matches(5));
297 EXPECT_TRUE(m1.Matches(5));
298 EXPECT_FALSE(m1.Matches(6));
304 EXPECT_TRUE(m1.Matches(NULL));
306 EXPECT_FALSE(m1.Matches(&n))
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoderFast.java 14 import org.tukaani.xz.lz.Matches;
21 private Matches matches = null; field in class:LZMAEncoderFast
46 // Get the matches for the next byte unless readAhead indicates
47 // that we already got the new matches during the previous call
50 matches = getMatches();
87 if (matches.count > 0) {
88 mainLen = matches.len[matches.count - 1];
89 mainDist = matches.dist[matches.count - 1]
    [all...]
  /external/opencv3/modules/java/src/
features2d+DescriptorMatcher.java 116 // C++: void match(Mat queryDescriptors, Mat trainDescriptors, vector_DMatch& matches, Mat mask = Mat())
119 //javadoc: javaDescriptorMatcher::match(queryDescriptors, trainDescriptors, matches, mask)
120 public void match(Mat queryDescriptors, Mat trainDescriptors, MatOfDMatch matches, Mat mask)
122 Mat matches_mat = matches;
128 //javadoc: javaDescriptorMatcher::match(queryDescriptors, trainDescriptors, matches)
129 public void match(Mat queryDescriptors, Mat trainDescriptors, MatOfDMatch matches)
131 Mat matches_mat = matches;
139 // C++: void knnMatch(Mat queryDescriptors, Mat trainDescriptors, vector_vector_DMatch& matches, int k, Mat mask = Mat(), bool compactResult = false)
142 //javadoc: javaDescriptorMatcher::knnMatch(queryDescriptors, trainDescriptors, matches, k, mask, compactResult)
143 public void knnMatch(Mat queryDescriptors, Mat trainDescriptors, List<MatOfDMatch> matches, int k, Mat mask, boolean compactResult
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 139 EXPECT_TRUE(matches(ClassSnippet, IsArrowValue));
140 EXPECT_TRUE(matches(BoolSnippet, BoolValue));
141 EXPECT_FALSE(matches(ClassSnippet, BoolValue));
142 EXPECT_FALSE(matches(BoolSnippet, IsArrowValue));
149 EXPECT_TRUE(matches("class X {};", Value));
150 EXPECT_FALSE(matches("int x;", Value));
154 EXPECT_TRUE(matches("void foo(int,int);", Value));
155 EXPECT_FALSE(matches("void foo(int);", Value));
168 EXPECT_FALSE(matches(code, HasInitializerSimple));
169 EXPECT_FALSE(matches(code, HasInitializerComplex))
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
PatternsTest.java 34 t = Patterns.TOP_LEVEL_DOMAIN.matcher("com").matches();
38 t = Patterns.TOP_LEVEL_DOMAIN.matcher("me").matches();
42 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xn--0zwm56d").matches();
46 t = Patterns.TOP_LEVEL_DOMAIN.matcher("\uD55C\uAD6D").matches();
49 t = Patterns.TOP_LEVEL_DOMAIN.matcher("mem").matches();
52 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xn").matches();
55 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xer").matches();
64 assertTrue("Should match 'com'", pattern.matcher("com").matches());
70 assertTrue("Should match 'me'", pattern.matcher("me").matches());
76 assertTrue("Should match Punycode TLD", pattern.matcher("xn--qxam").matches());
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Pattern2Test.java 106 private void testCategory(String cat, String... matches) {
112 for (int j = 0; j < matches.length; j++) {
113 String t = matches[j];
119 "by pattern '"+pat, p.matcher(t).matches());
121 "be matched by pattern '"+npat, pn.matcher(t).matches());
124 "by pattern '"+pat, p.matcher(t).matches());
126 "not be matched by pattern '"+npat, pn.matcher(t).matches());
138 assertTrue(m.matches());
144 assertTrue(m.matches());
155 assertTrue(m.matches());
    [all...]
  /cts/tools/dex-tools/
TODO.txt 4 Check if fileformat version matches dex reader
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t052importM5.g 6 s : x y ; // matches AA, which should be "aa"
  /external/clang/test/ASTMerge/Inputs/
struct1.c 4 // Matches
29 // Bit-field matches
47 // Matches
59 // Matches
struct2.c 0 // Matches
26 // Bit-field matches
44 // Matches
56 // Matches
  /external/llvm/cmake/modules/
DetermineGCCCompatible.cmake 8 elseif( "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" )
  /external/llvm/test/FileCheck/
first-character-match.txt 2 // Prefix is at the first character in the file. The run line then matches itself.
  /external/llvm/tools/llvm-cov/
CoverageFilters.h 23 /// \brief Matches specific functions that pass the requirement of this filter.
29 virtual bool matches(const coverage::FunctionRecord &Function) { function in class:llvm::CoverageFilter
34 /// \brief Matches functions that contain a specific string in their name.
41 bool matches(const coverage::FunctionRecord &Function) override;
44 /// \brief Matches functions whose name matches a certain regular expression.
51 bool matches(const coverage::FunctionRecord &Function) override;
54 /// \brief Matches numbers that pass a certain threshold.
79 /// \brief Matches functions whose region coverage percentage
87 bool matches(const coverage::FunctionRecord &Function) override
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
RequestMatcher.java 6 public boolean matches(HttpRequest request); method in interface:RequestMatcher

Completed in 1452 milliseconds

12 3 4 5 6 7 8 91011>>