Lines Matching refs:unicode

10305     var unicode = c.charCodeAt(0);
10307 …if (unicode > 0x20 && unicode < 0x7F && [0x22, 0x23, 0x3C, 0x3E, 0x3F, 0x60].indexOf(unicode) === …
10315 var unicode = c.charCodeAt(0);
10317 … if (unicode > 0x20 && unicode < 0x7F && [0x22, 0x23, 0x3C, 0x3E, 0x60].indexOf(unicode) === -1) {
31840 var glyphUnicode = glyph.unicode;
32424 var unicode = (0, _unicode.getUnicodeForGlyph)(glyphName, glyphsUnicodeMap);
32426 if (unicode !== -1) {
32427 code = unicode;
34797 var unicode = (0, _unicode.getUnicodeForGlyph)(glyphName, glyphsUnicodeMap);
34799 if (unicode !== -1) {
34800 toUnicode[charCode] = String.fromCharCode(unicode);
34840 var unicode = (0, _unicode.getUnicodeForGlyph)(name, glyphsUnicodeMap);
34842 if (unicode !== -1) {
34844 if (glyphsUnicodeMap[key] === unicode) {
34855 function Glyph(fontChar, unicode, accent, width, vmetric, operatorListId, isSpace, isInFont) {
34857 this.unicode = unicode;
34866 …Glyph.prototype.matchesForCache = function (fontChar, unicode, accent, width, vmetric, operatorLis…
34867 …return this.fontChar === fontChar && this.unicode === unicode && this.accent === accent && this.wi…
35316 unicode;
35319 unicode = (0, _unicode.getUnicodeForGlyph)(encoding[i], glyphsUnicodeMap);
35321 if (unicode !== -1) {
35322 toFontChar[i] = unicode;
35327 unicode = (0, _unicode.getUnicodeForGlyph)(differences[charCode], glyphsUnicodeMap);
35329 if (unicode !== -1) {
35330 toFontChar[+charCode] = unicode;
35699 var charCode, unicode;
35760 unicode = (0, _unicode.getUnicodeForGlyph)(glyphName, glyphsUnicodeMap);
35762 if (unicode !== -1) {
35763 unicodeCharCode = unicode;
37294 … var unicode = this.toUnicode.get(charcode) || this.fallbackToUnicode.get(charcode) || charcode;
37296 if (typeof unicode === 'number') {
37297 unicode = String.fromCharCode(unicode);
37326 …if (!glyph || !glyph.matchesForCache(fontChar, unicode, accent, width, vmetric, operatorListId, is…
37327 … glyph = new Glyph(fontChar, unicode, accent, width, vmetric, operatorListId, isSpace, isInFont);
45061 var unicode = glyphsUnicodeMap[name];
45062 if (unicode !== undefined) {
45063 return unicode;
45078 unicode = parseInt(hexStr, 16);
45079 if (unicode >= 0) {
45080 return unicode;
47152 function lookupCmap(ranges, unicode) {
47153 var code = unicode.codePointAt(0),
47829 value: function getPathJs(unicode) {
47830 var cmap = lookupCmap(this.cmap, unicode);
47889 value: function hasBuiltPath(unicode) {
47890 var cmap = lookupCmap(this.cmap, unicode);