Searched defs:unichar (Results 1 - 5 of 5) sorted by relevance

/external/skia/example/
H A DHelloWorld.cpp180 bool HelloWorldWindow::onHandleChar(SkUnichar unichar) { argument
181 if (' ' == unichar) {
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-objc.h14 typedef unsigned short unichar; typedef
91 - (id)initWithCharactersNoCopy:(unichar *)characters length:(NSUInteger)length freeWhenDone:(BOOL)freeBuffer;
92 - (id)initWithCharacters:(const unichar *)characters length:(NSUInteger)length;
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-normalize.cc110 output_char (hb_buffer_t *buffer, hb_codepoint_t unichar, hb_codepoint_t glyph) argument
113 buffer->output_glyph (unichar);
/external/google-breakpad/src/processor/
H A Dminidump.cc249 // Convert the input value (in_word) into a Unicode code point (unichar).
250 uint32_t unichar; local
257 unichar = (in_word - 0xd7c0) << 10;
271 unichar |= in_word & 0x03ff;
275 unichar = in_word;
278 // Convert the Unicode code point (unichar) into its UTF-8 representation,
280 if (unichar < 0x80) {
281 (*out) += static_cast<char>(unichar);
282 } else if (unichar < 0x800) {
283 (*out) += 0xc0 | static_cast<char>(unichar >>
[all...]
/external/skia/src/ports/
H A DSkFontHost_mac.cpp1466 UniChar unichar = 0; local
1469 if (CTFontGetGlyphsForCharacters(ctFont, &unichar, &glyph, 1)) {
1470 out[glyph] = unichar;
1473 if (++unichar == 0) {
1517 UniChar unichar = static_cast<UniChar>((i << 3) + j); local
1518 if (mask & (1 << j) && CTFontGetGlyphsForCharacters(ctFont, &unichar, &glyph, 1)) {
1519 out[glyph] = unichar;

Completed in 1901 milliseconds