Searched defs:utf8 (Results 76 - 86 of 86) sorted by path

1234

/external/webkit/Source/WebCore/bridge/jni/
H A DJavaString.h61 const char* utf8() const { return m_impl.utf8(); } function in class:JSC::Bindings::JavaString
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaStringJSC.h65 const char* utf8() const function in class:JSC::Bindings::JavaStringImpl
69 m_utf8String = UString(m_impl).utf8();
/external/webkit/Source/WebCore/bridge/jni/v8/
H A DJavaStringV8.h51 const char* utf8() const function in class:JSC::Bindings::JavaStringImpl
54 m_utf8String = String(m_impl).utf8();
/external/webkit/Source/WebCore/platform/
H A DKURLGoogle.cpp664 m_url.setUtf8(urlWithoutPort.utf8());
803 CString cstr = str.utf8();
843 CString utf8 = UTF8Encoding().encode( local
847 const char* input = utf8.data();
848 int inputLength = utf8.length();
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DFontCacheAndroid.cpp91 char* utf8 = (char*)sk_malloc_throw(bytes + 1); local
93 (void)SkUTF16_ToUTF8(uni, utf16.length(), utf8);
94 utf8[bytes] = 0;
95 return utf8;
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp282 gchar* utf8 = convertUniCharToUTF8(run.characters(), run.length(), 0, run.length()); local
283 pango_layout_set_text(layout, utf8, -1);
292 char* start = g_utf8_offset_to_pointer(utf8, from);
294 int ranges[] = {start - utf8, end - utf8};
323 g_free(utf8);
362 gchar* utf8 = convertUniCharToUTF8(run.characters(), run.length(), 0, run.length()); local
363 pango_layout_set_text(layout, utf8, -1);
368 g_free(utf8);
387 gchar* utf8 local
412 gchar* utf8 = convertUniCharToUTF8(run.characters(), run.length(), 0, run.length()); local
[all...]
/external/webkit/Source/WebCore/websockets/
H A DWebSocketChannel.cpp98 LOG(Network, "WebSocketChannel %p send %s", this, msg.utf8().data());
103 CString utf8 = msg.utf8(); local
104 buf.append(utf8.data(), utf8.length());
/external/webkit/Source/WebKit/chromium/src/
H A DWebString.cpp74 WebCString WebString::utf8() const function in class:WebKit::WebString
76 return WTF::String(m_private).utf8();
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe.cpp969 const QByteArray utf8 = html.toUtf8(); local
970 WTF::RefPtr<WebCore::SharedBuffer> data = WebCore::SharedBuffer::create(utf8.constData(), utf8.length());
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.cpp1061 const QByteArray utf8 = html.toUtf8(); local
1062 WTF::RefPtr<WebCore::SharedBuffer> data = WebCore::SharedBuffer::create(utf8.constData(), utf8.length());
/external/webkit/Tools/DumpRenderTree/gtk/
H A DWorkQueueItemGtk.cpp34 gchar* utf8 = (gchar*)g_malloc(dataSize); local
35 JSStringGetUTF8CString(jsString, utf8, dataSize);
37 return utf8;

Completed in 528 milliseconds

1234