Lines Matching refs:ttc
35840 function readTrueTypeCollectionHeader(ttc) { argument
35841 var ttcTag = (0, _util.bytesToString)(ttc.getBytes(4));
35843 var majorVersion = ttc.getUint16();
35844 var minorVersion = ttc.getUint16();
35845 var numFonts = ttc.getInt32() >>> 0;
35849 offsetTable.push(ttc.getInt32() >>> 0);
35865 header.dsigTag = ttc.getInt32() >>> 0;
35866 header.dsigLength = ttc.getInt32() >>> 0;
35867 header.dsigOffset = ttc.getInt32() >>> 0;
35874 function readTrueTypeCollectionData(ttc, fontName) { argument
35875 var _readTrueTypeCollecti = readTrueTypeCollectionHeader(ttc),
35880 ttc.pos = (ttc.start || 0) + offsetTable[i];
35881 var potentialHeader = readOpenTypeHeader(ttc);
35882 var potentialTables = readTables(ttc, potentialHeader.numTables);