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

/external/skia/example/
H A DHelloWorld.cpp156 bool HelloWorldWindow::onHandleChar(SkUnichar unichar) { argument
157 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.cc98 output_char (hb_buffer_t *buffer, hb_codepoint_t unichar, hb_codepoint_t glyph) argument
101 buffer->output_glyph (unichar); /* This is very confusing indeed. */
/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/pdf/
H A DSkPDFDevice.cpp1362 SkUnichar unichar = SkUTF8_NextUnicharWithError(&textPtr, textEnd); local
1363 if (unichar < 0) {
1368 unichar != map_glyph(glyphToUnicode, glyphs[index])) // test single Unichar map
1374 SkPDFUtils::WriteUTF16beHex(out, unichar); // first char
1376 unichar = SkUTF8_NextUnicharWithError(&textPtr, textEnd);
1377 if (unichar < 0) {
1380 SkPDFUtils::WriteUTF16beHex(out, unichar);
/external/skia/src/ports/
H A DSkFontHost_mac.cpp1402 UniChar unichar = 0; local
1405 if (CTFontGetGlyphsForCharacters(ctFont, &unichar, &glyph, 1)) {
1406 out[glyph] = unichar;
1409 if (++unichar == 0) {
1452 UniChar unichar = static_cast<UniChar>((i << 3) + j); local
1453 if (mask & (1 << j) && CTFontGetGlyphsForCharacters(ctFont, &unichar, &glyph, 1)) {
1454 out[glyph] = unichar;

Completed in 210 milliseconds