Lines Matching refs:arrayA
147 const arrayA = new Uint8Array(compareA); constant
148 if (arrayA.length === compareB.length) {
149 for (let i = 0; i < arrayA.length; i++) {
150 const dd = arrayA[i];
477 const arrayA = new Uint8Array(resData); constant
478 if (arrayA[0] === 13 && arrayA[1] !== 10 && arrayA[1] !== 13) {
479 this.hdcRecvEnterAndBracket(arrayA, result);
480 } else if (this.isStartWidthArrayBuffer(arrayA, this.startRealTimeFlag)) {
481 let lastIndex = this.getLastRestorationIndex(arrayA, this.endRealTimeFlag);
483 this.textDecoder.decode(arrayA.slice(lastIndex, arrayA.length))
486 } else if (this.isStartWidthArrayBuffer(arrayA, this.clearRealTimeFlag)) {
488 this.textDecoder.decode(arrayA.slice(6, arrayA.length))
492 if (this.isStartWidthArrayBuffer(arrayA, this.ctrlCFlag)) {
505 private hdcRecvEnterAndBracket(arrayA: Uint8Array, result: DataMessage): void {
510 … this.resultStr.substring(0, index + 1) + this.textDecoder.decode(arrayA.slice(1, arrayA.length));
515 … this.cursorRow.substring(0, index + 1) + this.textDecoder.decode(arrayA.slice(1, arrayA.length));