Home
last modified time | relevance | path

Searched refs:maxatoms (Results 1 – 6 of 6) sorted by relevance

/external/regex-re2/re2/testing/
Dexhaustive_tester.h26 ExhaustiveTester(int maxatoms, in ExhaustiveTester() argument
34 : RegexpGenerator(maxatoms, maxops, alphabet, ops), in ExhaustiveTester()
70 void ExhaustiveTest(int maxatoms, int maxops,
79 void EgrepTest(int maxatoms, int maxops, const string& alphabet,
Dexhaustive_tester.cc145 void ExhaustiveTest(int maxatoms, int maxops, in ExhaustiveTest() argument
152 if (maxatoms > 1) in ExhaustiveTest()
153 maxatoms--; in ExhaustiveTest()
159 ExhaustiveTester t(maxatoms, maxops, alphabet, ops, in ExhaustiveTest()
172 void EgrepTest(int maxatoms, int maxops, const string& alphabet, in EgrepTest() argument
178 ExhaustiveTest(maxatoms, maxops, in EgrepTest()
Drandom_test.cc21 static void RandomTest(int maxatoms, int maxops, in RandomTest() argument
29 maxatoms--; in RandomTest()
34 ExhaustiveTester t(maxatoms, maxops, alphabet, ops, in RandomTest()
Dpossible_match_test.cc167 PossibleMatchTester(int maxatoms, in PossibleMatchTester() argument
173 : RegexpGenerator(maxatoms, maxops, alphabet, ops), in PossibleMatchTester()
Dregexp_generator.cc46 RegexpGenerator::RegexpGenerator(int maxatoms, int maxops, in RegexpGenerator() argument
49 : maxatoms_(maxatoms), maxops_(maxops), atoms_(atoms), ops_(ops) { in RegexpGenerator()
Dregexp_generator.h30 RegexpGenerator(int maxatoms, int maxops, const vector<string>& atoms,