HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 76 - 100 of 432) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/
nocompile_driver.py 351 for regexp in test['expectations']:
352 if (regexp.search(stdout) is not None or
353 regexp.search(stderr) is not None):
357 ["r'%s'" % regexp.pattern for regexp in test['expectations']])
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlregexp.h 52 xmlRegexpCompile (const xmlChar *regexp);
53 XMLPUBFUN void XMLCALL xmlRegFreeRegexp(xmlRegexpPtr regexp);
59 xmlRegexpPtr regexp);
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
list_ports_linux.py 52 def re_group(regexp, text):
53 """search for regexp in text, return 1st group on match"""
55 m = re.search(regexp, text)
58 m = re.search(regexp, text.decode('ascii', 'replace'))
  /external/libxml2/include/libxml/
xmlregexp.h 52 xmlRegexpCompile (const xmlChar *regexp);
53 XMLPUBFUN void XMLCALL xmlRegFreeRegexp(xmlRegexpPtr regexp);
59 xmlRegexpPtr regexp);
  /external/chromium_org/v8/test/mjsunit/
regexp-call-as-function.js 32 var regexp = /a(b)(c)/; variable
35 assertEquals(expected, String(regexp.exec(subject)));
36 assertThrows(function(){ regexp(subject); });
with-function-expression.js 33 // Check that the return value is a function. Use regexp to avoid
35 var regexp = /function/; variable
36 var res = assertTrue(eval(source).match(regexp) == 'function');
constant-fold-control-instructions.js 26 assertTrue(%_IsRegExp(/regexp/));
regexp-global.js 144 // Create regexp that has a *lot* of captures.
156 // Atomic regexp.
160 // Small regexp (no capture);
164 // Small regexp (one capture).
168 // Large regexp (a lot of captures).
169 regexps.push(new RegExp(re_string, "g"));
175 regexp,
183 assertEquals("deadbeef", RegExp.lastMatch);
184 assertEquals("dead", RegExp["$1"]);
186 assertEquals(last_match_expectations[i], RegExp.lastMatch)
    [all...]
string-slices-regexp.js 28 var foo = "lsdfj sldkfj sdklfj læsdfjl sdkfjlsdk fjsdl fjsdljskdj flsj flsdkj flskd regexp: /foobar/\nldkfj sdlkfj sdkl";
30 assertTrue(/^([a-z]+): (.*)/.test(foo.substring(foo.indexOf("regexp:"))));
31 assertEquals("regexp", RegExp.$1, "RegExp.$1");
35 var r = new RegExp(re)
function-without-prototype.js 53 var regexp = /abc/g; variable
54 testConstruction("regexp.test");
  /external/chromium_org/v8/test/mjsunit/regress/
regress-regexp-construct-result.js 28 // Create a huge regexp with many alternative capture groups, most of
38 var regexp = new RegExp(regexp_string);
41 var matches = regexp.exec("a");
regress-1472.js 28 // Avoid excessive expansions of regexp repetitions inside regexp repetitions.
regress-crbug-178790.js 28 // Create a regexp in the form of a?a?...a? so that fully
35 "test".match(RegExp(r1));
41 "test".match(RegExp(r2));
43 // Create a regexp in the form of ((..(a)a..)a.
51 "test".match(RegExp(r3));
  /ndk/sources/host-tools/sed-4.2.1/lib/
regcomp.c 62 static bin_tree_t *parse (re_string_t *regexp, regex_t *preg,
64 static bin_tree_t *parse_reg_exp (re_string_t *regexp, regex_t *preg,
67 static bin_tree_t *parse_branch (re_string_t *regexp, regex_t *preg,
70 static bin_tree_t *parse_expression (re_string_t *regexp, regex_t *preg,
73 static bin_tree_t *parse_sub_exp (re_string_t *regexp, regex_t *preg,
76 static bin_tree_t *parse_dup_op (bin_tree_t *dup_elem, re_string_t *regexp,
79 static bin_tree_t *parse_bracket_exp (re_string_t *regexp, re_dfa_t *dfa,
83 re_string_t *regexp,
89 re_string_t *regexp,
249 /* Set by `re_set_syntax' to the current regexp syntax to recognize. Ca
758 re_string_t regexp; local
    [all...]
  /external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
run_audio_test.py 49 parser.add_option('--regexp',
112 if options.compare and options.regexp:
121 value = ''.join(re.findall(options.regexp, output))
  /external/chromium_org/third_party/re2/doc/
mksyntaxgo 4 out=$GOROOT/src/pkg/regexp/syntax/doc.go
27 facilities of package regexp (such as Compile and Match) instead of this package.
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive_tester.h 18 // then check that NFA, DFA, and PCRE agree about whether each regexp matches
22 // of random regexp and strings, allowing testing of larger expressions
46 void HandleRegexp(const string& regexp);
57 string wrapper_; // Regexp wrapper - either empty or has one %s.
58 string topwrapper_; // Regexp top-level wrapper.
60 int tests_; // Number of regexp tests.
  /external/chromium_org/tools/grit/grit/gather/
admin_template.py 11 from grit.gather import regexp namespace
21 class AdmGatherer(regexp.RegexpGatherer):
57 # Then parse the rest using the _TRANSLATEABLES regexp.
igoogle_strings.py 14 from grit.gather import regexp namespace
73 class IgoogleStrings(regexp.RegexpGatherer):
muppet_strings.py 16 from grit.gather import regexp namespace
79 class MuppetStrings(regexp.RegexpGatherer):
rc.py 16 from grit.gather import regexp namespace
43 class Section(regexp.RegexpGatherer):
186 # A dandy regexp to suck all the IDs and translateables out of a menu
  /external/chromium_org/win8/metro_driver/ime/
input_scope.cc 55 STDMETHOD(GetRegularExpression)(BSTR* regexp) OVERRIDE {
  /external/regex-re2/
Android.mk 5 # Android makefile for the re2 regexp library.
31 re2/regexp.cc \
  /external/regex-re2/doc/
mksyntaxgo 4 out=$GOROOT/src/pkg/regexp/syntax/doc.go
27 facilities of package regexp (such as Compile and Match) instead of this package.
  /external/regex-re2/re2/testing/
exhaustive_tester.h 18 // then check that NFA, DFA, and PCRE agree about whether each regexp matches
22 // of random regexp and strings, allowing testing of larger expressions
46 void HandleRegexp(const string& regexp);
57 string wrapper_; // Regexp wrapper - either empty or has one %s.
58 string topwrapper_; // Regexp top-level wrapper.
60 int tests_; // Number of regexp tests.

Completed in 833 milliseconds

1 2 34 5 6 7 8 91011>>