Searched refs:InstallGetter (Results 1 – 9 of 9) sorted by relevance
/external/v8/src/js/ |
D | harmony-species.js | 51 utils.InstallGetter(GlobalArray, speciesSymbol, ArraySpecies, DONT_ENUM); 52 utils.InstallGetter(GlobalTypedArray, speciesSymbol, TypedArraySpecies, DONT_ENUM); 53 utils.InstallGetter(GlobalMap, speciesSymbol, MapSpecies, DONT_ENUM); 54 utils.InstallGetter(GlobalSet, speciesSymbol, SetSpecies, DONT_ENUM); 55 utils.InstallGetter(GlobalArrayBuffer, speciesSymbol, ArrayBufferSpecies, 57 utils.InstallGetter(GlobalPromise, speciesSymbol, PromiseSpecies, DONT_ENUM); 58 utils.InstallGetter(GlobalRegExp, speciesSymbol, RegExpSpecies, DONT_ENUM);
|
D | harmony-regexp.js | 57 utils.InstallGetter(GlobalRegExp.prototype, 'flags', RegExpGetFlags); 58 utils.InstallGetter(GlobalRegExp.prototype, 'sticky', RegExpGetSticky);
|
D | typedarray.js | 791 utils.InstallGetter(TypedArray.prototype, "buffer", TypedArrayGetBuffer); 792 utils.InstallGetter(TypedArray.prototype, "byteOffset", TypedArrayGetByteOffset, 794 utils.InstallGetter(TypedArray.prototype, "byteLength", 796 utils.InstallGetter(TypedArray.prototype, "length", TypedArrayGetLength, 798 utils.InstallGetter(TypedArray.prototype, toStringTagSymbol, 841 utils.InstallGetter(GlobalNAME.prototype, "length", NAME_GetLength, 948 utils.InstallGetter(GlobalDataView.prototype, "buffer", DataViewGetBufferJS); 949 utils.InstallGetter(GlobalDataView.prototype, "byteOffset", 951 utils.InstallGetter(GlobalDataView.prototype, "byteLength",
|
D | prologue.js | 105 function InstallGetter(object, name, getter, attributes, prefix) { class 288 utils.InstallGetter = InstallGetter;
|
D | regexp.js | 537 utils.InstallGetter(GlobalRegExp.prototype, 'global', RegExpGetGlobal); 538 utils.InstallGetter(GlobalRegExp.prototype, 'ignoreCase', RegExpGetIgnoreCase); 539 utils.InstallGetter(GlobalRegExp.prototype, 'multiline', RegExpGetMultiline); 540 utils.InstallGetter(GlobalRegExp.prototype, 'source', RegExpGetSource);
|
D | harmony-sharedarraybuffer.js | 28 utils.InstallGetter(GlobalSharedArrayBuffer.prototype, "byteLength",
|
D | harmony-unicode-regexps.js | 39 utils.InstallGetter(GlobalRegExp.prototype, 'unicode', RegExpGetUnicode);
|
D | arraybuffer.js | 85 utils.InstallGetter(GlobalArrayBuffer.prototype, "byteLength",
|
D | collection.js | 270 utils.InstallGetter(GlobalSet.prototype, "size", SetGetSize); 450 utils.InstallGetter(GlobalMap.prototype, "size", MapGetSize);
|