Lines Matching refs:charCodeAt
14 revLookup[code.charCodeAt(i)] = i
19 revLookup['-'.charCodeAt(0)] = 62
20 revLookup['_'.charCodeAt(0)] = 63
71 (revLookup[b64.charCodeAt(i)] << 18) |
72 (revLookup[b64.charCodeAt(i + 1)] << 12) |
73 (revLookup[b64.charCodeAt(i + 2)] << 6) |
74 revLookup[b64.charCodeAt(i + 3)]
82 (revLookup[b64.charCodeAt(i)] << 2) |
83 (revLookup[b64.charCodeAt(i + 1)] >> 4)
89 (revLookup[b64.charCodeAt(i)] << 10) |
90 (revLookup[b64.charCodeAt(i + 1)] << 4) |
91 (revLookup[b64.charCodeAt(i + 2)] >> 2)