Lines Matching refs:STRING1
31 var STRING1 = C.STRING1 = 0x61;
146 this.tState = STRING1;
157 }else if (this.tState === STRING1){ // After open quote
203 if(n === 0x22){ this.appendStringChar(n); this.tState = STRING1;
204 }else if(n === 0x5c){ this.appendStringChar(BACK_SLASH); this.tState = STRING1;
205 }else if(n === 0x2f){ this.appendStringChar(FORWARD_SLASH); this.tState = STRING1;
206 }else if(n === 0x62){ this.appendStringChar(BACKSPACE); this.tState = STRING1;
207 }else if(n === 0x66){ this.appendStringChar(FORM_FEED); this.tState = STRING1;
208 }else if(n === 0x6e){ this.appendStringChar(NEWLINE); this.tState = STRING1;
209 }else if(n === 0x72){ this.appendStringChar(CARRIAGE_RETURN); this.tState = STRING1;
210 }else if(n === 0x74){ this.appendStringChar(TAB); this.tState = STRING1;
235 this.tState = STRING1;