Searched defs:unicode (Results 1 - 24 of 24) sorted by relevance

/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/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 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...]
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...]
/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/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/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/formats/html/
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());
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...]
/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/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;
H A Djni_util.c434 jchar unicode = str[i]; local
435 if (unicode <= 0x00ff)
436 result[i] = (char)unicode;
499 jchar unicode = str[i]; local
500 if (unicode <= 0x007f )
501 result[i] = (char)unicode;
/openjdk7/jdk/test/sun/net/idn/
H A DTestData.java274 public char[] unicode; field in class:TestData.ErrorCase
282 unicode = uniIn;
345 /* correct ACE-prefix followed by 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/src/share/classes/com/sun/security/ntlm/
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/sun/nio/cs/OLD/
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);
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')
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DISO2022.java429 private int unicodeToNative(char unicode, byte ebyte[]) argument
433 char convChar[] = {unicode};
/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/hotspot/src/share/vm/prims/
H A Djni.h607 (JNIEnv *env, const jchar *unicode, jsize len);
1597 jstring NewString(const jchar *unicode, jsize len) { argument
1598 return functions->NewString(this,unicode,len);
/openjdk7/jdk/src/share/javavm/export/
H A Djni.h607 (JNIEnv *env, const jchar *unicode, jsize len);
1597 jstring NewString(const jchar *unicode, jsize len) { argument
1598 return functions->NewString(this,unicode,len);
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp205 Handle java_lang_String::basic_create_from_unicode(jchar* unicode, int length, bool tenured, TRAPS) { argument
209 buffer->char_at_put(index, unicode[index]);
214 Handle java_lang_String::create_from_unicode(jchar* unicode, int length, TRAPS) { argument
215 return basic_create_from_unicode(unicode, length, false, CHECK_NH);
218 Handle java_lang_String::create_tenured_from_unicode(jchar* unicode, int length, TRAPS) { argument
219 return basic_create_from_unicode(unicode, length, JavaObjectsInPerm, CHECK_NH);
222 oop java_lang_String::create_oop_from_unicode(jchar* unicode, int length, TRAPS) { argument
223 Handle h_obj = basic_create_from_unicode(unicode, length, false, CHECK_0);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp2936 // windows virtual key, scancode, java virtual key, and unicode
2944 WCHAR unicode; member in struct:DynPrimaryKeymapEntry
2975 // 1. Map windows VK to ANSI character (cannot map to unicode
3287 // After the call, a table will have a unicode associated with a windows virtual keycode
3289 // derive java keycode from it, and anyway we will pass this unicode value
3330 dynPrimaryKeymap[i].unicode = 0;
3343 // unicode
3344 dynPrimaryKeymap[i].unicode = wc[0];
3346 // Convert unicode to java keycode.
3358 dynPrimaryKeymap[i].unicode
[all...]

Completed in 362 milliseconds