Searched refs:regex (Results 126 - 150 of 311) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1353 GTEST_API_ bool ValidateRegex(const char* regex);
1354 GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str);
1356 bool escaped, char ch, char repeat, const char* regex, const char* str);
1357 GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str);
1700 "A colon-separated list of glob (not regex) patterns "
6839 bool DeathTest::Create(const char* statement, const RE* regex,
6842 statement, regex, file, line, test);
6874 const RE* regex() const { return regex_; }
7013 // regex: A regular expression object to be applied to
7049 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
[all...]
/external/chromium_org/extensions/common/matcher/
H A Durl_matcher_factory.cc208 re2::RE2 regex(str_value);
209 if (!regex.ok()) {
211 str_value, regex.error());
/external/libvpx/libvpx/examples/includes/geshi/geshi/
H A Dreg.php27 * - Add a verification to the multi-line portion of the hex field regex
34 * - There are two regexes for the multiline hex value regex. The regex for
36 * a line continuation character '\'. This regex also does not check for
H A Dmake.php64 // funcs - see regex
/external/chromium/testing/gtest/src/
H A Dgtest-death-test.cc305 bool DeathTest::Create(const char* statement, const RE* regex, argument
308 statement, regex, file, line, test);
340 const RE* regex() const { return regex_; } function in class:testing::internal::DeathTestImpl
479 // regex: A regular expression object to be applied to
515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
520 << " Expected: " << regex()->pattern() << "\n"
742 ForkingDeathTest(const char* statement, const RE* regex);
1039 bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, argument
1067 *test = new WindowsDeathTest(statement, regex, file, line);
1073 *test = new ExecDeathTest(statement, regex, fil
[all...]
/external/chromium_org/testing/gtest/src/
H A Dgtest-death-test.cc343 bool DeathTest::Create(const char* statement, const RE* regex, argument
346 statement, regex, file, line, test);
378 const RE* regex() const { return regex_; } function in class:testing::internal::DeathTestImpl
517 // regex: A regular expression object to be applied to
553 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
558 << " Expected: " << regex()->pattern() << "\n"
776 ForkingDeathTest(const char* statement, const RE* regex);
1151 bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, argument
1179 *test = new WindowsDeathTest(statement, regex, file, line);
1185 *test = new ExecDeathTest(statement, regex, fil
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-death-test.cc305 bool DeathTest::Create(const char* statement, const RE* regex, argument
308 statement, regex, file, line, test);
340 const RE* regex() const { return regex_; } function in class:testing::internal::DeathTestImpl
479 // regex: A regular expression object to be applied to
515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
520 << " Expected: " << regex()->pattern() << "\n"
742 ForkingDeathTest(const char* statement, const RE* regex);
1044 bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, argument
1072 *test = new WindowsDeathTest(statement, regex, file, line);
1078 *test = new ExecDeathTest(statement, regex, fil
[all...]
/external/gtest/src/
H A Dgtest-death-test.cc305 bool DeathTest::Create(const char* statement, const RE* regex, argument
308 statement, regex, file, line, test);
340 const RE* regex() const { return regex_; } function in class:testing::internal::DeathTestImpl
479 // regex: A regular expression object to be applied to
515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
520 << " Expected: " << regex()->pattern() << "\n"
742 ForkingDeathTest(const char* statement, const RE* regex);
1044 bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, argument
1072 *test = new WindowsDeathTest(statement, regex, file, line);
1078 *test = new ExecDeathTest(statement, regex, fil
[all...]
/external/llvm/utils/unittest/googletest/
H A Dgtest-death-test.cc305 bool DeathTest::Create(const char* statement, const RE* regex, argument
308 statement, regex, file, line, test);
340 const RE* regex() const { return regex_; } function in class:testing::internal::DeathTestImpl
479 // regex: A regular expression object to be applied to
515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
520 << " Expected: " << regex()->pattern() << "\n"
741 ForkingDeathTest(const char* statement, const RE* regex);
1043 bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, argument
1071 *test = new WindowsDeathTest(statement, regex, file, line);
1077 *test = new ExecDeathTest(statement, regex, fil
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc305 bool DeathTest::Create(const char* statement, const RE* regex, argument
308 statement, regex, file, line, test);
340 const RE* regex() const { return regex_; } function in class:testing::internal::DeathTestImpl
479 // regex: A regular expression object to be applied to
515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
520 << " Expected: " << regex()->pattern() << "\n"
742 ForkingDeathTest(const char* statement, const RE* regex);
1044 bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, argument
1072 *test = new WindowsDeathTest(statement, regex, file, line);
1078 *test = new ExecDeathTest(statement, regex, fil
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DAdvancedSearchController.js611 var regex = createSearchRegex(this._searchConfig.query, !this._searchConfig.ignoreCase, this._searchConfig.isRegex);
615 var matchRanges = this._regexMatchRanges(lineContent, regex);
704 * @param {RegExp} regex
707 _regexMatchRanges: function(lineContent, regex)
709 regex.lastIndex = 0;
713 while ((regex.lastIndex < lineContent.length) && (match = regex.exec(lineContent)))
/external/chromium_org/build/android/pylib/instrumentation/
H A Dtest_runner.py215 regex = self.adb.WaitForLogMatch(re.compile('\*\*PERFANNOTATION\(' +
225 if regex.group(1) != '--NORUN--':
244 raw_perf_data = regex.group(1).split(';')
/external/v8/
H A DMakefile198 find $(OUTDIR) -regex '.*\(host\|target\)-$(basename $@)\.mk' -delete
203 find $(OUTDIR) -regex '.*\(host\|target\)-native\.mk' -delete
208 find $(OUTDIR) -regex '.*\(host\|target\)-android\.mk' -delete
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dtokenizer.py116 match = matcher.regex.match(string, index)
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Dtokenizer.py116 match = matcher.regex.match(string, index)
/external/easymock/src/org/easymock/
H A DEasyMock.java1315 * @param regex
1319 public static String find(String regex) { argument
1320 reportMatcher(new Find(regex));
1328 * @param regex
1332 public static String matches(String regex) { argument
1333 reportMatcher(new Matches(regex));
/external/smack/src/org/xbill/DNS/
H A DClientSubnetOption.java6 import java.util.regex.*;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeParser.java32 import java.util.regex.Matcher;
33 import java.util.regex.Pattern;
43 // precompiled regex used by inContext
/external/bison/build-aux/
H A Dgnupload58 --symlink-regex[=EXPR] use sed script EXPR to compute symbolic link names
63 If --symlink-regex is given without EXPR, then the link target name
92 --symlink-regex \\
158 --symlink-regex=*)
161 --symlink-regex)
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-port.h118 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
121 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
268 // On some platforms, <regex.h> needs someone to define size_t, and
272 # include <regex.h> // NOLINT
278 // <regex.h> is not available on Windows. Use our own simple regex
284 // <regex.h> may not be available on this platform. Use our own
285 // simple regex implementation instead.
791 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
800 RE(const ::std::string& regex) { Ini argument
804 RE(const ::string& regex) argument
808 RE(const char* regex) argument
[all...]
/external/chromium/testing/gtest/scripts/
H A Dpump.py171 for (regex, token_type) in token_table:
172 m = regex.search(line)
174 # We found regex in lines
196 # We found a regex in line.
243 def ParseToken(lines, pos, regex, token_type):
245 m = regex.search(line)
261 def Skip(lines, pos, regex):
263 m = re.search(regex, line)
270 def SkipUntil(lines, pos, regex, token_type):
272 m = re.search(regex, lin
[all...]
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
H A Djs_checker.py16 def RegexCheck(self, line_number, line, regex, message):
17 """Searches for |regex| in |line| to check for a particular style
18 violation, returning a message like the one below if the regex matches.
19 The |regex| must have exactly one capturing group so that the relevant
27 match = self.input_api.re.search(regex, line)
/external/chromium_org/android_webview/tools/
H A Dwebview_licenses.py55 regex = '^(%s)$' % '|'.join(whitelist)
72 if not re.match(regex, token, re.IGNORECASE):
/external/chromium_org/chrome/browser/resources/web_dev_style/
H A Djs_checker.py16 def RegexCheck(self, line_number, line, regex, message):
17 """Searches for |regex| in |line| to check for a particular style
18 violation, returning a message like the one below if the regex matches.
19 The |regex| must have exactly one capturing group so that the relevant
27 match = self.input_api.re.search(regex, line)
/external/chromium_org/chrome_frame/test/data/
H A Dchrome_frame_tester_helpers.js168 var regex = new RegExp(regexString);
169 var results = regex.exec(window.location.href);

Completed in 960 milliseconds

1234567891011>>