Home
last modified time | relevance | path

Searched refs:readHexChar (Results 1 – 7 of 7) sorted by relevance

/plugin/asciidocjs/node_modules/acorn/src/
Dtokenize.js513 code = this.readHexChar(this.input.indexOf('}', this.pos) - this.pos)
517 code = this.readHexChar(4)
604 case 120: return String.fromCharCode(this.readHexChar(2)) // 'x'
634 pp.readHexChar = function(len) { function in pp
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dtokenize.js525 code = this.readHexChar(this.input.indexOf('}', this.pos) - this.pos)
529 code = this.readHexChar(4)
616 case 120: return String.fromCharCode(this.readHexChar(2)) // 'x'
646 pp.readHexChar = function(len) { function in pp
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dacorn.es.js2903 code = this.readHexChar(this.input.indexOf('}', this.pos) - this.pos)
2907 code = this.readHexChar(4)
2998 case 120: return String.fromCharCode(this.readHexChar(2)) // 'x'
3028 pp$7.readHexChar = function(len) { function
Dacorn.js2909 code = this.readHexChar(this.input.indexOf('}', this.pos) - this.pos)
2913 code = this.readHexChar(4)
3004 case 120: return String.fromCharCode(this.readHexChar(2)) // 'x'
3034 pp$7.readHexChar = function(len) {
/plugin/asciidocjs/node_modules/acorn/dist/
Dacorn.es.js3160 code = this.readHexChar(this.input.indexOf('}', this.pos) - this.pos)
3164 code = this.readHexChar(4)
3255 case 120: return String.fromCharCode(this.readHexChar(2)) // 'x'
3285 pp$7.readHexChar = function(len) { function
Dacorn.js3166 code = this.readHexChar(this.input.indexOf('}', this.pos) - this.pos)
3170 code = this.readHexChar(4)
3261 case 120: return String.fromCharCode(this.readHexChar(2)) // 'x'
3291 pp$7.readHexChar = function(len) {
/plugin/asciidocjs/node_modules/babylon/lib/
Dindex.js1286 … code = this.readHexChar(this.input.indexOf("}", this.state.pos) - this.state.pos, throwOnInvalid);
1299 code = this.readHexChar(4, throwOnInvalid);
1394 var code = this.readHexChar(2, throwOnInvalid);
1449 Tokenizer.prototype.readHexChar = function readHexChar(len, throwOnInvalid) { method in Tokenizer