/openjdk7/jdk/src/solaris/classes/sun/font/ |
H A D | NativeGlyphMapper.java | 36 * 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 D | CharToGlyphMapper.java | 64 public int charToGlyph(char unicode) { argument 67 chars[0] = unicode; 72 public int charToGlyph(int unicode) { argument 75 chars[0] = unicode;
|
H A D | TrueTypeGlyphMapper.java | 112 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 D | CompositeGlyphMapper.java | 86 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 D | Setup.java | 115 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 D | Launcher.c | 50 jchar unicode = str[i]; local 51 if (unicode <= 0x00ff) 52 result[i] = unicode;
|
/openjdk7/jdk/test/tools/launcher/ |
H A D | UnicodeTest.java | 56 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 D | AbstractIndexWriter.java | 49 * 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 D | SplitIndexWriter.java | 36 * 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 D | CCharToGlyphMapper.java | 119 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 D | check_format.c | 33 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 D | jni_util.c | 434 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 D | TestData.java | 274 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 D | CharToByteISO2022.java | 84 private int unicodeToNative(char unicode, byte ebyte[]) argument 89 char convChar[] = {unicode};
|
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/ |
H A D | NTLM.java | 179 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 D | IBM949_OLD.java | 1550 // 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 D | IBM970_OLD.java | 1278 // 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 D | IBM933_OLD.java | 2679 // 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 D | ISO2022.java | 429 private int unicodeToNative(char unicode, byte ebyte[]) argument 433 char convChar[] = {unicode};
|
/openjdk7/jdk/test/sun/nio/cs/ |
H A D | EUC_TW_OLD.java | 32398 getNative(char unicode) argument 32502 unicodeToEUC(char unicode, char lowSurr, byte ebyte[]) argument [all...] |
/openjdk7/hotspot/src/share/vm/prims/ |
H A D | jni.h | 607 (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 D | jni.h | 607 (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 D | javaClasses.cpp | 205 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 D | awt_Component.cpp | 2936 // 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...] |