HomeSort by relevance Sort by last modified time
    Searched refs:UniChar (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/JavaScriptCore/API/
JSStringRefCF.cpp 45 OwnArrayPtr<UniChar> buffer(new UniChar[length]);
47 COMPILE_ASSERT(sizeof(UniChar) == sizeof(UChar), unichar_and_uchar_must_be_same_size);
56 return CFStringCreateWithCharacters(alloc, reinterpret_cast<const UniChar*>(string->characters()), string->length());
  /external/webkit/WebCore/platform/text/cf/
StringCF.cpp 40 CFStringGetCharacters(str, CFRangeMake(0, size), (UniChar*)buffer.data());
StringImplCF.cpp 138 return CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar*>(m_data), m_length);
144 CFStringRef string = CFStringCreateWithCharactersNoCopy(allocator, reinterpret_cast<const UniChar*>(m_data), m_length, kCFAllocatorNull);
  /external/webkit/JavaScriptGlue/
JSUtils.cpp 58 UniChar* buffer = (UniChar*)malloc(sizeof(UniChar) * len);
76 return CFStringCreateWithCharacters(0, (const UniChar*)inUString.data(), inUString.size());
286 const UniChar* uniChars = (const UniChar*)ustr.data();
  /external/webkit/WebCore/platform/mac/
WebCoreSystemInterface.mm 40 NSFont* (*wkGetFontInLanguageForCharacter)(NSFont*, UniChar);
93 void (*wkGetGlyphsForCharacters)(CGFontRef, const UniChar[], CGGlyph[], size_t);
96 OSStatus (*wkConvertCharToGlyphs)(void* styleGroup, const UniChar*, unsigned numCharacters, void* glyphs);
WebCoreSystemInterface.h 107 extern NSFont* (*wkGetFontInLanguageForCharacter)(NSFont*, UniChar);
151 extern void (*wkGetGlyphsForCharacters)(CGFontRef, const UniChar[], CGGlyph[], size_t);
156 extern OSStatus (*wkConvertCharToGlyphs)(void* styleGroup, const UniChar*, unsigned numCharacters, void* glyphs);
  /external/grub/stage2/
jfs.h 106 typedef u16 UniChar;
285 UniChar name[15]; /* 30: */
298 UniChar name[11]; /* 22: 2-byte aligned */
310 UniChar name[11]; /* 22: 2-byte aligned */
fsys_jfs.c 200 uni2ansi (UniChar *uni, char *ansi, int len)
  /external/webkit/WebKit/win/
WebTextRenderer.cpp 94 RetainPtr<CFStringRef> string(AdoptCF, CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar*>(fontFilePath), static_cast<CFIndex>(wcslen(fontFilePath))));
MarshallingHelpers.cpp 56 CFStringRef cfPath = CFStringCreateWithCharactersNoCopy(0, (const UniChar*)string.characters(), string.length(), kCFAllocatorNull);
84 return CFStringCreateWithCharacters(0, (const UniChar*)(str ? str : TEXT("")), SysStringLen(str));
89 return CFStringCreateWithCharacters(0, (const UniChar*)(str ? str : TEXT("")), (CFIndex)(str ? wcslen(str) : 0));
97 const UniChar* uniChars = CFStringGetCharactersPtr(str);
104 CFStringGetCharacters(str, CFRangeMake(0, length), (UniChar*)bstr);
WebPreferences.cpp 295 const UniChar* uniChars = CFStringGetCharactersPtr(str);
340 CFStringCreateWithCharactersNoCopy(0, (UniChar*)_wcsdup(value), (CFIndex)_tcslen(value), kCFAllocatorMalloc));
    [all...]
  /external/webkit/WebCore/platform/win/
BString.cpp 103 const UniChar* uniChars = CFStringGetCharactersPtr(cfstr);
111 CFStringGetCharacters(cfstr, CFRangeMake(0, length), (UniChar*)m_bstr);
  /external/webkit/WebKit/mac/Misc/
WebNSDataExtras.m 48 UniChar *uniCharPtr = NULL;
54 UniChar ch = CFStringGetCharacterAtIndex(name, i);
75 uniCharPtr = CFAllocatorAllocate(NULL, len * sizeof(UniChar), 0);
WebKitNSStringExtras.mm 52 static BOOL canUseFastRenderer(const UniChar *buffer, unsigned length)
67 Vector<UniChar, 2048> buffer(length);
135 Vector<UniChar, 2048> buffer(length);
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 116 NSFont *WKGetFontInLanguageForCharacter(NSFont *font, UniChar ch);
136 void WKGetGlyphsForCharacters(CGFontRef, const UniChar[], CGGlyph[], size_t);
139 OSStatus WKConvertCharToGlyphs(void *styleGroup, const UniChar *characters, unsigned numCharacters, WKGlyphVectorRef glyphs);
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 47 typedef void (*CGFontGetGlyphsForUnicharsPtr)(CGFontRef, const UniChar[], const CGGlyph[], size_t);
  /external/webkit/WebCore/platform/text/mac/
TextCodecMac.cpp 208 UniChar buffer[ConversionBufferSize];
307 UniChar low = CFStringGetCharacterAtIndex(cfs.get(), startPos + charactersConverted);
  /external/webkit/JavaScriptCore/API/tests/
testapi.c 104 UniChar* cfBuffer = (UniChar*)malloc(cfLength * sizeof(UniChar));
108 if (memcmp(jsBuffer, cfBuffer, cfLength * sizeof(UniChar)) != 0) {
816 UniChar singleUniChar = 65; // Capital A
833 UniChar* buffer = (UniChar*)malloc(cfStringLength * sizeof(UniChar));
    [all...]
  /external/chromium/third_party/icu/source/test/perf/ubrkperf/
ubrkperf.cpp 88 UniChar* filePtr = text;
  /external/icu4c/test/perf/ubrkperf/
ubrkperf.cpp 88 UniChar* filePtr = text;
  /external/webkit/WebCore/platform/graphics/win/
FontPlatformDataCGWin.cpp 121 RetainPtr<CFStringRef> fullName(AdoptCF, CFStringCreateWithCharacters(NULL, (const UniChar*)faceName, wcslen(faceName)));
QTMovieWin.cpp 661 CFStringRef urlStringRef = CFStringCreateWithCharacters(kCFAllocatorDefault, reinterpret_cast<const UniChar*>(url), len);
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginEventHandlerCocoa.mm 281 unsigned length = size / sizeof(UniChar);
282 Vector<UniChar, 16> characters(length);
  /external/qemu/distrib/sdl-1.2.12/src/video/os2fslib/
SDL_os2fslib.c 177 static UniChar NativeCharToUniChar(int chcode)
179 UniChar ucResult = (UniChar) chcode;
185 UniChar aucTo[10];
186 UniChar *pucTo;
202 iToCount = sizeof(UniChar) * 2;
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTree.cpp 779 CFStringGetCharacters(persistentUserStyleSheetLocation.get(), CFRangeMake(0, CFStringGetLength(persistentUserStyleSheetLocation.get())), (UniChar *)urlCharacters.data());
881 UniChar* buffer = new UniChar[length];
    [all...]

Completed in 451 milliseconds

1 2