Searched refs:unicode (Results 26 - 50 of 62) sorted by relevance

123

/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-font.cc401 inline bool get_nominal_glyph (hb_codepoint_t unicode, argument
404 return this->get_glyph_func (this->get_glyph_data, unicode, glyph);
407 inline bool get_variation_glyph (hb_codepoint_t unicode, argument
411 switch (this->uvs_table->get_glyph_variant (unicode,
420 return get_nominal_glyph (unicode, glyph);
510 hb_codepoint_t unicode,
516 return ot_font->cmap.get_nominal_glyph (unicode, glyph);
522 hb_codepoint_t unicode,
528 return ot_font->cmap.get_variation_glyph (unicode, variation_selector, glyph);
508 hb_ot_get_nominal_glyph(hb_font_t *font HB_UNUSED, void *font_data, hb_codepoint_t unicode, hb_codepoint_t *glyph, void *user_data HB_UNUSED) argument
520 hb_ot_get_variation_glyph(hb_font_t *font HB_UNUSED, void *font_data, hb_codepoint_t unicode, hb_codepoint_t variation_selector, hb_codepoint_t *glyph, void *user_data HB_UNUSED) argument
H A Dhb-font-private.hh191 inline bool has_glyph (hb_codepoint_t unicode) argument
194 return get_nominal_glyph (unicode, &glyph);
197 inline hb_bool_t get_nominal_glyph (hb_codepoint_t unicode, argument
202 unicode, glyph,
206 inline hb_bool_t get_variation_glyph (hb_codepoint_t unicode, hb_codepoint_t variation_selector, argument
211 unicode, variation_selector, glyph,
H A Dhb-ot-shape-complex-hebrew.cc71 bool found = (bool) c->unicode->compose (a, b, ab);
H A Dhb-font.h120 hb_codepoint_t unicode,
124 hb_codepoint_t unicode, hb_codepoint_t variation_selector,
406 hb_codepoint_t unicode,
410 hb_codepoint_t unicode, hb_codepoint_t variation_selector,
462 hb_codepoint_t unicode, hb_codepoint_t variation_selector,
H A Dhb-ft.cc171 hb_codepoint_t unicode,
176 unsigned int g = FT_Get_Char_Index (ft_font->ft_face, unicode);
180 if (unlikely (ft_font->symbol) && unicode <= 0x00FFu)
187 g = FT_Get_Char_Index (ft_font->ft_face, 0xF000u + unicode);
202 hb_codepoint_t unicode,
208 unsigned int g = FT_Face_GetCharVariantIndex (ft_font->ft_face, unicode, variation_selector);
169 hb_ft_get_nominal_glyph(hb_font_t *font HB_UNUSED, void *font_data, hb_codepoint_t unicode, hb_codepoint_t *glyph, void *user_data HB_UNUSED) argument
200 hb_ft_get_variation_glyph(hb_font_t *font HB_UNUSED, void *font_data, hb_codepoint_t unicode, hb_codepoint_t variation_selector, hb_codepoint_t *glyph, void *user_data HB_UNUSED) argument
H A Dhb-buffer.cc222 hb_unicode_funcs_destroy (unicode);
223 unicode = hb_unicode_funcs_get_default ();
649 hb_script_t script = unicode->script (info[i].codepoint);
770 hb_unicode_funcs_destroy (buffer->unicode);
879 hb_unicode_funcs_destroy (buffer->unicode);
880 buffer->unicode = unicode_funcs;
896 return buffer->unicode;
H A Dhb-ot-shape-complex-use.cc599 return (bool) c->unicode->decompose (ab, a, b);
609 if (HB_UNICODE_GENERAL_CATEGORY_IS_MARK (c->unicode->general_category (a)))
612 return (bool)c->unicode->compose (a, b, ab);
H A Dhb-ot-shape-complex-hangul.cc124 hb_codepoint_t unicode)
127 return hb_font_get_glyph (font, unicode, 0, &glyph) && hb_font_get_glyph_h_advance (font, glyph) == 0;
123 is_zero_width_char(hb_font_t *font, hb_codepoint_t unicode) argument
H A Dhb-ot-shape.cc40 #include "hb-unicode-private.hh"
342 hb_unicode_funcs_t *unicode = buffer->unicode; local
348 hb_codepoint_t codepoint = unicode->mirroring (info[i].codepoint);
854 hb_unicode_funcs_t *unicode,
864 hb_codepoint_t m = unicode->mirroring (u);
894 add_char (font, buffer->unicode, mirror, info[i].codepoint, glyphs);
853 add_char(hb_font_t *font, hb_unicode_funcs_t *unicode, hb_bool_t mirror, hb_codepoint_t u, hb_set_t *glyphs) argument
H A Dhb-buffer-private.hh35 #include "hb-unicode-private.hh"
78 hb_unicode_funcs_t *unicode; /* Unicode functions */ member in struct:hb_buffer_t
/openjdk10/jdk/test/sun/nio/cs/
H A DEUC_TW_OLD.java32396 getNative(char unicode) argument
32500 unicodeToEUC(char unicode, char lowSurr, byte ebyte[]) argument
[all...]
/openjdk10/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, "" },
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DAllClassesFrameWriter.java138 for (Character unicode : indexbuilder.index()) {
139 addContents(indexbuilder.getMemberList(unicode), wantFrames, content);
H A DAbstractIndexWriter.java70 * The index of all the members with unicode character.
101 * Add the member information for the unicode character along with the
105 * @param memberlist List of members for the unicode character
175 String unicode = uc.toString();
176 contentTree.addContent(getMarkerAnchorForIndex(unicode));
177 Content headContent = new StringContent(unicode);
429 * @param unicode the string that needs to be converted to valid HTML name.
432 public String getNameForIndex(String unicode) { argument
433 return "I:" + getName(unicode);
H A DHtmlConfiguration.java540 Character unicode = (tagLabel.length() == 0)
543 List<SearchIndexItem> list = tagSearchIndexMap.get(unicode);
546 tagSearchIndexMap.put(unicode, list);
/openjdk10/jdk/test/tools/launcher/
H A DUnicodeTest.java158 (hasUnicodeFileSystem() ? unicode : commandLineClassNameSuffix);
183 private static final String unicode = arabic + s_chinese + t_chinese field in class:UnicodeTest
194 { "UTF-8", unicode, "" },
/openjdk10/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);
/openjdk10/jdk/src/java.base/share/classes/com/sun/security/ntlm/
H A DNTLM.java182 String readSecurityBuffer(int offset, boolean unicode) argument
187 raw, unicode ? "UnicodeLittleUnmarked" : "ISO8859_1");
249 void writeSecurityBuffer(int offset, String str, boolean unicode) { argument
252 unicode ? "UnicodeLittleUnmarked" : "ISO8859_1"));
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/
H A DRegExpScanner.java607 // them to unicode does it though.
609 unicode(ch0 % 32, sb);
655 // Convert octal escape to unicode escape if inside character class.
662 unicode(octalValue, sb);
677 // No backreferences in character classes. Encode as unicode escape or literal char sequence
953 private static void unicode(final int value, final StringBuilder buffer) { method in class:RegExpScanner
962 // Convert what would have been a backreference into a unicode escape, or a number literal, or both.
979 unicode(octalValue, buffer);
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/
H A Dhb-jdk-font.cc42 hb_codepoint_t unicode,
51 hb_codepoint_t u = (variation_selector==0) ? unicode : variation_selector;
40 hb_jdk_get_glyph(hb_font_t *font HB_UNUSED, void *font_data, hb_codepoint_t unicode, hb_codepoint_t variation_selector, hb_codepoint_t *glyph, void *user_data HB_UNUSED) argument
/openjdk10/jdk/src/java.base/share/native/libjava/
H A Djni_util.c501 jchar unicode = str[i]; local
502 if (unicode <= 0x00ff)
503 result[i] = (char)unicode;
566 jchar unicode = str[i]; local
567 if (unicode <= 0x007f )
568 result[i] = (char)unicode;
/openjdk10/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 */
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DIDLNameTranslatorImpl.java169 // XXXX is the unicode value in hex of the char (1.3.2.4).
517 String unicode = charToUnicodeRepresentation(nextChar);
518 mangledIdentifier.append(unicode);

Completed in 406 milliseconds

123