/external/webkit/WebCore/platform/android/ |
FileSystemAndroid.cpp | 31 #include "CString.h" 46 CString fileSystemRepresentation(const String& path) 51 CString openTemporaryFile(const char* prefix, PlatformFileHandle& handle) 54 CString filename; 70 return CString(); 108 CString cpath = path.utf8(); 109 CString cfilter = filter.utf8();
|
/external/webkit/WebCore/platform/network/ |
HTTPHeaderMap.cpp | 65 static unsigned hash(const char* cString) 67 return CaseFoldingHash::hash(cString, strlen(cString)); 70 static bool equal(const AtomicString& key, const char* cString) 72 return equalIgnoringCase(key, cString); 75 static void translate(AtomicString& location, const char* cString, unsigned /*hash*/) 77 location = AtomicString(cString);
|
FormDataBuilder.cpp | 28 #include "CString.h" 106 static inline void append(Vector<char>& buffer, const CString& string) 111 static void appendQuotedString(Vector<char>& buffer, const CString& string) 177 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name) 188 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary) 208 void FormDataBuilder::addContentTypeToMultiPartHeader(Vector<char>& buffer, const CString& mimeType) 219 void FormDataBuilder::addKeyValuePairAsFormData(Vector<char>& buffer, const CString& key, const CString& value) 229 void FormDataBuilder::encodeStringAsFormData(Vector<char>& buffer, const CString& string [all...] |
/external/wpa_supplicant/wpa_gui-qt4/ |
wpagui.ui | 215 <cstring>fileExitAction</cstring> 229 <cstring>helpContentsAction</cstring> 246 <cstring>helpIndexAction</cstring> 263 <cstring>helpAboutAction</cstring> 277 <cstring>fileEventHistoryAction</cstring> [all...] |
/external/webkit/WebCore/platform/text/ |
TextCodecUTF16.cpp | 29 #include "CString.h" 116 CString TextCodecUTF16::encode(const UChar* characters, size_t length, UnencodableHandling) 119 CString string = CString::newUninitialized(length * 2, bytes); 121 // FIXME: CString is not a reasonable data structure for encoded UTF-16, which will have 122 // null characters inside it. Perhaps the result of encode should not be a CString?
|
TextCodecUserDefined.cpp | 29 #include "CString.h" 65 static CString encodeComplexUserDefined(const UChar* characters, size_t length, UnencodableHandling handling) 88 return CString(bytes, resultLength); 91 CString TextCodecUserDefined::encode(const UChar* characters, size_t length, UnencodableHandling handling) 94 CString string = CString::newUninitialized(length, bytes);
|
/external/webkit/WebCore/bridge/jni/v8/ |
JavaStringV8.h | 29 #include "CString.h" 45 m_utf8String = WebCore::CString(cs, size); 54 WebCore::CString m_utf8String;
|
/external/webkit/WebCore/plugins/ |
PluginDebug.h | 31 #include "CString.h" 42 CString prettyNameForNPNVariable(NPNVariable variable); 43 CString prettyNameForNPPVariable(NPPVariable variable, void* value);
|
PluginStream.h | 30 #include "CString.h" 73 void sendJavaScriptStream(const KURL& requestURL, const CString& resultString); 116 CString m_headers; 117 CString m_path;
|
/external/icu4c/test/letest/ |
letsutil.h | 33 void freeCString(char *cString);
|
/external/icu4c/tools/genrb/ |
genrb.h | 22 #include "cstring.h"
|
/external/webkit/WebCore/wml/ |
WMLPostfieldElement.cpp | 26 #include "CString.h" 70 static inline CString encodedString(const TextEncoding& encoding, const String& data) 75 void WMLPostfieldElement::encodeData(const TextEncoding& encoding, CString& name, CString& value)
|
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/WebCore/platform/posix/ |
FileSystemPOSIX.cpp | 32 #include "CString.h" 51 CString fsRep = fileSystemRepresentation(path); 64 CString fsRep = fileSystemRepresentation(path); 75 CString fsRep = fileSystemRepresentation(path); 86 CString fsRep = fileSystemRepresentation(path); 102 CString fsRep = fileSystemRepresentation(path); 126 CString fullPath = fileSystemRepresentation(path); 157 CString fsRep = fileSystemRepresentation(path);
|
/external/webkit/WebCore/platform/text/chromium/ |
TextBreakIteratorInternalICUChromium.cpp | 25 #include "CString.h" 36 DEFINE_STATIC_LOCAL(CString, locale, (defaultLanguage().latin1()));
|
/external/webkit/WebKit/chromium/src/ |
WebCString.cpp | 34 #include "CString.h" 61 WebCore::CString::newUninitialized(length, newData).buffer(); 100 WebCString::WebCString(const WebCore::CString& s) 107 WebCString& WebCString::operator=(const WebCore::CString& s) 113 WebCString::operator WebCore::CString() const
|
/external/webkit/WebKit/mac/Plugins/ |
WebBaseNetscapePluginView.h | 45 class CString; 126 - (WebCore::CString)resolvedURLStringForURL:(const char*)url target:(const char*)target; 135 WebCore::CString proxiesForURL(NSURL *); 139 WebCore::CString& username, WebCore::CString& password);
|
/external/webkit/WebCore/platform/graphics/gtk/ |
ImageGtk.cpp | 29 #include "CString.h" 47 static CString getThemeIconFileName(const char* name, int size) 58 return CString(gtk_icon_info_get_filename(info.get())); 63 return CString(); 66 static PassRefPtr<SharedBuffer> loadResourceSharedBuffer(CString name) 84 PassRefPtr<Image> loadImageFromFile(CString fileName) 96 CString fileName;
|
/external/icu4c/common/ |
locbased.cpp | 12 #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/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/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;
|