/external/icu4c/common/ |
locbased.cpp | 12 #include "cstring.h"
|
ucat.c | 13 #include "cstring.h"
|
ustrfmt.c | 8 #include "cstring.h"
|
/external/webkit/JavaScriptCore/runtime/ |
UString.cpp | 60 CString::CString(const char* c) 67 CString::CString(const char* c, size_t length) 75 CString::CString(const CString& b) 85 CString::~CString() 90 CString CString::adopt(char* c, size_t length [all...] |
UString.h | 44 class CString { 46 CString() 52 CString(const char*); 53 CString(const char*, size_t); 54 CString(const CString&); 56 ~CString(); 58 static CString adopt(char*, size_t); // buffer should be allocated with new[]. 60 CString& append(const CString&) [all...] |
/external/webkit/WebCore/platform/network/chromium/ |
ResourceResponse.h | 30 #include "CString.h" 53 const CString& getSecurityInfo() const { return m_securityInfo; } 54 void setSecurityInfo(const CString& securityInfo) 89 CString m_securityInfo;
|
/external/webkit/WebCore/plugins/ |
PluginStream.h | 30 #include "CString.h" 73 void sendJavaScriptStream(const KURL& requestURL, const CString& resultString); 116 CString m_headers; 117 CString m_path;
|
/external/webkit/WebKit/chromium/public/ |
WebCString.h | 37 namespace WebCore { class CString; } 87 WebCString(const WebCore::CString&); 88 WebCString& operator=(const WebCore::CString&); 89 operator WebCore::CString() const;
|
/external/webkit/WebCore/wml/ |
WMLGoElement.cpp | 26 #include "CString.h" 162 data = createFormData(CString()); 177 RefPtr<FormData> data = createFormData(CString()); 184 PassRefPtr<FormData> WMLGoElement::createFormData(const CString& boundary) 186 CString key; 187 CString value;
|
/external/webkit/WebKit/gtk/webkit/ |
webkitwebhistoryitem.cpp | 29 #include "CString.h" 57 WebCore::CString title; 58 WebCore::CString alternateTitle; 59 WebCore::CString uri; 60 WebCore::CString originalUri; 116 priv->title = WebCore::CString(); 117 priv->alternateTitle = WebCore::CString(); 118 priv->uri = WebCore::CString(); 119 priv->originalUri = WebCore::CString(); 472 WebCore::CString t = item->target().utf8() [all...] |
/external/webkit/WebCore/platform/ |
KURLGooglePrivate.h | 34 #include "CString.h" 81 void setUtf8(const CString&); 82 void setAscii(const CString&); 91 const CString& utf8String() const { return m_utf8; } 101 CString m_utf8;
|
/external/webkit/WebCore/platform/qt/ |
FileSystemQt.cpp | 35 #include "CString.h" 118 CString openTemporaryFile(const char* prefix, PlatformFileHandle& handle) 128 return CString();
|
/external/webkit/WebCore/platform/text/qt/ |
TextCodecQt.cpp | 30 #include "CString.h" 128 CString TextCodecQt::encode(const UChar* characters, size_t length, UnencodableHandling) 136 return CString(ba.constData(), ba.length());
|
/external/webkit/WebCore/platform/win/ |
FileSystemWin.cpp | 33 #include "CString.h" 106 CString fileSystemRepresentation(const String&) 190 CString openTemporaryFile(const char*, PlatformFileHandle& handle) 197 return CString(); 201 return CString(); 232 return CString();
|
/external/webkit/WebCore/platform/wince/ |
FileSystemWince.cpp | 34 #include "CString.h" 128 CString fileSystemRepresentation(const String&) 171 CString openTemporaryFile(const char*, PlatformFileHandle& handle) 178 return CString(); 182 return CString(); 213 return CString();
|
/external/webkit/WebCore/history/qt/ |
HistoryItemQt.cpp | 23 #include "CString.h" 63 m_formData = FormData::create(CString(formData));
|
/external/webkit/WebCore/platform/network/curl/ |
ResourceHandleManager.h | 31 #include "CString.h" 89 const CString m_certificatePath;
|
/external/webkit/WebKit/chromium/src/ |
WebURLError.cpp | 34 #include "CString.h" 63 CString spec = unreachableURL.spec();
|
/external/chromium/third_party/icu/source/common/ |
stringpiece.cpp | 11 #include "cstring.h"
|
ucat.c | 13 #include "cstring.h"
|
ustrfmt.c | 8 #include "cstring.h"
|
/external/chromium/third_party/icu/source/tools/genrb/ |
errmsg.c | 20 #include "cstring.h"
|
/external/icu4c/tools/genrb/ |
errmsg.c | 20 #include "cstring.h"
|
/external/webkit/JavaScriptCore/profiler/ |
ProfileGenerator.cpp | 78 CString name = callIdentifier.m_name.UTF8String(); 79 CString url = callIdentifier.m_url.UTF8String(); 93 CString name = callIdentifier.m_name.UTF8String(); 94 CString url = callIdentifier.m_url.UTF8String();
|
/external/webkit/WebCore/bridge/c/ |
c_utility.cpp | 77 CString cstring = ustring.UTF8String(); local 78 NPString string = { (const NPUTF8*)cstring.c_str(), static_cast<uint32_t>(cstring.size()) };
|