Searched defs:RegExp (Results 1 - 11 of 11) sorted by relevance

/external/v8/test/mjsunit/harmony/
H A Dregexp-change-exec.js6 RegExp.prototype.exec = () => { throw new MyError() };
5 RegExp.prototype.exec = () => { throw new MyError() }; class
/external/v8/test/mjsunit/bugs/
H A Dbug-617.js36 RegExp.prototype.exec = make_sure_we_dont_get_here;
34 RegExp.prototype.exec = make_sure_we_dont_get_here; class
/external/v8/test/mjsunit/es6/
H A Dregexp-tostring.js31 RegExp.prototype.toString.call(x);
45 assertEquals("/pattern/flags", RegExp.prototype.toString.call(fake));
48 // Monkey-patching is also possible on RegExp instances
55 assertEquals('/(?:)/', RegExp.prototype.toString());
56 assertEquals('(?:)', RegExp.prototype.source);
57 assertEquals('', RegExp.prototype.flags);
30 RegExp.prototype.toString.call(x); class
H A Dregexp-flags.js53 // Test for ES2017 RegExp web compatibility semantics
56 RegExp.prototype[name]);
59 Object.getOwnPropertyDescriptor(RegExp.prototype, name).get.name);
70 RegExp.prototype.flags = 'setter should be undefined';
72 assertEquals('', RegExp('').flags);
74 assertEquals('gimuy', RegExp('', 'yugmi').flags);
77 var descriptor = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags');
67 RegExp.prototype.flags = 'setter should be undefined'; class
H A Darray-concat.js468 RegExp.prototype[Symbol.isConcatSpreadable] = true;
469 RegExp.prototype.length = 3;
472 RegExp.prototype[0] = 1;
473 RegExp.prototype[1] = 2;
474 RegExp.prototype[2] = 3;
477 delete RegExp.prototype[Symbol.isConcatSpreadable];
478 delete RegExp.prototype[0];
479 delete RegExp.prototype[1];
480 delete RegExp.prototype[2];
481 delete RegExp
465 RegExp.prototype[Symbol.isConcatSpreadable] = true; class
[all...]
/external/v8/test/webkit/fast/js/
H A DtoString-overrides.js34 var backupRegExpToString = RegExp.prototype.toString;
35 var backupRegExpToLocaleString = RegExp.prototype.toLocaleString;
40 RegExp.prototype.toString = function() { return "toString2"; }
41 RegExp.prototype.toLocaleString = function() { return "toLocaleString2"; }
50 RegExp.prototype.toLocaleString = "invalid";
64 RegExp.prototype.toString = backupRegExpToString;
65 RegExp.prototype.toLocaleString = backupRegExpToLocaleString;
39 RegExp.prototype.toString = function() { return "toString2"; } class
/external/v8/test/webkit/fast/js/kde/
H A DArray.js204 var backupRegExpToString = RegExp.prototype.toString;
205 var backupRegExpToLocaleString = RegExp.prototype.toLocaleString;
210 RegExp.prototype.toString = function() { return "toString2"; }
211 RegExp.prototype.toLocaleString = function() { return "toLocaleString2"; }
220 RegExp.prototype.toLocaleString = "invalid";
234 RegExp.prototype.toString = backupRegExpToString;
235 RegExp.prototype.toLocaleString = backupRegExpToLocaleString;
209 RegExp.prototype.toString = function() { return "toString2"; } class
/external/v8/include/
H A Dv8.h1807 * Returns true if this value is a RegExp.
4076 * An instance of the built-in RegExp constructor (ECMA-262, 15.10).
4078 class V8_EXPORT RegExp : public Object { class in namespace:v8
4099 * RegExp::New(v8::String::New("foo"),
4100 * static_cast<RegExp::Flags>(kGlobal | kMultiline))
4104 Local<RegExp> New(Local<String> pattern,
4106 static V8_WARN_UNUSED_RESULT MaybeLocal<RegExp> New(Local<Context> context,
4121 V8_INLINE static RegExp* Cast(v8::Value* obj);
8436 RegExp* RegExp
[all...]
/external/v8/src/
H A Dapi.cc3443 void v8::RegExp::CheckCast(v8::Value* that) {
3446 "v8::RegExp::Cast()",
6260 MaybeLocal<v8::RegExp> v8::RegExp::New(Local<Context> context,
6262 PREPARE_FOR_EXECUTION(context, RegExp, New, RegExp);
6263 Local<v8::RegExp> result;
6265 !ToLocal<RegExp>(i::JSRegExp::New(Utils::OpenHandle(*pattern),
6268 RETURN_ON_FAILED_EXECUTION(RegExp);
6273 Local<v8::RegExp> v
6277 RETURN_TO_LOCAL_UNCHECKED(New(context, pattern, flags), RegExp); local
[all...]
/external/libgdx/backends/gdx-backends-gwt/libs/
H A Dgwt-user.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/activity/ ...
H A Dgwt-dev.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ...

Completed in 271 milliseconds