Lines Matching refs:j

3516 	    for (var j = 0; j < n2; j++) {
3519 dj = dots2[j],
3520 dj1 = dots2[j + 1],
3614 for (var j = 0, jj = path2.length; j < jj; j++) {
3615 var pj = path2[j];
3640 intr[k].segment2 = j;
3716 for (var j = 1, jj = pa.length; j < jj; j++) {
3717 r[j] = +pa[j] + ((j % 2) ? x : y);
3944 var j = tvalues.length,
3945 jlen = j,
3948 while (j--) {
3949 t = tvalues[j];
3951 …bounds[0][j] = (mt * mt * mt * x0) + (3 * mt * mt * t * x1) + (3 * mt * t * t * x2) + (t * t * t *…
3952 …bounds[1][j] = (mt * mt * mt * y0) + (3 * mt * mt * t * y1) + (3 * mt * t * t * y2) + (t * t * t *…
8667 i = 0, j = 0,
8710 j;
8730 for (j = i + 1; j < l; j++) {
8731 w = s.charCodeAt(j);
8747 i = j;
8761 name = s.substring(i, j);
8768 w = s.charCodeAt(j + 1);
8771 j = s.indexOf('"', i = j + 2);
8773 if (j === -1) {
8774 j = s.indexOf('\'', i);
8776 if (j !== -1) {
8783 j = s.indexOf('\'', i = j + 2);
8785 if (j === -1) {
8786 j = s.indexOf('"', i);
8788 if (j !== -1) {
8799 for (j = j + 1; j < l; j++) {
8800 w = s.charCodeAt(j + 1);
8809 if (j === -1) {
8812 j = l;
8817 value = s.substring(i, j);
8820 i = j;
8825 for (; j + 1 < l; j++) {
8826 w = s.charCodeAt(j + 1);
8833 if (i === j) {
8840 i = j + 1;
9027 var endOfLine = j;
9055 data = xml.substring(j);
9059 if (j === 0) {
9060 data = xml.substring(j, i);
9066 data = (j == -1 ? xml.substring(i) : xml.substring(i, j + 1));
9095 while (j !== -1) {
9097 if (xml.charCodeAt(j) === 60) { // "<"
9098 i = j;
9100 i = xml.indexOf('<', j);
9109 if (j === 0) {
9113 if (j < xml.length) {
9114 if (xml.substring(j).trim()) {
9123 if (j !== i) {
9127 onText(xml.substring(j, i), decodeEntities, getContext);
9134 if (xml.substring(j, i).trim()) {
9152 j = xml.indexOf(']]>', i);
9153 if (j === -1) {
9158 onCDATA(xml.substring(i + 9, j), getContext);
9164 j += 3;
9170 j = xml.indexOf('-->', i);
9171 if (j === -1) {
9177 onComment(xml.substring(i + 4, j), decodeEntities, getContext);
9183 j += 3;
9190 j = xml.indexOf('?>', i);
9191 if (j === -1) {
9196 onQuestion(xml.substring(i, j + 2), getContext);
9202 j += 2;
9212 j = -1;
9227 j = x;
9238 onAttention(xml.substring(i, j + 1), decodeEntities, getContext);
9244 j += 1;
9270 for (; q < j; q++) {
9281 if (xml.charCodeAt(j - 1) === 47) { // .../>
9282 x = elementName = xml.substring(i + 1, j - 1);
9288 x = elementName = xml.substring(i + 1, j);
9417 j += 1;