Lines Matching refs:method

6055method; if (typeof Symbol !== "undefined") { if (Symbol.asyncIterator) { method = iterable[Symbol.…
7927method; if (typeof Symbol !== "undefined") { if (Symbol.asyncIterator) { method = iterable[Symbol.…
23864method; if (typeof Symbol !== "undefined") { if (Symbol.asyncIterator) { method = iterable[Symbol.…
28186 methods.forEach(function (method) {
28187 this[method] = function _wrappedMethod() {
28190 return clone[method].apply(clone, arguments);
28244 overrided.forEach(function (method) {
28245 Node.prototype[method] = function _overrided() {
28247 throw new Error(method + ' not implemented for encoding: ' + state.enc);
40839 var method = [][METHOD_NAME];
40844 return cache[METHOD_NAME] = !!method && !fails(function () {
40851 method.call(O, argument0, argument1);
41317 module.exports = function (namespace, method) {
41319 : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];
54786 for (var method in compressions) {
54787 if (!compressions.hasOwnProperty(method)) {
54791 if (compressions[method].magic === compressionMethod) {
54792 return compressions[method];
61889 method: Z_DEFLATED,
61914 …var status = zlib_deflate.deflateInit2(this.strm, opt.level, opt.method, opt.windowBits, opt.memLe…
64381 this.method = Z_DEFLATED;
64661 function deflateInit2(strm, level, method, windowBits, memLevel, strategy) {
64684 …if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED || windowBits < 8 || windowB…
64725 s.method = method;
71490 var method = keys[v];
71491 if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];
72601 this[i] = function methodWrap(method) {
72603 return stream[method].apply(stream, arguments);
74637 ["next", "throw", "return"].forEach(function (method) {
74638 define(prototype, method, function (arg) {
74639 return this._invoke(method, arg);
74674 function invoke(method, arg, resolve, reject) {
74675 var record = tryCatch(generator[method], generator, arg);
74707 function enqueue(method, arg) {
74710 invoke(method, arg, resolve, reject);
74757 return function invoke(method, arg) {
74763 if (method === "throw") {
74772 context.method = method;
74787 if (context.method === "next") {
74791 } else if (context.method === "throw") {
74798 } else if (context.method === "return") {
74822 context.method = "throw";
74834 var method = delegate.iterator[context.method];
74836 if (method === undefined) {
74841 if (context.method === "throw") {
74846 context.method = "return";
74850 if (context.method === "throw") {
74857 context.method = "throw";
74864 var record = tryCatch(method, delegate.iterator, context.arg);
74867 context.method = "throw";
74876 context.method = "throw";
74894 if (context.method !== "return") {
74895 context.method = "next";
75047 this.method = "next";
75086 context.method = "next";
75149 this.method = "next";
75165 this.method = "return";
75211 if (this.method === "next") {
79057 var method = keys[v];
79058 if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];
80036 this[i] = function (method) {
80038 return stream[method].apply(stream, arguments);