HomeSort by relevance Sort by last modified time
    Searched full:regexp (Results 526 - 550 of 1552) sorted by null

<<21222324252627282930>>

  /external/libxml2/
xmlregexp.c 2 * regexp.c: generic and extensible Regular Expression engine
313 xmlRegexpPtr comp; /* the compiled regexp */
368 * Regexp memory error handler *
380 const char *regexp = NULL; local
382 regexp = (const char *) ctxt->string;
387 regexp, NULL, 0, 0,
400 const char *regexp = NULL; local
404 regexp = (const char *) ctxt->string;
410 regexp, NULL, idx, 0,
425 * Allocate a new regexp and fill it with the result from the parse
    [all...]
  /external/libxml2/os400/libxmlrpg/
xmlautomata.rpgle 1 * Summary: API to build regexp automata
2 * Description: the API to build regexp automata
21 * A libxml automata description, It can be compiled into a regexp
xmlregexp.rpgle 38 d regexp * value options(*string) const xmlChar *
42 d regexp value like(xmlRegexpPtr)
50 d regexp value like(xmlRegexpPtr)
  /external/opencv3/samples/python2/
demo.py 138 def match_text(self, pattern, tag_proc, regexp=True):
143 match_index = text.search(pattern, 'matchPos', count=count, regexp=regexp, stopindex='end')
  /external/parameter-framework/upstream/tools/coverage/
aplog2coverage.sh 45 -e, --regexp A regex to filter (egrep) logs in order to keep only the PFW log lines
64 --longoptions "help,domains:,ouput:,regexp:,parser_option:,force" \
126 xargs --null grep --extended-regexp "$filterRegex" |
  /external/v8/test/mjsunit/harmony/
reflect-apply.js 51 var regexp = /123/; variable
56 assertSame(regexp, Reflect.apply(returnThis, regexp, []));
regexp-sticky.js 97 var stickyglobal2 = new RegExp("foo.bar", "gy");
113 sticky.lastIndex = -1; // Causes sticky regexp to fail fast
117 sticky.lastIndex = -1; // Causes sticky regexp to fail fast
  /external/webrtc/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))
  /prebuilts/go/darwin-x86/misc/linkcheck/
linkcheck.go 18 "regexp"
42 var aRx = regexp.MustCompile(`<a href=['"]?(/[^\s'">]+)`)
67 var idRx = regexp.MustCompile(`\bid=['"]?([^\s'">]+)`)
  /prebuilts/go/darwin-x86/src/cmd/pprof/
pprof.go 12 "regexp"
212 func (f *file) Symbols(r *regexp.Regexp, addr uint64) ([]*plugin.Sym, error) {
  /prebuilts/go/darwin-x86/src/go/parser/
error_test.go 30 "regexp"
64 var errRx = regexp.MustCompile(`^/\* *ERROR *(HERE)? *"([^"]*)" *\*/$`)
117 rx, err := regexp.Compile(msg)
  /prebuilts/go/darwin-x86/src/regexp/
onepass_test.go 5 package regexp package
9 "regexp/syntax"
189 re *syntax.Regexp
  /prebuilts/go/linux-x86/misc/linkcheck/
linkcheck.go 18 "regexp"
42 var aRx = regexp.MustCompile(`<a href=['"]?(/[^\s'">]+)`)
67 var idRx = regexp.MustCompile(`\bid=['"]?([^\s'">]+)`)
  /prebuilts/go/linux-x86/src/cmd/pprof/
pprof.go 12 "regexp"
212 func (f *file) Symbols(r *regexp.Regexp, addr uint64) ([]*plugin.Sym, error) {
  /prebuilts/go/linux-x86/src/go/parser/
error_test.go 30 "regexp"
64 var errRx = regexp.MustCompile(`^/\* *ERROR *(HERE)? *"([^"]*)" *\*/$`)
117 rx, err := regexp.Compile(msg)
  /prebuilts/go/linux-x86/src/regexp/
onepass_test.go 5 package regexp package
9 "regexp/syntax"
189 re *syntax.Regexp
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/string/
string.js 118 // include it in the regexp to enforce consistent cross-browser behavior.
133 // include it in the regexp to enforce consistent cross-browser behavior.
275 // include it in the regexp to enforce consistent cross-browser behavior.
288 // include it in the regexp to enforce consistent cross-browser behavior.
301 // include it in the regexp to enforce consistent cross-browser behavior.
333 * @type {RegExp}
367 // for most inputs than using RegExp.exec or iterating over each character.
407 * @type {RegExp}
528 * @type {RegExp}
536 * @type {RegExp}
    [all...]
  /external/v8/src/regexp/mips64/
regexp-macro-assembler-mips64.cc 7 #include "src/regexp/mips64/regexp-macro-assembler-mips64.h"
12 #include "src/regexp/regexp-macro-assembler.h"
13 #include "src/regexp/regexp-stack.h"
23 * for a global regexp.
33 * RegExp registers.
81 * - fp[72] ra Return from RegExp code (ra). kReturnAddress
122 * (in regexp-macro-assembler.cc) via the CALL_GENERATED_REGEXP_CODE macr
    [all...]
regexp-macro-assembler-mips64.h 10 #include "src/regexp/regexp-macro-assembler.h"
90 // Called from RegExp if the stack-guard is triggered.
188 // The ebp-relative location of a regexp register.
202 // regexp registers are addressed relative to this.
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 7 #include "src/regexp/ia32/regexp-macro-assembler-ia32.h"
12 #include "src/regexp/regexp-macro-assembler.h"
13 #include "src/regexp/regexp-stack.h"
24 * index of capture start after a matching pass for a global regexp.
29 * RegExp registers.
662 __ push(Immediate(0)); // Number of successful matches in a global regexp.
734 // Global regexp restarts matching here
    [all...]
  /external/v8/src/regexp/x87/
regexp-macro-assembler-x87.cc 7 #include "src/regexp/x87/regexp-macro-assembler-x87.h"
12 #include "src/regexp/regexp-macro-assembler.h"
13 #include "src/regexp/regexp-stack.h"
24 * index of capture start after a matching pass for a global regexp.
29 * RegExp registers.
662 __ push(Immediate(0)); // Number of successful matches in a global regexp.
734 // Global regexp restarts matching here
    [all...]
  /external/autotest/server/cros/dynamic_suite/
control_file_getter.py 101 regexp = re.compile(os.path.join(test_name, 'control$'))
103 regexp = re.compile(test_name + '$')
104 candidates = filter(regexp.search, self._files)
151 regexp = re.compile(self._CONTROL_PATTERN)
161 if regexp.search(name):
  /external/autotest/server/cros/servo/
pd_console.py 85 def send_pd_command_get_output(self, cmd, regexp):
89 @param regexp: regular expression for desired output
91 return self.console.send_command_get_output(cmd, regexp)
126 for key, regexp in self.PD_STATE_DICT.iteritems():
127 value = re.search(regexp, m[0][0])
  /external/regex-re2/re2/testing/
search_test.cc 9 #include "re2/regexp.h"
16 const char* regexp; member in struct:re2::RegexpTest
305 TEST(Regexp, SearchTests) {
309 if (!TestRegexpOnText(t.regexp, t.text))
316 atom.push_back(StringPiece(t.regexp).as_string());
  /external/v8/src/regexp/mips/
regexp-macro-assembler-mips.cc 7 #include "src/regexp/mips/regexp-macro-assembler-mips.h"
12 #include "src/regexp/regexp-macro-assembler.h"
13 #include "src/regexp/regexp-stack.h"
23 * for a global regexp.
33 * RegExp registers.
86 * (in regexp-macro-assembler.cc) via the CALL_GENERATED_REGEXP_CODE macro
89 * area is overwritten with the ra register by the RegExp code. When doing
    [all...]

Completed in 1829 milliseconds

<<21222324252627282930>>