Home | History | Annotate | Download | only in src

Lines Matching refs:zfill

2142       var match = d3_format_re.exec(specifier), fill = match[1] || " ", align = match[2] || ">", sign = match[3] || "", symbol = match[4] || "", zfill = match[5], width = +match[6], comma = match[7], precision = match[8], type = match[9], scale = 1, prefix = "", suffix = "", integer = false;
2144 if (zfill || fill === "0" && align === "=") {
2145 zfill = fill = "0";
2190 var zcomma = zfill && comma;
2204 if (!zfill && comma) before = formatGroup(before);