/external/webkit/WebKit/mac/Misc/ |
WebNSEventExtras.m | 33 -(BOOL)_web_isKeyEvent:(unichar)key 43 unichar c = [chars characterAtIndex:0]; 52 const unichar deleteKey = NSDeleteCharacter; 53 const unichar deleteForwardKey = NSDeleteFunctionKey; 59 const unichar escapeKey = 0x001b; 70 const unichar enterKey = NSEnterCharacter; 71 const unichar returnKey = NSCarriageReturnCharacter; 77 const unichar tabKey = 0x0009; 78 const unichar shiftTabKey = 0x0019;
|
WebNSEventExtras.h | 33 -(BOOL)_web_isKeyEvent:(unichar)key;
|
/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/icu4c/common/ |
ucnv_lmb.c | 385 FindLMBCSUniRange(UChar uniChar) 389 while (uniChar > pTable->uniEndRange) 394 if (uniChar >= pTable->uniStartRange) 755 LMBCSConvertUni(ulmbcs_byte_t * pLMBCS, UChar uniChar) 758 uint8_t LowCh = (uint8_t)(uniChar & 0x00FF); 759 uint8_t HighCh = (uint8_t)(uniChar >> 8); 784 UChar uniChar; 823 uniChar = *(args->source); 831 if (((uniChar > ULMBCS_C0END) && (uniChar < ULMBCS_C1START)) | [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
UnicodeChart.java | 86 int unichar = base + i; local 87 chars[i] = (char)unichar; 89 canvas.drawText(Integer.toHexString(unichar),
|
/external/skia/include/core/ |
SkUtils.h | 79 /** Return the number of bytes need to convert a unichar 93 // returns the current unichar and then moves past it (*p++) 95 // this guy backs up to the previus unichar value, and returns it (*--p)
|
/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/webkit/WebCore/platform/text/mac/ |
TextBoundaries.mm | 35 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(chars) 47 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(chars)
|
/external/skia/emoji/ |
EmojiFont.cpp | 145 uint16_t EmojiFont::UnicharToGlyph(int32_t unichar) { 147 if (unichar >= GMOJI_PUA_MIN && unichar <= GMOJI_PUA_MAX) { 149 uint16_t relative = unichar - GMOJI_PUA_MIN;
|
EmojiFont.h | 47 static uint16_t UnicharToGlyph(int32_t unichar);
|
/external/webkit/WebCore/platform/android/ |
KeyEventAndroid.cpp | 213 PlatformKeyboardEvent::PlatformKeyboardEvent(int keyCode, UChar32 unichar, 216 , m_text(singleCharacterString(unichar)) 217 , m_unmodifiedText(singleCharacterString(unichar)) 229 , m_unichar(unichar)
|
/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);
|
/development/samples/BrowserPlugin/jni/form/ |
FormPlugin.h | 63 void handleTextInput(TextInput* input, ANPKeyCode keyCode, int32_t unichar);
|
FormPlugin.cpp | 272 evt->data.key.unichar); 331 void FormPlugin::handleTextInput(TextInput* input, ANPKeyCode keyCode, int32_t unichar) { 350 input->text[input->charPtr] = static_cast<char>(unichar); 353 gLogI.log(kDebug_ANPLogType, "----%p Text: %c", instance, unichar);
|
/external/webkit/WebCore/platform/ |
PlatformKeyboardEvent.h | 148 PlatformKeyboardEvent(int keyCode, UChar32 unichar, int repeatCount, 150 UChar32 unichar() const { return m_unichar; } function in class:WebCore::PlatformKeyboardEvent 190 /* The originall unichar value. Sometimes the m_text/m_unmodifiedText
|
/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/bridge/objc/ |
objc_utility.mm | 201 unichar *chars; 203 chars = (unichar *)malloc(sizeof(unichar)*length); 365 unichar *buffer = new unichar[length];
|
/external/webkit/WebKit/win/ |
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);
|
WebTextRenderer.cpp | 94 RetainPtr<CFStringRef> string(AdoptCF, CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar*>(fontFilePath), static_cast<CFIndex>(wcslen(fontFilePath))));
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
EventSendingController.mm | 511 const unichar ch = NSLeftArrowFunctionKey; 514 const unichar ch = NSRightArrowFunctionKey; 517 const unichar ch = NSUpArrowFunctionKey; 520 const unichar ch = NSDownArrowFunctionKey; 523 const unichar ch = NSPageUpFunctionKey; 526 const unichar ch = NSPageDownFunctionKey; 529 const unichar ch = NSHomeFunctionKey; 532 const unichar ch = NSEndFunctionKey; 535 const unichar ch = 0x7f; 543 const unichar ch = NSF1FunctionKey + (i - 1) [all...] |
/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/WebKit/mac/WebView/ |
WebTextIterator.mm | 89 - (const unichar *)currentTextPointer
|
/external/webkit/WebCore/platform/win/ |
BString.cpp | 103 const UniChar* uniChars = CFStringGetCharactersPtr(cfstr); 111 CFStringGetCharacters(cfstr, CFRangeMake(0, length), (UniChar*)m_bstr);
|