Lines Matching defs:regexp
32 #include "src/objects/js-regexp-inl.h"
36 #include "src/regexp/regexp.h"
1332 auto regexp = JSRegExp::cast(args[0]);
1335 if (regexp.type_tag() == JSRegExp::IRREGEXP) {
1336 result = regexp.bytecode(is_latin1).IsByteArray();
1346 auto regexp = JSRegExp::cast(args[0]);
1349 if (regexp.type_tag() == JSRegExp::IRREGEXP) {
1350 result = regexp.code(is_latin1).IsCodeT();
1360 auto regexp = JSRegExp::cast(args[0]);
1362 switch (regexp.type_tag()) {
1382 Handle<JSRegExp> regexp = args.at<JSRegExp>(0);
1384 RegExp::IsUnmodifiedRegExp(isolate, regexp));