Searched refs:regexp (Results 126 - 150 of 380) sorted by relevance

1234567891011>>

/external/chromium_org/v8/tools/gyp/
H A Dv8_base.target.linux-mips.mk190 v8/src/regexp-macro-assembler-irregexp.cc \
191 v8/src/regexp-macro-assembler-tracer.cc \
192 v8/src/regexp-macro-assembler.cc \
193 v8/src/regexp-stack.cc \
239 v8/src/mips/regexp-macro-assembler-mips.cc \
H A Dv8_base.target.linux-mips64.mk190 v8/src/regexp-macro-assembler-irregexp.cc \
191 v8/src/regexp-macro-assembler-tracer.cc \
192 v8/src/regexp-macro-assembler.cc \
193 v8/src/regexp-stack.cc \
239 v8/src/mips64/regexp-macro-assembler-mips64.cc \
H A Dv8_base.target.linux-x86.mk190 v8/src/regexp-macro-assembler-irregexp.cc \
191 v8/src/regexp-macro-assembler-tracer.cc \
192 v8/src/regexp-macro-assembler.cc \
193 v8/src/regexp-stack.cc \
238 v8/src/ia32/regexp-macro-assembler-ia32.cc \
H A Dv8_base.target.linux-x86_64.mk190 v8/src/regexp-macro-assembler-irregexp.cc \
191 v8/src/regexp-macro-assembler-tracer.cc \
192 v8/src/regexp-macro-assembler.cc \
193 v8/src/regexp-stack.cc \
238 v8/src/x64/regexp-macro-assembler-x64.cc \
H A Dv8_base.target.darwin-arm.mk190 v8/src/regexp-macro-assembler-irregexp.cc \
191 v8/src/regexp-macro-assembler-tracer.cc \
192 v8/src/regexp-macro-assembler.cc \
193 v8/src/regexp-stack.cc \
239 v8/src/arm/regexp-macro-assembler-arm.cc \
H A Dv8_base.target.linux-arm.mk190 v8/src/regexp-macro-assembler-irregexp.cc \
191 v8/src/regexp-macro-assembler-tracer.cc \
192 v8/src/regexp-macro-assembler.cc \
193 v8/src/regexp-stack.cc \
239 v8/src/arm/regexp-macro-assembler-arm.cc \
/external/lldb/source/API/
H A DSBTarget.cpp1448 RegularExpression regexp(symbol_name_regex);
1457 *sb_bp = target_sp->CreateFuncRegexBreakpoint (&module_spec_list, NULL, regexp, skip_prologue, internal);
1461 *sb_bp = target_sp->CreateFuncRegexBreakpoint (NULL, NULL, regexp, skip_prologue, internal);
1486 RegularExpression regexp(symbol_name_regex);
1490 *sb_bp = target_sp->CreateFuncRegexBreakpoint (module_list.get(), comp_unit_list.get(), regexp, skip_prologue, internal);
1533 RegularExpression regexp(source_regex);
1542 *sb_bp = target_sp->CreateSourceRegexBreakpoint (&module_spec_list, &source_file_spec_list, regexp, false);
1546 *sb_bp = target_sp->CreateSourceRegexBreakpoint (NULL, &source_file_spec_list, regexp, false);
1573 RegularExpression regexp(source_regex);
1574 *sb_bp = target_sp->CreateSourceRegexBreakpoint (module_list.get(), source_file_list.get(), regexp, fals
[all...]
/external/chromium_org/v8/src/
H A Djsregexp.cc17 #include "src/regexp-macro-assembler.h"
18 #include "src/regexp-macro-assembler-irregexp.h"
19 #include "src/regexp-macro-assembler-tracer.h"
20 #include "src/regexp-stack.h"
26 #include "src/ia32/regexp-macro-assembler-ia32.h" // NOLINT
28 #include "src/x64/regexp-macro-assembler-x64.h" // NOLINT
30 #include "src/arm64/regexp-macro-assembler-arm64.h" // NOLINT
32 #include "src/arm/regexp-macro-assembler-arm.h" // NOLINT
34 #include "src/mips/regexp-macro-assembler-mips.h" // NOLINT
36 #include "src/mips64/regexp
225 Exec(Handle<JSRegExp> regexp, Handle<String> subject, int index, Handle<JSArray> last_match_info) argument
270 AtomExecRaw(Handle<JSRegExp> regexp, Handle<String> subject, int index, int32_t* output, int output_size) argument
503 IrregexpPrepare(Handle<JSRegExp> regexp, Handle<String> subject) argument
526 IrregexpExecRaw(Handle<JSRegExp> regexp, Handle<String> subject, int index, int32_t* output, int output_size) argument
614 IrregexpExec(Handle<JSRegExp> regexp, Handle<String> subject, int previous_index, Handle<JSArray> last_match_info) argument
685 GlobalCache(Handle<JSRegExp> regexp, Handle<String> subject, bool is_global, Isolate* isolate) argument
[all...]
H A Dlog.cc976 void Logger::LogRegExpSource(Handle<JSRegExp> regexp) { argument
982 isolate_, regexp, "source").ToHandleChecked();
988 switch (regexp->TypeTag()) {
1001 isolate_, regexp, "global").ToHandleChecked();
1007 isolate_, regexp, "ignoreCase").ToHandleChecked();
1013 isolate_, regexp, "multiline").ToHandleChecked();
1022 void Logger::RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache) { argument
1025 msg.Append("regexp-compile,");
1026 LogRegExpSource(regexp);
H A Dlog.h33 // --log-api, --log-code, --log-gc, and --log-regexp.
46 // --log-regexp
48 // --log-regexp implies --log.
306 // ==== Events logged by --log-regexp ====
309 void RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache);
362 // Emits the source code of a regexp. Used by regexp events.
363 void LogRegExpSource(Handle<JSRegExp> regexp);
H A Dregexp-macro-assembler.h141 // Return whether the matching (with a global regexp) will be restarted.
153 // a failure in a global regexp may still mean success overall.
191 static Result Match(Handle<Code> regexp,
H A Djsregexp.h24 // Whether V8 is compiled with native regexp support or not.
57 Handle<JSRegExp> regexp,
75 static int AtomExecRaw(Handle<JSRegExp> regexp,
82 static Handle<Object> AtomExec(Handle<JSRegExp> regexp,
91 // This ensures that the regexp is compiled for the subject, and that
94 // as its "registers" argument. If the regexp cannot be compiled,
96 static int IrregexpPrepare(Handle<JSRegExp> regexp,
105 static int IrregexpExecRaw(Handle<JSRegExp> regexp,
116 Handle<JSRegExp> regexp,
130 GlobalCache(Handle<JSRegExp> regexp,
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dprefilter.cc144 // regexps, matching ab will already allow this regexp to be a
196 // Information about a regexp used during computation of Prefilter.
242 // match for this regexp is guaranteed to match.
530 LOG(DFATAL) << "Bad regexp op " << re->op();
698 Regexp* regexp = re2->Regexp();
699 if (regexp == NULL)
702 return FromRegexp(regexp);
/external/regex-re2/re2/
H A Dprefilter.cc144 // regexps, matching ab will already allow this regexp to be a
196 // Information about a regexp used during computation of Prefilter.
242 // match for this regexp is guaranteed to match.
538 LOG(DFATAL) << "Bad regexp op " << re->op();
707 Regexp* regexp = re2->Regexp();
708 if (regexp == NULL)
711 return FromRegexp(regexp);
/external/lldb/test/
H A Ddotest.py219 regexp = None variable
410 global regexp
447 group.add_argument('-p', metavar='pattern', help='Specify a regexp filename pattern for inclusion in the test suite')
618 regexp = args.p
1014 global regexp
1028 # Try to match the regexp pattern, if specified.
1029 if regexp:
1031 if re.search(regexp, name):
1032 #print "Filename: '%s' matches pattern: '%s'" % (name, regexp)
1035 #print "Filename: '%s' does not match pattern: '%s'" % (name, regexp)
[all...]
/external/chromium_org/sync/tools/testserver/
H A Dxmppserver.py135 def _ProcessBuffer(self, regexp, xml_suffix=''):
136 """If the buffer matches the given regexp, removes the match from
141 Whether or not the buffer matched the given regexp.
143 results = regexp.match(self._buffer)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DcanvasProfiler.css168 .canvas-formatted-regexp {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
H A Dperftest.py228 for regexp in regexps:
229 if regexp.search(line):
/external/chromium_org/tools/valgrind/
H A Dmemcheck_analyze.py98 for regexp in _BORING_CALLERS:
99 if re.match("^%s$" % regexp, frame_dict[FUNCTION_NAME]):
/external/chromium_org/third_party/re2/re2/testing/
H A Dunicode_test.py7 """Unittest for the util/regexp/re2/unicode.py module."""
13 from google3.util.regexp.re2 import unicode
/external/chromium_org/third_party/sqlite/src/test/
H A Dcollate1.test38 set lhs_ishex [regexp {^(0x|)[1234567890abcdefABCDEF]+$} $lhs]
39 set rhs_ishex [regexp {^(0x|)[1234567890abcdefABCDEF]+$} $rhs]
/external/chromium_org/v8/src/x64/
H A Dregexp-macro-assembler-x64.h88 static Result Match(Handle<Code> regexp,
129 // one set of capture results. For the case of non-global regexp, we ignore
148 // one set of capture results. For the case of non-global regexp, we ignore
195 // The rbp-relative location of a regexp register.
/external/lldb/source/Symbol/
H A DSymtab.cpp712 Symtab::AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regexp, SymbolType symbol_type, std::vector<uint32_t>& indexes) argument
726 if (regexp.Execute (name))
736 Symtab::AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regexp, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes) argument
753 if (regexp.Execute (name))
/external/regex-re2/re2/testing/
H A Dunicode_test.py7 """Unittest for the util/regexp/re2/unicode.py module."""
13 from google3.util.regexp.re2 import unicode
/external/bison/
H A Dmaint.mk65 # You can override this variable in cfg.mk to set your own regexp
104 this-vc-tag-regexp = v$(VERSION_REGEXP)
109 this-vc-tag-regexp = $(this-vc-tag)
143 # Select which lines of NEWS are searched for $(news-check-regexp).
145 # lines 1..10 of NEWS for $(news-check-regexp).
148 news-check-regexp ?= '^\*.* $(VERSION_REGEXP) \($(today)\)'
221 # grep-E-style regexp selecting the files to check. For in_vc_files,
222 # the regexp is used to select matching files from the list of all
229 # Select the files (non) containing strings matching this regexp.
768 # A regexp matchin
[all...]

Completed in 679 milliseconds

1234567891011>>