SYMBOL INDEX (249 symbols across 26 files) FILE: lib/cli.js class ActionFontAdd (line 11) | class ActionFontAdd extends argparse.Action { method call (line 12) | call(parser, namespace, value/*, option_string*/) { class ActionFontRangeAdd (line 20) | class ActionFontRangeAdd extends argparse.Action { method call (line 21) | call(parser, namespace, value, option_string) { class ActionFontStoreTrue (line 34) | class ActionFontStoreTrue extends argparse.Action { method constructor (line 35) | constructor(options) { method call (line 43) | call(parser, namespace, _value, option_string) { class RawTextHelpFormatter2 (line 57) | class RawTextHelpFormatter2 extends argparse.RawDescriptionHelpFormatter { method _split_lines (line 59) | _split_lines(text, width) { function unicode_point (line 65) | function unicode_point(str) { function range (line 80) | function range(str) { function positive_int (line 105) | function positive_int(str) { function removeFlagAndValue (line 304) | function removeFlagAndValue(flag, args_for_opts_string) { FILE: lib/convert.js function convert (line 23) | async function convert(args) { FILE: lib/font/cmap_build_subtables.js function estimate_format0_tiny_size (line 22) | function estimate_format0_tiny_size(/*start_code, end_code*/) { function estimate_format0_size (line 26) | function estimate_format0_size(start_code, end_code) { function estimate_sparse_tiny_size (line 34) | function estimate_sparse_tiny_size(count) { FILE: lib/font/compress.js function count_same (line 5) | function count_same(arr, offset) { FILE: lib/font/font.js class Font (line 12) | class Font { method constructor (line 13) | constructor(fontData, options) { method init_tables (line 75) | init_tables() { method createIDs (line 83) | createIDs() { method hasKerning (line 94) | hasKerning() { method widthToInt (line 104) | widthToInt(val) { method kernToFP (line 111) | kernToFP(val) { method toBin (line 115) | toBin() { FILE: lib/font/table_cmap.js constant O_SIZE (line 8) | const O_SIZE = 0; constant O_LABEL (line 9) | const O_LABEL = O_SIZE + 4; constant O_COUNT (line 10) | const O_COUNT = O_LABEL + 4; constant HEAD_LENGTH (line 12) | const HEAD_LENGTH = O_COUNT + 4; constant SUB_FORMAT_0 (line 14) | const SUB_FORMAT_0 = 0; constant SUB_FORMAT_0_TINY (line 15) | const SUB_FORMAT_0_TINY = 2; constant SUB_FORMAT_SPARSE (line 16) | const SUB_FORMAT_SPARSE = 1; constant SUB_FORMAT_SPARSE_TINY (line 17) | const SUB_FORMAT_SPARSE_TINY = 3; class Cmap (line 19) | class Cmap { method constructor (line 20) | constructor(font) { method compile (line 30) | compile() { method createSubHeader (line 78) | createSubHeader(rangeStart, rangeLen, glyphIdOffset, total, type) { method subHeaderUpdateOffset (line 91) | subHeaderUpdateOffset(header, val) { method subHeaderUpdateAllOffsets (line 95) | subHeaderUpdateAllOffsets() { method glyphByCode (line 105) | glyphByCode(code) { method collect_format0_data (line 109) | collect_format0_data(min_code, max_code, start_glyph_id) { method create_format0_data (line 130) | create_format0_data(min_code, max_code, start_glyph_id) { method collect_sparse_data (line 136) | collect_sparse_data(codepoints, start_glyph_id) { method create_sparse_data (line 160) | create_sparse_data(codepoints, start_glyph_id) { method create_sparse_tiny_data (line 169) | create_sparse_tiny_data(codepoints, start_glyph_id) { method toBin (line 175) | toBin() { FILE: lib/font/table_glyf.js constant O_SIZE (line 9) | const O_SIZE = 0; constant O_LABEL (line 10) | const O_LABEL = O_SIZE + 4; constant HEAD_LENGTH (line 12) | const HEAD_LENGTH = O_LABEL + 4; class Glyf (line 14) | class Glyf { method constructor (line 15) | constructor(font) { method pixelsToBpp (line 25) | pixelsToBpp(pixels) { method widthToStride (line 30) | widthToStride(width) { method compileGlyph (line 41) | compileGlyph(glyph) { method storePixels (line 83) | storePixels(bitStream, pixels) { method addPadding (line 88) | addPadding(bitStream, pad) { method storePixelsRaw (line 95) | storePixelsRaw(bitStream, pixels) { method storePixelsCompressed (line 117) | storePixelsCompressed(bitStream, pixels) { method compile (line 128) | compile() { method toBin (line 144) | toBin() { method getSize (line 160) | getSize() { method getOffset (line 166) | getOffset(id) { method getCompressionCode (line 176) | getCompressionCode() { FILE: lib/font/table_head.js constant O_SIZE (line 7) | const O_SIZE = 0; constant O_LABEL (line 8) | const O_LABEL = O_SIZE + 4; constant O_VERSION (line 9) | const O_VERSION = O_LABEL + 4; constant O_TABLES (line 10) | const O_TABLES = O_VERSION + 4; constant O_FONT_SIZE (line 11) | const O_FONT_SIZE = O_TABLES + 2; constant O_ASCENT (line 12) | const O_ASCENT = O_FONT_SIZE + 2; constant O_DESCENT (line 13) | const O_DESCENT = O_ASCENT + 2; constant O_TYPO_ASCENT (line 14) | const O_TYPO_ASCENT = O_DESCENT + 2; constant O_TYPO_DESCENT (line 15) | const O_TYPO_DESCENT = O_TYPO_ASCENT + 2; constant O_TYPO_LINE_GAP (line 16) | const O_TYPO_LINE_GAP = O_TYPO_DESCENT + 2; constant O_MIN_Y (line 17) | const O_MIN_Y = O_TYPO_LINE_GAP + 2; constant O_MAX_Y (line 18) | const O_MAX_Y = O_MIN_Y + 2; constant O_DEF_ADVANCE_WIDTH (line 19) | const O_DEF_ADVANCE_WIDTH = O_MAX_Y + 2; constant O_KERNING_SCALE (line 20) | const O_KERNING_SCALE = O_DEF_ADVANCE_WIDTH + 2; constant O_INDEX_TO_LOC_FORMAT (line 21) | const O_INDEX_TO_LOC_FORMAT = O_KERNING_SCALE + 2; constant O_GLYPH_ID_FORMAT (line 22) | const O_GLYPH_ID_FORMAT = O_INDEX_TO_LOC_FORMAT + 1; constant O_ADVANCE_WIDTH_FORMAT (line 23) | const O_ADVANCE_WIDTH_FORMAT = O_GLYPH_ID_FORMAT + 1; constant O_BITS_PER_PIXEL (line 24) | const O_BITS_PER_PIXEL = O_ADVANCE_WIDTH_FORMAT + 1; constant O_XY_BITS (line 25) | const O_XY_BITS = O_BITS_PER_PIXEL + 1; constant O_WH_BITS (line 26) | const O_WH_BITS = O_XY_BITS + 1; constant O_ADVANCE_WIDTH_BITS (line 27) | const O_ADVANCE_WIDTH_BITS = O_WH_BITS + 1; constant O_COMPRESSION_ID (line 28) | const O_COMPRESSION_ID = O_ADVANCE_WIDTH_BITS + 1; constant O_SUBPIXELS_MODE (line 29) | const O_SUBPIXELS_MODE = O_COMPRESSION_ID + 1; constant O_TMP_RESERVED1 (line 30) | const O_TMP_RESERVED1 = O_SUBPIXELS_MODE + 1; constant O_UNDERLINE_POSITION (line 31) | const O_UNDERLINE_POSITION = O_TMP_RESERVED1 + 1; constant O_UNDERLINE_THICKNESS (line 32) | const O_UNDERLINE_THICKNESS = O_UNDERLINE_POSITION + 2; constant HEAD_LENGTH (line 33) | const HEAD_LENGTH = u.align4(O_UNDERLINE_THICKNESS + 2); class Head (line 35) | class Head { method constructor (line 36) | constructor(font) { method toBin (line 42) | toBin() { FILE: lib/font/table_kern.js constant O_SIZE (line 7) | const O_SIZE = 0; constant O_LABEL (line 8) | const O_LABEL = O_SIZE + 4; constant O_FORMAT (line 9) | const O_FORMAT = O_LABEL + 4; constant HEAD_LENGTH (line 11) | const HEAD_LENGTH = u.align4(O_FORMAT + 1); class Kern (line 13) | class Kern { method constructor (line 14) | constructor(font) { method collect_format0_data (line 20) | collect_format0_data() { method create_format0_data (line 40) | create_format0_data() { method collect_format3_data (line 87) | collect_format3_data() { method create_format3_data (line 178) | create_format3_data() { method should_use_format3 (line 206) | should_use_format3() { method toBin (line 222) | toBin() { FILE: lib/font/table_loca.js constant O_SIZE (line 7) | const O_SIZE = 0; constant O_LABEL (line 8) | const O_LABEL = O_SIZE + 4; constant O_COUNT (line 9) | const O_COUNT = O_LABEL + 4; constant HEAD_LENGTH (line 11) | const HEAD_LENGTH = O_COUNT + 4; class Loca (line 13) | class Loca { method constructor (line 14) | constructor(font) { method toBin (line 19) | toBin() { FILE: lib/freetype/build/ft_render.js function locateFile (line 9) | function locateFile(path){if(Module["locateFile"]){return Module["locate... function logExceptionOnExit (line 9) | function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toL... function getValue (line 9) | function getValue(ptr,type,noSafe){type=type||"i8";if(type.charAt(type.l... function assert (line 9) | function assert(condition,text){if(!condition){abort(text)}} function getCFunc (line 9) | function getCFunc(ident){var func=Module["_"+ident];return func} function ccall (line 9) | function ccall(ident,returnType,argTypes,args,opts){var toC={"string":fu... function cwrap (line 9) | function cwrap(ident,returnType,argTypes,opts){argTypes=argTypes||[];var... function UTF8ArrayToString (line 9) | function UTF8ArrayToString(heap,idx,maxBytesToRead){var endIdx=idx+maxBy... function UTF8ToString (line 9) | function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(H... function stringToUTF8Array (line 9) | function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxByte... function stringToUTF8 (line 9) | function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Arr... function lengthBytesUTF8 (line 9) | function lengthBytesUTF8(str){var len=0;for(var i=0;i... function stringToUTF32 (line 9) | function stringToUTF32(str,outPtr,maxBytesToWrite){if(maxBytesToWrite===... function lengthBytesUTF32 (line 9) | function lengthBytesUTF32(str){var len=0;for(var i=0;i0){x+=multiple-x%multiple}ret... function updateGlobalBufferAndViews (line 9) | function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP... function keepRuntimeAlive (line 9) | function keepRuntimeAlive(){return noExitRuntime||runtimeKeepaliveCounte... function preRun (line 9) | function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="func... function initRuntime (line 9) | function initRuntime(){runtimeInitialized=true;callRuntimeCallbacks(__AT... function postRun (line 9) | function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="f... function addOnPreRun (line 9) | function addOnPreRun(cb){__ATPRERUN__.unshift(cb)} function addOnInit (line 9) | function addOnInit(cb){__ATINIT__.unshift(cb)} function addOnPostRun (line 9) | function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)} function addRunDependency (line 9) | function addRunDependency(id){runDependencies++;if(Module["monitorRunDep... function removeRunDependency (line 9) | function removeRunDependency(id){runDependencies--;if(Module["monitorRun... function abort (line 9) | function abort(what){{if(Module["onAbort"]){Module["onAbort"](what)}}wha... function isDataURI (line 9) | function isDataURI(filename){return filename.startsWith(dataURIPrefix)} function isFileURI (line 9) | function isFileURI(filename){return filename.startsWith("file://")} function getBinary (line 9) | function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return... function getBinaryPromise (line 9) | function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRON... function createWasm (line 9) | function createWasm(){var info={"a":asmLibraryArg};function receiveInsta... function callRuntimeCallbacks (line 9) | function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var c... function getWasmTableEntry (line 9) | function getWasmTableEntry(funcPtr){return wasmTable.get(funcPtr)} function __embind_register_bigint (line 9) | function __embind_register_bigint(primitiveType,name,size,minRange,maxRa... function getShiftFromSize (line 9) | function getShiftFromSize(size){switch(size){case 1:return 0;case 2:retu... function embind_init_charCodes (line 9) | function embind_init_charCodes(){var codes=new Array(256);for(var i=0;i<... function readLatin1String (line 9) | function readLatin1String(ptr){var ret="";var c=ptr;while(HEAPU8[c]){ret... function makeLegalFunctionName (line 9) | function makeLegalFunctionName(name){if(undefined===name){return"_unknow... function createNamedFunction (line 9) | function createNamedFunction(name,body){name=makeLegalFunctionName(name)... function extendError (line 9) | function extendError(baseErrorType,errorName){var errorClass=createNamed... function throwBindingError (line 9) | function throwBindingError(message){throw new BindingError(message)} function registerType (line 9) | function registerType(rawType,registeredInstance,options){options=option... function __embind_register_bool (line 9) | function __embind_register_bool(rawType,name,size,trueValue,falseValue){... function __emval_decref (line 9) | function __emval_decref(handle){if(handle>4&&0===--emval_handle_array[ha... function count_emval_handles (line 9) | function count_emval_handles(){var count=0;for(var i=5;i