• Home
  • Raw
  • Download

Lines Matching refs:resultStr

29   private resultStr = '';  property in SpWebHdcShell
113 this.resultStr = '';
365 if (this.resultStr.length === 0 && this.cursorRow.length === 0) {
371 let resultStrArr = this.resultStr.split('\r\n');
373 resultStrArr = (this.resultStr + this.realTimeResult).split('\r\n');
437 let lastRow: string = this.resultStr;
438 if (this.resultStr.lastIndexOf('\r\n') !== -1) {
439 lastRow = this.resultStr.substring(this.resultStr.lastIndexOf('\r\n') + 2);
462 this.resultStr = '';
466 if (this.resultStr.lastIndexOf('\r\n') !== -1) {
467 …this.resultStr = this.resultStr.substring(0, this.resultStr.lastIndexOf('\r\n') + 2) + this.cursor…
469 this.resultStr = this.cursorRow;
471 this.resultStr += result.getDataToString();
474 if (this.resultStr.length > SpWebHdcShell.MAX_SAVE_SIZE) {
475 this.resultStr = this.resultStr.substring(this.resultStr.length / 2);
493 this.resultStr += this.realTimeResult;
499 this.resultStr = this.removeTextAndColorSequenceStr(this.resultStr);
506 const index = this.resultStr.lastIndexOf('\n');
507 const resultStrLength = this.resultStr.length;
509 this.resultStr =
510 … this.resultStr.substring(0, index + 1) + this.textDecoder.decode(arrayA.slice(1, arrayA.length));
512 if (this.resultStr.split('\n').length === 1) {
516 this.resultStr = this.cursorRow;
518 this.resultStr += result.getDataToString();
536 this.resultStr = this.resultStr.substring(
538 this.resultStr.lastIndexOf('\r\n') + SpWebHdcShell.LINE_BREAK_LENGTH
541 … this.resultStr += result.getDataToString().substring(result.getDataToString().indexOf('\r'));
543 this.resultStr += result.getDataToString();
588 if (that.resultStr.length === 0 && that.cursorRow.length === 0) {
600 if (that.resultStr.length === 0 && that.cursorRow.length === 0) {
625 if (that.resultStr.length === 0 && that.cursorRow.length === 0) {