HomeSort by relevance Sort by last modified time
    Searched defs:unichar (Results 1 - 9 of 9) sorted by null

  /external/skia/gm/
coloremoji_blendmodes.cpp 136 SkUnichar unichar = SkUTF8_ToUnichar(text); variable
137 canvas->drawText(&unichar, 4, x+ w/10.f, y + 7.f*h/8.f, textP);
  /toolchain/binutils/binutils-2.25/binutils/
winduni.h 45 typedef unsigned short unichar; typedef
58 extern void unicode_from_ascii (rc_uint_type *, unichar **, const char *);
61 extern void ascii_from_unicode (rc_uint_type *, const unichar *, char **);
64 extern unichar *unichar_dup (const unichar *);
67 extern unichar *unichar_dup_uppercase (const unichar *);
69 /* The count of unichar elements. */
70 extern rc_uint_type unichar_len (const unichar *);
73 extern void unicode_print (FILE *, const unichar *, rc_uint_type)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
UnicodeChart.java 85 int unichar = base + i; local
86 chars[i] = (char)unichar;
88 canvas.drawText(Integer.toHexString(unichar),
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 14 typedef unsigned short unichar; typedef
15 typedef UInt16 UniChar;
91 - (id)initWithCharactersNoCopy:(unichar *)characters length:(NSUInteger)length freeWhenDone:(BOOL)freeBuffer;
92 - (id)initWithCharacters:(const unichar *)characters length:(NSUInteger)length;
127 extern CFMutableStringRef CFStringCreateMutableWithExternalCharactersNoCopy(CFAllocatorRef alloc, UniChar *chars, CFIndex numChars, CFIndex capacity, CFAllocatorRef externalCharactersAllocator);
  /frameworks/base/core/jni/android/graphics/
HarfBuzzNGFaceSkia.cpp 92 SkUnichar unichar = unicode; local
95 paint->textToGlyphs(&unichar, sizeof(unichar), &glyph16);
  /frameworks/base/libs/hwui/tests/common/
TestUtils.cpp 94 int32_t unichar = utf32_from_utf8_at(text, 4, 0, &nextIndex); local
97 glyph_t glyph = autoCache.getCache()->unicharToGlyph(unichar);
98 autoCache.getCache()->unicharToGlyph(unichar);
106 SkGlyph skGlyph = autoCache.getCache()->getUnicharMetrics(unichar);
  /external/skia/samplecode/
SampleCCPRGeometry.cpp 317 SkUnichar unichar; local
318 if (SampleCode::CharQ(*evt, &unichar)) {
319 if (unichar >= '1' && unichar <= '7') {
320 fMode = Mode(unichar - '1');
327 if (unichar == 'D') {
  /external/google-breakpad/src/processor/
minidump.cc 249 // 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 >> 6)
    [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp 1531 SkUnichar unichar = SkUTF8_NextUnicharWithError(&textPtr, textEnd); local
    [all...]

Completed in 201 milliseconds