Lines Matching refs:E

330 	t[11]= '0.00E+00';
349 t[48]= '##0.0E+0';
363 11: '0.00E+00',
382 48: '##0.0E+0',
501 /* Note: `toPrecision` uses standard form when prec > E and E >= -6 */
509 if(o.indexOf("E") == -1) return o;
510 return o.replace(/(?:\.0*|(\.\d*[1-9])0+)[Ee]/,"$1E").replace(/(E[+-])(\d)$/,"$10$2");
659 var idx = fmt.indexOf("E") - fmt.indexOf(".") - 1;
660 if(fmt.match(/^#+0.0E\+0$/)) {
661 if(val == 0) return "0.0E+0";
663 var period = fmt.indexOf("."); if(period === -1) period=fmt.indexOf('E');
669 if(o.indexOf(".") === -1) o = o.charAt(0) + "." + o.substr(1) + "E+" + (fakee - o.length+ee);
670 else o += "E+" + (fakee - ee);
677 …on($$,$1,$2,$3) { return $1 + $2 + $3.substr(0,(period+ee)%period) + "." + $3.substr(ee) + "E"; });
679 …if(fmt.match(/E\+00$/) && o.match(/e[+-]\d$/)) o = o.substr(0,o.length-1) + "0" + o.charAt(o.lengt…
680 if(fmt.match(/E\-/) && o.match(/e\+/)) o = o.replace(/e\+/,"e");
681 return o.replace("e","E");
729 if(fmt.indexOf('E') !== -1) return write_num_exp(fmt, val);
817 var idx = fmt.indexOf("E") - fmt.indexOf(".") - 1;
818 if(fmt.match(/^#+0.0E\+0$/)) {
819 if(val == 0) return "0.0E+0";
821 var period = fmt.indexOf("."); if(period === -1) period=fmt.indexOf('E');
827 if(o.indexOf(".") === -1) o = o.charAt(0) + "." + o.substr(1) + "E+" + (fakee - o.length+ee);
828 else o += "E+" + (fakee - ee);
831 …on($$,$1,$2,$3) { return $1 + $2 + $3.substr(0,(period+ee)%period) + "." + $3.substr(ee) + "E"; });
833 …if(fmt.match(/E\+00$/) && o.match(/e[+-]\d$/)) o = o.substr(0,o.length-1) + "0" + o.charAt(o.lengt…
834 if(fmt.match(/E\-/) && o.match(/e\+/)) o = o.replace(/e\+/,"e");
835 return o.replace("e","E");
845 if(fmt.indexOf('E') !== -1) return write_num_exp2(fmt, val);
956 case 'M': case 'D': case 'Y': case 'H': case 'S': case 'E':
972 …while(i < fmt.length && ("0#?.,E+-%".indexOf(c=fmt.charAt(++i)) > -1 || (c=='\\' && fmt.charAt(i+1…
1009 case 'M': case 'D': case 'Y': case 'H': case 'S': case 'E':
1049 o = c; while(++i < fmt.length && "0#?.,E+-%".indexOf(c=fmt.charAt(i)) > -1) o += c;
1145 if(decpt === out.length && ostr.indexOf("E") === -1) {
1156 else if(decpt !== out.length && ostr.indexOf("E") === -1) {
8074 case 'E': break; /* EOF */
8093 … case 'E': nn.Ref = (opts && opts.sheet || "Sheet1") + "!" + rc_to_a1(record[rj].slice(1)); break;
8122 case 'E':
8188 // case 'E': // ??
8219 if(cell.f && !cell.F) o += ";E" + a1_to_rc(cell.f, {r:R, c:C}); break;
8253 var preamble/*:Array<string>*/ = ["ID;PSheetJS;N;E"], o/*:Array<string>*/ = [];
8276 return preamble.join(RS) + RS + o.join(RS) + RS + "E" + RS;
12530 var crefregex = /(^|[^._A-Z0-9])([$]?)([A-Z]{1,2}|[A-W][A-Z]{2}|X[A-E][A-Z]|XF[A-D])([$]?)(10[0-3]\…
13933 …if(val.match(/^\$?(?:[A-W][A-Z]{2}|X[A-E][A-Z]|XF[A-D]|[A-Z]{1,2})\$?(?:10[0-3]\d{4}|104[0-7]\d{3}…
13934 …2}|X[A-E][A-Z]|XF[A-D]|[A-Z]{1,2})\$?(?:10[0-3]\d{4}|104[0-7]\d{3}|1048[0-4]\d{2}|10485[0-6]\d|104…
13935 …2}|X[A-E][A-Z]|XF[A-D]|[A-Z]{1,2})\$?(?:10[0-3]\d{4}|104[0-7]\d{3}|1048[0-4]\d{2}|10485[0-6]\d|104…
13936 …[\]:]*'|[^'][^\\\/?*\[\]:'`~!@#$%^()\-=+{}|;,<.>]*)!\$?(?:[A-W][A-Z]{2}|X[A-E][A-Z]|XF[A-D]|[A-Z]{…
13937 …2}|X[A-E][A-Z]|XF[A-D]|[A-Z]{1,2})\$?(?:10[0-3]\d{4}|104[0-7]\d{3}|1048[0-4]\d{2}|10485[0-6]\d|104…
15089 …]+)/g, function($$, $1) { return ($1).match(/^([A-Z]{1,2}|[A-W][A-Z]{2}|X[A-E][A-Z]|XF[A-D])?(10[0…
15103 …]+)/g, function($$, $1) { return ($1).match(/^([A-Z]{1,2}|[A-W][A-Z]{2}|X[A-E][A-Z]|XF[A-D])?(10[0…
22019 … || 2) + fill("?", +y["decimal-places"] - +y["min-decimal-places"] || 0) + "E" + (parsexmlbool(y["…
22787 var np = nf.match(/([#0][0#,]*)(\.[0#]*|)(E[+]?0*|)/i);