Lines Matching refs:index
168 let index = 0;
181 index++;
182 if (index === 1) {
192 } else if (index === depth) {
217 for (let index = 1; index <= depth; index++) { variable
219 if (index === 1) {
220 … this.shellCanvasCtx!.fillRect(startX, startY, this.shellCanvas!.width - startX, index * 16);
223 } else if (index === depth) {
227 startY + (index - 1) * 16,
229 endY - (startY + (index - 1) * 16)
237 startY + (index - 1) * 16,
250 for (let index = 0; index < strings.length; index++) { variable
251 let text = strings[index]; variable
281 for (let index = 1; index <= depth; index++) { variable
283 if (index === 1) {
287 } else if (index === depth) {
289 …this.shellCanvasCtx!.fillRect(endX, endY, this.shellCanvas!.width - endX, startY - (index - 1) * 1…
293 …this.shellCanvasCtx!.fillRect(SpWebHdcShell.LEFT_OFFSET, startY - index * 16, this.shellCanvas!.wi…
321 for (let index = 0; index < resultStrArr.length - 1; index++) { variable
322 let shellStr = resultStrArr[index]; variable
338 for (let index: number = 0; index < this.finalArr.length; index++) { variable
339 let shellStr: string = this.finalArr[index]; variable
340 this.textY = SpWebHdcShell.TOP_OFFSET + index * 16;
444 for (let index: number = 0; index < currentRow.length; index++) { variable
445 let currentResult: string = currentRow[index]; variable
506 const index = this.resultStr.lastIndexOf('\n'); constant
508 if (index > -1 && resultStrLength > index) {
510 … this.resultStr.substring(0, index + 1) + this.textDecoder.decode(arrayA.slice(1, arrayA.length));
513 const index = this.cursorRow.lastIndexOf('\n'); constant
515 … this.cursorRow.substring(0, index + 1) + this.textDecoder.decode(arrayA.slice(1, arrayA.length));
553 for (let index = 0; index < compareArray.length; index++) { variable
554 if (sourceArray[index] !== compareArray[index]) {
563 for (let index = sourceArray.length - 1; index >= 0; index--) { variable
564 if (sourceArray[index] === compareArray[0]) {
567 if (sourceArray[index + j] !== compareArray[j]) {
573 lastIndex = index;