Searched refs:unicode (Results 1 - 25 of 39) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/font/
H A DCharToGlyphMapper.java64 public int charToGlyph(char unicode) { argument
67 chars[0] = unicode;
72 public int charToGlyph(int unicode) { argument
75 chars[0] = unicode;
H A DCompositeGlyphMapper.java86 private int getCachedGlyphCode(int unicode) { argument
87 if (unicode >= MAXUNICODE) {
91 if ((gmap = glyphMaps[unicode >> 8]) == null) {
94 return gmap[unicode & 0xff];
97 private void setCachedGlyphCode(int unicode, int glyphCode) { argument
98 if (unicode >= MAXUNICODE) {
101 int index0 = unicode >> 8;
108 glyphMaps[index0][unicode & 0xff] = glyphCode;
120 private final int convertToGlyph(int unicode) { argument
123 if (!hasExcludes || !font.isExcludedChar(slot, unicode)) {
158 charToGlyph(int unicode) argument
167 charToGlyph(int unicode, int prefSlot) argument
178 charToGlyph(char unicode) argument
[all...]
H A DTrueTypeGlyphMapper.java112 private final char remapJAChar(char unicode) { argument
113 switch (unicode) {
123 default: return unicode;
126 private final int remapJAIntChar(int unicode) { argument
127 switch (unicode) {
137 default: return unicode;
141 public int charToGlyph(char unicode) { argument
143 unicode = remapJAChar(unicode);
145 int glyph = getGlyphFromCMAP(unicode);
152 charToGlyph(int unicode) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DNativeGlyphMapper.java36 * This needs work to distinguish between XMap's translation from unicode
62 public int charToGlyph(char unicode) { argument
63 if (unicode >= xmapper.convertedGlyphs.length) {
66 return xmapper.convertedGlyphs[unicode];
70 public int charToGlyph(int unicode) { argument
71 if (unicode >= xmapper.convertedGlyphs.length) {
74 return xmapper.convertedGlyphs[unicode];
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0212_MS5022X_Decoder.java47 char unicode = _index2[_index1[byte1] >> 4].charAt(n);
48 if (unicode == '\u0000')
51 return unicode;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSingleIndexWriter.java95 Character unicode = (Character)((indexbuilder.elements())[i]);
96 addContents(unicode, indexbuilder.getMemberList(unicode), divTree);
106 * Add links for all the Index Files per unicode character.
112 String unicode = (indexbuilder.elements())[i].toString();
114 getHyperLink("#_" + unicode + "_", new StringContent(unicode)));
H A DSplitIndexWriter.java36 * destination directory and will generate separate file for each unicode index.
45 * Previous unicode character index in the built index.
50 * Next unicode character in the built index.
74 * the members starting with the particular unicode character.
110 * @param unicode Unicode character referring to the character for the
113 protected void generateIndexFile(Character unicode) throws IOException { argument
115 unicode.toString());
122 addContents(unicode, indexbuilder.getMemberList(unicode), divTree);
131 * Add links for all the Index Files per unicode characte
[all...]
H A DAllClassesFrameWriter.java138 Character unicode = (Character)((indexbuilder.elements())[i]);
139 addContents(indexbuilder.getMemberList(unicode), wantFrames, content);
H A DAbstractIndexWriter.java49 * The index of all the members with unicode character.
94 * Add the member information for the unicode character along with the
97 * @param unicode Unicode for which member list information to be generated
98 * @param memberlist List of members for the unicode character
101 protected void addContents(Character unicode, List<? extends Doc> memberlist, argument
103 contentTree.addContent(getMarkerAnchor("_" + unicode + "_"));
104 Content headContent = new StringContent(unicode.toString());
/openjdk7/jdk/make/tools/GenerateCharacter/
H A DCharacter.c.template49 unicode ch;
50 unicode last_ch = 0;
/openjdk7/jdk/src/share/native/common/
H A Dcheck_format.c33 typedef unsigned short unicode; typedef
56 static int isJvmIdentifier(unicode ch) {
71 static unicode
77 unicode result = 0x80; /* default bad result; */
132 unicode ch;
133 unicode last_ch = 0;
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCCharToGlyphMapper.java119 public synchronized int charToGlyph(char unicode) { argument
120 final int glyph = cache.get(unicode);
123 final char[] unicodeArray = new char[] { unicode };
127 cache.put(unicode, glyphArray[0]);
132 public synchronized int charToGlyph(int unicode) { argument
133 if (unicode >= 0x10000) {
136 int base = unicode - 0x10000;
142 return charToGlyph((char)unicode);
156 // replaced on-the-fly using CoreText substitution; the negative unicode
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCoreTextSupport.m95 * or the negative unicode value if we know the character can be hot-substituted.
112 UniChar unicode = unicodes[i];
113 const CTFontRef fallback = JRSFontCreateFallbackFontForCharacters((CTFontRef)font->fFont, &unicode, 1);
115 CTFontGetGlyphsForCharacters(fallback, &unicode, &glyph, 1);
120 glyphsAsInts[i] = -unicode; // set the glyph code to the negative unicode value
146 * Translates a Java glyph code int (might be a negative unicode value) into a CGGlyph/CTFontRef pair
165 // Breakup a 32 bit unicode value into the component surrogate pairs
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DClient.java135 boolean unicode = (inputFlags & 1) == 1;
136 String domainFromServer = r.readSecurityBuffer(12, unicode);
148 p.writeSecurityBuffer(28, domain, unicode);
149 p.writeSecurityBuffer(36, username, unicode);
150 p.writeSecurityBuffer(44, hostname, unicode);
H A DNTLM.java179 String readSecurityBuffer(int offset, boolean unicode) argument
184 raw, unicode ? "UnicodeLittleUnmarked" : "ISO8859_1");
246 void writeSecurityBuffer(int offset, String str, boolean unicode) { argument
249 unicode ? "UnicodeLittleUnmarked" : "ISO8859_1"));
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DLauncher.c50 jchar unicode = str[i]; local
51 if (unicode <= 0x00ff)
52 result[i] = unicode;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodingInfo.java44 * range of unicode values (<code>m_first</code> to
47 * If the unicode point is before that explicit range, that is it
170 // The unicode value is before the range
183 // The unicode value is after the range
196 // The unicode value is in the range we explitly handle
217 // The unicode value is before the range
230 // The unicode value is after the range
243 // The unicode value is in the range we explitly handle
265 * m_first through m_last is the range of unicode
273 * m_explFirst through m_explLast is the range of unicode
[all...]
/openjdk7/jdk/test/tools/launcher/
H A DUnicodeTest.java56 manifestClassName = "ClassB" + unicode;
87 private static final String unicode = arabic + s_chinese + t_chinese field in class:UnicodeTest
98 { "UTF-8", unicode, "" },
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DIndexBuilder.java184 * for that particular unicode character.
195 Character unicode = new Character(ch);
196 List<Doc> list = indexmap.get(unicode);
199 indexmap.put(unicode, list);
/openjdk7/jdk/test/sun/nio/cs/
H A DEUC_TW_OLD.java32398 getNative(char unicode) argument
32502 unicodeToEUC(char unicode, char lowSurr, byte ebyte[]) argument
[all...]
/openjdk7/jdk/test/java/lang/instrument/BootClassPath/
H A DSetup.java115 private static final String unicode = arabic + s_chinese + t_chinese field in class:Setup
126 { "UTF-8", unicode, "" },
/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteISO2022.java84 private int unicodeToNative(char unicode, byte ebyte[]) argument
89 char convChar[] = {unicode};
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM970_OLD.java1278 // only return true if input char was unicode null - all others are
1650 private byte[] encodeHangul(char unicode) { argument
1656 // first we convert the unicode to its byte representation
1658 index = index1[((unicode & mask1) >> shift)] + (unicode & mask2);
H A DIBM933_OLD.java2679 // only return true if input char was unicode null - all others are
3106 protected byte[] encodeHangul(char unicode) { argument
3112 // first we convert the unicode to its byte representation
3113 index = index1[((unicode & mask1) >> shift)] + (unicode & mask2);
3119 if (theBytes == 0 && unicode != '\u0000')
H A DIBM949_OLD.java1550 // only return true if input char was unicode null - all others are
1927 private byte[] encodeHangul(char unicode) { argument
1933 // first we convert the unicode to its byte representation
1935 index = index1[((unicode & mask1) >> shift)] + (unicode & mask2);

Completed in 230 milliseconds

12