Lines Matching refs:i
73 for (let i = 1; i < currentList.childElementCount; i += 2) {
74 currentList.childNodes[i].style.display = "none";
103 for (let i = 0; i < currentSubList.childElementCount; i++) {
104 if (currentSubList.childNodes[i].childElementCount > 0) {
105 currentSubList.childNodes[i].childNodes[1].style.display = "none";
119 let i;
120 for (i = 0; i < symbol.length; i++) {
121 if (symbol.charAt(i) >= '0' && symbol.charAt(i) <= '9') {
125 while (i < symbol.length) {
126 if (symbol.charAt(i) < '0' || symbol.charAt(i) > '9') {
129 let len = parseInt(symbol.substr(i, symbol.length));
134 res = res + "::" + symbol.substr(i + 1 + count, len);
135 i = i + 1 + count + len;
141 for (let i = 0; i < list.length; i++) {
142 domList.appendChild(makeButton(list[i][0], list[i][1]));
144 let depItem = depMap[list[i][0]];
294 let node = map[name], i;
320 d.data.depends.forEach(function(i) { argument
321 let l = map[d.data.name].path(map[i]);
327 d.data.violates.forEach(function(i) { argument
328 map[i[0]].not_allow = true;
329 let l = map[d.data.name].path(map[i[0]]);