Lines Matching refs:ch

1540                 var ch = text.charAt(i);
1541 isLineStart = (ch === '\r' || ch === '\n');
1542 if (ch === '\r' && i + 1 < text.length && text.charAt(i + 1) === '\n') {
28233 MultiLineStream.prototype.advanceIfChar = function (ch) { argument
28234 if (ch === this.source.charCodeAt(this.position)) {
28240 MultiLineStream.prototype.advanceIfChars = function (ch) { argument
28241 if (this.position + ch.length > this.source.length) {
28245 for (; i < ch.length; i++) {
28246 if (this.source.charCodeAt(this.position + i) !== ch[i]) {
28507 this.stream.advanceWhileChar(function (ch) { argument
28508 if (hot_1 && ch === _FSL) {
28512 hot_1 = ch === _MUL;
28523 var npeek = 0, ch;
28527 ch = this.stream.peekChar(npeek);
28528 if (ch >= _0 && ch <= _9) {
28530 this.stream.advanceWhileChar(function (ch) { argument
28531 return ch >= _0 && ch <= _9 || npeek === 0 && ch === _DOT;
28538 var ch = this.stream.peekChar();
28539 switch (ch) {
28544 result.push(String.fromCharCode(ch));
28545 if (ch === _CAR && this.stream.advanceIfChar(_NWL)) {
28553 var ch = this.stream.peekChar();
28554 if (ch === _BSL) {
28556 ch = this.stream.peekChar();
28558 …while (hexNumCount < 6 && (ch >= _0 && ch <= _9 || ch >= _a && ch <= _f || ch >= _A && ch <= _F)) {
28560 ch = this.stream.peekChar();
28574 if (ch === _WSP || ch === _TAB) {
28582 if (ch !== _CAR && ch !== _LFD && ch !== _NWL) {
28584 result.push(String.fromCharCode(ch));
28595 var ch = this.stream.peekChar();
28596 … if (ch !== 0 && ch !== closeQuote && ch !== _BSL && ch !== _CAR && ch !== _LFD && ch !== _NWL) {
28598 result.push(String.fromCharCode(ch));
28623 var ch = this.stream.peekChar();
28624 … (ch !== 0 && ch !== _BSL && ch !== _SQO && ch !== _DQO && ch !== _LPA && ch !== _RPA && ch !== _W…
28626 result.push(String.fromCharCode(ch));
28639 var n = this.stream.advanceWhileChar(function (ch) {
28640 return ch === _WSP || ch === _TAB || ch === _NWL || ch === _LFD || ch === _CAR;
28672 var ch = this.stream.peekChar();
28673 if (ch === _USC || // _
28674 ch >= _a && ch <= _z || // a-z
28675 ch >= _A && ch <= _Z || // A-Z
28676 ch >= 0x80 && ch <= 0xFFFF) { // nonascii
28678 result.push(String.fromCharCode(ch));
28684 var ch = this.stream.peekChar();
28685 if (ch === _MIN) {
28687 result.push(String.fromCharCode(ch));
28693 var ch = this.stream.peekChar();
28694 if (ch === _USC || // _
28695 ch === _MIN || // -
28696 ch >= _a && ch <= _z || // a-z
28697 ch >= _A && ch <= _Z || // A-Z
28698 ch >= _0 && ch <= _9 || // 0/9
28699 ch >= 0x80 && ch <= 0xFFFF) { // nonascii
28701 result.push(String.fromCharCode(ch));
29889 this.stream.advanceWhileChar(function (ch) { argument
29890 switch (ch) {
29906 var ch = this.stream.peekChar();
29907 if (ch === _TIC) {
29909 this.stream.advanceWhileChar(function (ch) { return ch !== _TIC; }); argument
30878 this.stream.advanceWhileChar(function (ch) { argument
30879 switch (ch) {
35839 var ch = uri.charCodeAt(i);
35840 if (ch === Dot) {
35848 else if (ch === Slash) {
36267 var ch = text.charCodeAt(i);
36268 if (ch === 13 /* CarriageReturn */ || ch === 10 /* LineFeed */) {
36269 …if (ch === 13 /* CarriageReturn */ && i + 1 < text.length && text.charCodeAt(i + 1) === 10 /* Line…