Lines Matching refs:cstr

3135 		var cstr = has_buf && Buffer.isBuffer(ca) ? ca.toString("binary") : a2s(ca);
3138 var dispcnt = 0, L = Math.min(1024, cstr.length), cc = 0;
3139 for(var csl = 0; csl <= L; ++csl) if((cc=cstr.charCodeAt(csl)) >= 0x20 && cc < 0x80) ++dispcnt;
3148 out.push(qp ? write_quoted_printable(cstr) : write_base64_76(cstr));
4012 case 'cstr': size = 0; o = "";
4274 function fix_row(cstr/*:string*/)/*:string*/ { return cstr.replace(/([A-Z]|^)(\d+)$/,"$1$$$2"); } argument
4275 function unfix_row(cstr/*:string*/)/*:string*/ { return cstr.replace(/\$(\d+)$/,"$1"); } argument
4279 function fix_col(cstr/*:string*/)/*:string*/ { return cstr.replace(/^([A-Z])/,"$$$1"); } argument
4280 function unfix_col(cstr/*:string*/)/*:string*/ { return cstr.replace(/^\$([A-Z])/,"$1"); } argument
4282 function split_cell(cstr/*:string*/)/*:Array<string>*/ { return cstr.replace(/(\$?[A-Z]*)(\$?\d*)/,… argument
4283 //function decode_cell(cstr/*:string*/)/*:CellAddress*/ { var splt = split_cell(cstr); return { c:d…
4284 function decode_cell(cstr/*:string*/)/*:CellAddress*/ { argument
4286 for(var i = 0; i < cstr.length; ++i) {
4287 var cc = cstr.charCodeAt(i);
9034 o[1].v = blob.read_shift(tgt - blob.l, 'cstr');
9060 o[1].v = blob.read_shift(tgt - blob.l, 'cstr');
9281 o[1].v = blob.read_shift(length - 4, 'cstr');
9390 return blob[blob.l + length - 1] == 0 ? blob.read_shift(length, 'cstr') : "";
9406 var nm = blob.read_shift(length - 21, 'cstr');
9658 SST.push(p.read_shift(cnt, 'cstr'));
9680 sname = cnt == 0 ? "" : p.read_shift(cnt, 'cstr');