Home
last modified time | relevance | path

Searched refs:WKChar (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebKit2/Shared/API/c/
DWKString.h41 typedef unsigned short WKChar; typedef
43 typedef wchar_t WKChar;
53 WK_EXPORT size_t WKStringGetCharacters(WKStringRef string, WKChar* buffer, size_t bufferLength);
DWKString.cpp55 size_t WKStringGetCharacters(WKStringRef stringRef, WKChar* buffer, size_t bufferLength) in WKStringGetCharacters()
57 …COMPILE_ASSERT(sizeof(WKChar) == sizeof(UChar), WKStringGetCharacters_sizeof_WKChar_matches_UChar); in WKStringGetCharacters()
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
DWKString.cpp53 WKChar* uniBuffer = new WKChar[maxSize+1]; in TEST()
57 WKChar helloBuffer[] = { 'h', 'e', 'l', 'l', 'o' }; in TEST()
/external/webkit/Source/WebKit2/
DChangeLog3276 …Note that WKChar, which is returned by WKStringGetCharactersPtr(), is defined the same way we defi…
3281 …* Shared/API/c/WKString.h: Define WKChar and added WKStringGetLength() and WKStringGetCharactersPt…