Home | History | Annotate | Download | only in src

Lines Matching defs:DataView

325 // --------------------------- DataView -----------------------------
327 var $DataView = global.DataView;
356 throw MakeTypeError('constructor_not_function', ["DataView"]);
363 ['DataView.buffer', this]);
371 ['DataView.byteOffset', this]);
379 ['DataView.byteLength', this]);
404 ['DataView.getTYPENAME', this]);
417 ['DataView.setTYPENAME', this]);
434 // Setup the DataView constructor.
435 %SetCode($DataView, DataViewConstructor);
436 %FunctionSetPrototype($DataView, new $Object);
438 // Set up constructor property on the DataView prototype.
439 %AddNamedProperty($DataView.prototype, "constructor", $DataView, DONT_ENUM);
441 InstallGetter($DataView.prototype, "buffer", DataViewGetBufferJS);
442 InstallGetter($DataView.prototype, "byteOffset", DataViewGetByteOffset);
443 InstallGetter($DataView.prototype, "byteLength", DataViewGetByteLength);
445 InstallFunctions($DataView.prototype, DONT_ENUM, $Array(