Lines Matching refs:head

316         head = readShortTable(in, HEAD_LENGTH);
319 tableSizes[i] = head[i + 1] - head[i];
358 writeShortTable(dataOut, head);
1260 return getString(head[INDEX_appendedfontpath]);
1264 return getString(head[INDEX_version]);
1279 /* The binary font configuration file begins with a short[] "head", which
1354 private static short[] head;
1470 System.out.println(" " + ii + " : " + head[ii]);
1551 short[] fbsIDs = getShortArray(head[INDEX_fallbackScripts]);
1556 System.out.println(" " + getString(head[INDEX_appendedfontpath]));
1558 System.out.println(" " + getString(head[INDEX_version]));
1674 return getShortArray(head[INDEX_fallbackScripts]);
1793 head = new short[HEAD_LENGTH];
1794 head[INDEX_scriptIDs] = (short)HEAD_LENGTH;
1803 head[INDEX_scriptFonts] = (short)(head[INDEX_scriptIDs] + table_scriptIDs.length);
1824 head[INDEX_elcIDs] = (short)(head[INDEX_scriptFonts] + table_scriptFonts.length);
1828 head[INDEX_sequences] = (short)(head[INDEX_elcIDs] + table_elcIDs.length);
1853 head[INDEX_fontfileNameIDs] = (short)(head[INDEX_sequences] + table_sequences.length);
1857 head[INDEX_componentFontNameIDs] = (short)(head[INDEX_fontfileNameIDs] + table_fontfileNameIDs.length);
1861 head[INDEX_filenames] = (short)(head[INDEX_componentFontNameIDs] + table_componentFontNameIDs.length);
1871 head[INDEX_awtfontpaths] = (short)(head[INDEX_filenames] + table_filenames.length);
1878 head[INDEX_exclusions] = (short)(head[INDEX_awtfontpaths] + table_awtfontpaths.length);
1891 head[INDEX_proportionals] = (short)(head[INDEX_exclusions] + table_exclusions.length);
1900 head[INDEX_scriptFontsMotif] = (short)(head[INDEX_proportionals] + table_proportionals.length);
1928 head[INDEX_alphabeticSuffix] = (short)(head[INDEX_scriptFontsMotif] + table_scriptFontsMotif.length);
1936 //(15)short[] fallbackScriptIDs; just put the ID in head
1937 head[INDEX_fallbackScripts] = getShortArrayID(fallbackScriptIDs);
1940 head[INDEX_appendedfontpath] = getStringID(appendedfontpath);
1943 head[INDEX_version] = getStringID(version);
1946 head[INDEX_stringIDs] = (short)(head[INDEX_alphabeticSuffix] + table_alphabeticSuffix.length);
1951 head[INDEX_stringTable] = (short)(head[INDEX_stringIDs] + stringIDNum + 1);
1954 head[INDEX_TABLEEND] = (short)(head[INDEX_stringTable] + stringTable.length());