Lines Matching refs:onToken
134 if(n === 0x7b){ this.onToken(LEFT_BRACE, "{"); // {
135 }else if(n === 0x7d){ this.onToken(RIGHT_BRACE, "}"); // }
136 }else if(n === 0x5b){ this.onToken(LEFT_BRACKET, "["); // [
137 }else if(n === 0x5d){ this.onToken(RIGHT_BRACKET, "]"); // ]
138 }else if(n === 0x3a){ this.onToken(COLON, ":"); // :
139 }else if(n === 0x2c){ this.onToken(COMMA, ","); // ,
190 this.onToken(STRING, this.string);
272 this.onToken(STRING, this.string);
274 this.onToken(NUMBER, result);
289 if (buffer[i] === 0x65) { this.tState = START; this.onToken(TRUE, true); this.offset+= 3; }
301 if (buffer[i] === 0x65) { this.tState = START; this.onToken(FALSE, false); this.offset+= 4; }
310 if (buffer[i] === 0x6c) { this.tState = START; this.onToken(NULL, null); this.offset += 3; }
315 proto.onToken = function (token, value) { function
342 proto.onToken = function (token, value) {