Lines Matching refs:format

35978         var format = font.getUint16();
35985 if (format === 0) {
36000 } else if (format === 4) {
36064 } else if (format === 6) {
36077 (0, _util.warn)('cmap table has unsupported format: ' + format);
36473 var format = font.getUint16();
36476 if (format !== 0 || length < FORMAT_0_HEADER_LENGTH) {
38649 var format = bytes[pos++];
38654 switch (format) {
38693 return new CFFCharset(false, format, charset, raw);
38699 var format, i, ii;
38714 format = pos;
38726 format = bytes[pos++];
38728 switch (format & 0x7f) {
38754 throw new _util.FormatError("Unknown encoding format: ".concat(format, " in CFF"));
38759 if (format & 0x80) {
38767 format = format & 0x7f;
38768 return new CFFEncoding(predefined, format, encoding, raw);
38772 var format = bytes[pos++];
38776 switch (format) {
38808 throw new _util.FormatError("parseFDSelect: Unknown format \"".concat(format, "\"."));
38815 return new CFFFDSelect(format, fdSelect);
39093 function CFFCharset(predefined, format, charset, raw) {
39095 this.format = format;
39106 function CFFEncoding(predefined, format, encoding, raw) {
39108 this.format = format;
39117 function CFFFDSelect(format, fdSelect) {
39118 this.format = format;
39239 topDictTracker.setEntryLocation('Encoding', [cff.encoding.format], output);
39555 var format = fdSelect.format;
39558 switch (format) {
39561 out[0] = format;
39572 var ranges = [format, 0, 0, start >> 8 & 0xFF, start & 0xFF, lastFD];
47047 var format = getUshort(data, start + offset);
47050 if (format === 4) {
47088 } else if (format === 12) {
47106 throw new _util.FormatError("unsupported cmap: ".concat(format));