HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 151 - 175 of 340) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/v8/test/mjsunit/
string-replace-with-empty.js 63 // Clear the regexp cache to allow the GC to work.
  /external/v8/benchmarks/
run.js 35 load('regexp.js');
  /external/v8/src/
log.h 49 // --log-api, --log-code, --log-gc, and --log-regexp.
62 // --log-regexp
64 // --log-regexp implies --log.
128 V(REG_EXP_TAG, "RegExp") \
233 // Emits a code create event for a RegExp.
265 // ==== Events logged by --log-regexp ====
266 // Regexp compilation and execution events.
268 void RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache);
329 // Emits the source code of a regexp. Used by regexp events
    [all...]
  /external/v8/test/mjsunit/compiler/
literals-assignment.js 97 // Test regexp literals.
  /external/v8/test/mjsunit/
regexp-compile.js 28 // Test that we don't cache the result of a regexp match across a
search-string-multiple.js 28 // Test search and replace where we search for a string, not a regexp.
32 var re = new RegExp(regexp_source, flags);
string-replace-with-empty.js 63 // Clear the regexp cache to allow the GC to work.
  /external/v8/test/mjsunit/regress/
regress-233.js 29 // A stack overflow detected by a global regexp match wasn't handled correctly.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
AdtStartup.java 191 final Pattern regexp = local
213 Matcher m = regexp.matcher(line);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
parse-js.js 442 var prev_backslash = false, regexp = "", ch, in_class = false;
444 regexp += "\\" + ch;
448 regexp += ch;
451 regexp += ch;
457 regexp += ch;
462 return token("regexp", [ regexp, mods ]);
603 var ATOMIC_START_TOKEN = array_to_hash([ "atom", "num", "string", "regexp", "name" ]);
713 S.token = S.input(true); // force regexp
718 case "regexp"
    [all...]
  /external/chromium_org/v8/tools/gyp/
v8_base.arm.target.darwin-arm.mk 140 v8/src/regexp-macro-assembler-irregexp.cc \
141 v8/src/regexp-macro-assembler-tracer.cc \
142 v8/src/regexp-macro-assembler.cc \
143 v8/src/regexp-stack.cc \
194 v8/src/arm/regexp-macro-assembler-arm.cc \
v8_base.arm.target.linux-arm.mk 140 v8/src/regexp-macro-assembler-irregexp.cc \
141 v8/src/regexp-macro-assembler-tracer.cc \
142 v8/src/regexp-macro-assembler.cc \
143 v8/src/regexp-stack.cc \
194 v8/src/arm/regexp-macro-assembler-arm.cc \
v8_base.ia32.target.darwin-x86.mk 140 v8/src/regexp-macro-assembler-irregexp.cc \
141 v8/src/regexp-macro-assembler-tracer.cc \
142 v8/src/regexp-macro-assembler.cc \
143 v8/src/regexp-stack.cc \
193 v8/src/ia32/regexp-macro-assembler-ia32.cc \
v8_base.ia32.target.linux-x86.mk 140 v8/src/regexp-macro-assembler-irregexp.cc \
141 v8/src/regexp-macro-assembler-tracer.cc \
142 v8/src/regexp-macro-assembler.cc \
143 v8/src/regexp-stack.cc \
193 v8/src/ia32/regexp-macro-assembler-ia32.cc \
v8_base.mipsel.target.darwin-mips.mk 140 v8/src/regexp-macro-assembler-irregexp.cc \
141 v8/src/regexp-macro-assembler-tracer.cc \
142 v8/src/regexp-macro-assembler.cc \
143 v8/src/regexp-stack.cc \
194 v8/src/mips/regexp-macro-assembler-mips.cc \
v8_base.mipsel.target.linux-mips.mk 140 v8/src/regexp-macro-assembler-irregexp.cc \
141 v8/src/regexp-macro-assembler-tracer.cc \
142 v8/src/regexp-macro-assembler.cc \
143 v8/src/regexp-stack.cc \
194 v8/src/mips/regexp-macro-assembler-mips.cc \
  /external/chromium_org/v8/src/
jsregexp.h 47 // Whether V8 is compiled with native regexp support or not.
64 // Implements RegExp.prototype.toString, see ECMA-262 section 15.10.6.4.
68 // Parses the RegExp pattern and prepares the JSRegExp object with
78 static Handle<Object> Exec(Handle<JSRegExp> regexp,
96 static int AtomExecRaw(Handle<JSRegExp> regexp,
103 static Handle<Object> AtomExec(Handle<JSRegExp> regexp,
110 // Prepare a RegExp for being executed one or more times (using
112 // This ensures that the regexp is compiled for the subject, and that
115 // as its "registers" argument. If the regexp cannot be compiled,
117 static int IrregexpPrepare(Handle<JSRegExp> regexp,
    [all...]
jsregexp.cc 42 #include "regexp-macro-assembler.h"
43 #include "regexp-macro-assembler-tracer.h"
44 #include "regexp-macro-assembler-irregexp.h"
45 #include "regexp-stack.h"
49 #include "ia32/regexp-macro-assembler-ia32.h"
51 #include "x64/regexp-macro-assembler-x64.h"
53 #include "arm/regexp-macro-assembler-arm.h"
55 #include "mips/regexp-macro-assembler-mips.h"
143 // Identifies the sort of regexps where the regexp engine is faster
157 // We declare a regexp low-alphabet if it has at least 3 times as man
    [all...]
log.h 49 // --log-api, --log-code, --log-gc, and --log-regexp.
62 // --log-regexp
64 // --log-regexp implies --log.
144 V(REG_EXP_TAG, "RegExp") \
258 // Emits a code create event for a RegExp.
338 // ==== Events logged by --log-regexp ====
339 // Regexp compilation and execution events.
341 void RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache);
397 // Emits the source code of a regexp. Used by regexp events
    [all...]
  /external/chromium_org/third_party/re2/re2/
prefilter.cc 144 // 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.
487 class Prefilter::Info::Walker : public Regexp::Walker<Prefilter::Info*> {
492 Regexp* re, Info* parent_arg,
497 Regexp* re,
506 Prefilter::Info* Prefilter::BuildInfo(Regexp* re) {
511 bool latin1 = re->parse_flags() & Regexp::Latin1;
524 Regexp* re, Prefilter::Info* parent_arg) {
531 Regexp* re, Prefilter::Info* parent_arg
    [all...]
  /external/regex-re2/re2/
prefilter.cc 144 // 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.
487 class Prefilter::Info::Walker : public Regexp::Walker<Prefilter::Info*> {
492 Regexp* re, Info* parent_arg,
497 Regexp* re,
506 Prefilter::Info* Prefilter::BuildInfo(Regexp* re) {
511 bool latin1 = re->parse_flags() & Regexp::Latin1;
524 Regexp* re, Prefilter::Info* parent_arg) {
531 Regexp* re, Prefilter::Info* parent_arg
    [all...]
  /external/chromium/net/tools/testserver/
xmppserver.py 136 def _ProcessBuffer(self, regexp, xml_suffix=''):
137 """If the buffer matches the given regexp, removes the match from
142 Whether or not the buffer matched the given regexp.
144 results = regexp.match(self._buffer)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
canvasProfiler.css 165 .canvas-formatted-regexp {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftest.py 228 for regexp in regexps:
229 if regexp.search(line):
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-literals.js 85 TestRegExpLiteral("a-", "reg", "exp", "regexp-");

Completed in 990 milliseconds

1 2 3 4 5 67 8 91011>>