HomeSort by relevance Sort by last modified time
    Searched refs:Matches (Results 1 - 25 of 229) sorted by null

1 2 3 4 5 6 7 8 910

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
Matches.java 2 * Matches
13 public final class Matches {
18 Matches(int countMax) {
  /external/llvm/lib/Fuzzer/test/
RepeatedMemcmp.cpp 11 int Matches = 0;
15 Matches++;
17 if (Matches > 20) {
  /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/swiftshader/third_party/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/llvm/lib/TableGen/
StringMatcher.cpp 24 StringMatcher::StringPair*> &Matches) {
25 assert(!Matches.empty());
26 for (unsigned i = 0, e = Matches[0]->first.size(); i != e; ++i) {
28 char Letter = Matches[0]->first[i];
30 for (unsigned str = 0, e = Matches.size(); str != e; ++str)
31 if (Matches[str]->first[i] != Letter)
35 return Matches[0]->first.size();
44 EmitStringMatcherForChar(const std::vector<const StringPair*> &Matches,
46 assert(!Matches.empty() && "Must have at least one string to match!");
49 // If we have verified that the entire string matches, we're done: output th
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
StringMatcher.cpp 24 StringMatcher::StringPair*> &Matches) {
25 assert(!Matches.empty());
26 for (unsigned i = 0, e = Matches[0]->first.size(); i != e; ++i) {
28 char Letter = Matches[0]->first[i];
30 for (unsigned str = 0, e = Matches.size(); str != e; ++str)
31 if (Matches[str]->first[i] != Letter)
35 return Matches[0]->first.size();
44 EmitStringMatcherForChar(const std::vector<const StringPair*> &Matches,
46 assert(!Matches.empty() && "Must have at least one string to match!");
49 // If we have verified that the entire string matches, we're done: output th
    [all...]
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/pdfium/core/fxcrt/xml/
cxml_attritem.cpp 9 bool CXML_AttrItem::Matches(const ByteString& space,
cxml_attritem.h 14 bool Matches(const ByteString& space, const ByteString& name) const;
  /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/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/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("\\\\", "\\\\\\\\") + "\")";
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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,
  /prebuilts/clang/host/darwin-x86/clang-4393122/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,
  /prebuilts/clang/host/darwin-x86/clang-4479392/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,
  /prebuilts/clang/host/darwin-x86/clang-4579689/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,
  /prebuilts/clang/host/darwin-x86/clang-4630689/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,
  /prebuilts/clang/host/darwin-x86/clang-4639204/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,
  /prebuilts/clang/host/darwin-x86/clang-4691093/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,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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,
  /prebuilts/clang/host/linux-x86/clang-4393122/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,
  /prebuilts/clang/host/linux-x86/clang-4479392/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,
  /prebuilts/clang/host/linux-x86/clang-4579689/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,
  /prebuilts/clang/host/linux-x86/clang-4630689/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,
  /prebuilts/clang/host/linux-x86/clang-4639204/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,

Completed in 557 milliseconds

1 2 3 4 5 6 7 8 910