Lines Matching refs:converters
8 webidl.converters = {}
331 webidl.dictionaryConverter = function (converters) {
345 for (const options of converters) {
401 webidl.converters.DOMString = function (V, opts = {}) {
422 webidl.converters.ByteString = function (V) {
425 const x = webidl.converters.DOMString(V)
445 webidl.converters.USVString = toUSVString
448 webidl.converters.boolean = function (V) {
458 webidl.converters.any = function (V) {
463 webidl.converters['long long'] = function (V) {
473 webidl.converters['unsigned long long'] = function (V) {
483 webidl.converters['unsigned long'] = function (V) {
493 webidl.converters['unsigned short'] = function (V, opts) {
503 webidl.converters.ArrayBuffer = function (V, opts = {}) {
542 webidl.converters.TypedArray = function (V, T, opts = {}) {
582 webidl.converters.DataView = function (V, opts = {}) {
615 webidl.converters.BufferSource = function (V, opts = {}) {
617 return webidl.converters.ArrayBuffer(V, opts)
621 return webidl.converters.TypedArray(V, V.constructor)
625 return webidl.converters.DataView(V, opts)
631 webidl.converters['sequence<ByteString>'] = webidl.sequenceConverter(
632 webidl.converters.ByteString
635 webidl.converters['sequence<sequence<ByteString>>'] = webidl.sequenceConverter(
636 webidl.converters['sequence<ByteString>']
639 webidl.converters['record<ByteString, ByteString>'] = webidl.recordConverter(
640 webidl.converters.ByteString,
641 webidl.converters.ByteString