Lines Matching refs:regexp
10 #include "src/regexp/regexp-error.h"
11 #include "src/regexp/regexp-flags.h"
25 // TODO(jgruber): Do not expose in regexp.h.
40 // regexp features, and can be implemented as a standard string search.
89 // Ensures that a regexp is fully compiled and ready to be executed on a
114 Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject,
119 ExperimentalOneshotExec(Isolate* isolate, Handle<JSRegExp> regexp,
124 // Integral return values used throughout regexp code layers.
163 static bool IsUnmodifiedRegExp(Isolate* isolate, Handle<JSRegExp> regexp);
174 RegExpGlobalCache(Handle<JSRegExp> regexp, Handle<String> subject,
179 // Fetch the next entry in the cache for global regexp match results.
204 // Caches results for specific regexp queries on the isolate. At the time of