Lines Matching refs:type

1661                 type: "",
1668 opts.type = opts.type.toLowerCase();
1672 if(opts.type === "binarystring") {
1673 opts.type = "string";
1676 if (!opts.type) {
1680 utils.checkSupport(opts.type);
1701 return new StreamHelper(worker, opts.type || "string", opts.mimeType);
1716 if (!options.type) {
1717 options.type = "nodebuffer";
2014 var type = utils.getTypeOf(data);
2015 utils.checkSupport(type);
2016 if (type === "string" && !support.uint8array) {
2019 if (type === "nodebuffer") {
2144 this.type = "";
2152 self.type = utils.getTypeOf(data);
2216 switch(this.type) {
2533 function transformZipOutput(type, content, mimeType) { argument
2534 switch(type) {
2540 return utils.transformTo(type, content);
2551 function concat (type, dataArray) { argument
2556 switch(type) {
2571 throw new Error("concat : unsupported type '" + type + "'");
2739 type: "application/zip"
3078 exports.newBlob = function(part, type) { argument
3084 type: type
3094 return builder.getBlob(type);
3142 stringifyByChunk: function(array, type, chunk) { argument
3149 if (type === "array" || type === "nodebuffer") {
3214 type = exports.getTypeOf(array),
3216 if (type === "uint8array") {
3218 } else if (type === "nodebuffer") {
3225 return arrayToStringHelper.stringifyByChunk(array, type, chunk);
3412 exports.checkSupport = function(type) { argument
3413 var supported = support[type.toLowerCase()];
3415 throw new Error(type + " is not supported by this platform");
4138 internalStream: function (type) { argument
4141 if (!type) {
4144 outputType = type.toLowerCase();
4173 async: function (type, onUpdate) {
4174 return this.internalStream(type).accumulate(onUpdate);
4183 nodeStream: function (type, onUpdate) {
4184 return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate);
9791 module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, op… argument
9899 if (left > 0 && (type === CODES || max !== 1)) {
9950 if (type === CODES) {
9954 } else if (type === LENS) {
9979 if ((type === LENS && used > ENOUGH_LENS) ||
9980 (type === DISTS && used > ENOUGH_DISTS)) {
10051 if ((type === LENS && used > ENOUGH_LENS) ||
10052 (type === DISTS && used > ENOUGH_DISTS)) {