Searched refs:CString (Results 1 - 25 of 119) sorted by relevance

12345

/external/webkit/WebCore/platform/cf/
H A DFileSystemCF.cpp31 #import "CString.h"
37 CString fileSystemRepresentation(const String& path)
42 return CString();
47 CString string = CString::newUninitialized(size, buffer);
50 LOG_ERROR("Failed to get filesystem representation to create CString from cfString");
51 return CString();
/external/webkit/WebCore/platform/text/
H A DCString.cpp28 #include "CString.h"
34 CString::CString(const char* str) function in class:WebCore::CString
39 CString::CString(const char* str, unsigned length) function in class:WebCore::CString
44 void CString::init(const char* str, unsigned length)
54 const char* CString::data() const
59 char* CString::mutableData()
67 unsigned CString::length() const
72 CString CStrin
[all...]
H A DCString.h43 friend class CString;
54 class CString { class in namespace:WebCore
56 CString() { } function in class:WebCore::CString
57 CString(const char*);
58 CString(const char*, unsigned length);
59 CString(CStringBuffer* buffer) : m_buffer(buffer) { } function in class:WebCore::CString
60 static CString newUninitialized(size_t length, char*& characterBuffer);
76 bool operator==(const CString& a, const CString& b);
77 inline bool operator!=(const CString
[all...]
H A DTextCodecLatin1.h39 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
H A DTextCodecUserDefined.h39 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
H A DTextCodecUserDefined.cpp29 #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);
H A DTextCodecUTF16.h41 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
/external/webkit/WebCore/html/
H A DFormDataList.cpp31 void FormDataList::appendString(const CString& s)
37 static CString fixLineBreaks(const CString& s)
64 CString result = CString::newUninitialized(newLen, q);
87 CString cstr = fixLineBreaks(m_encoding.encode(s.characters(), s.length(), EntitiesForUnencodables));
H A DFormDataList.h24 #include "CString.h"
36 void appendData(const String& key, const CString& value)
46 Item(const CString& data) : m_data(data) { }
49 const CString& data() const { return m_data; }
53 CString m_data;
60 void appendString(const CString&);
/external/webkit/WebCore/platform/network/
H A DFormDataBuilder.h29 class CString;
57 static void beginMultiPartHeader(Vector<char>&, const CString& boundary, const CString& name);
58 static void addBoundaryToMultiPartHeader(Vector<char>&, const CString& boundary, bool isLastBoundary = false);
60 static void addContentTypeToMultiPartHeader(Vector<char>&, const CString& mimeType);
64 static void addKeyValuePairAsFormData(Vector<char>&, const CString& key, const CString& value);
65 static void encodeStringAsFormData(Vector<char>&, const CString&);
/external/webkit/WebCore/wml/
H A DWMLPostfieldElement.h39 // Encode name() and value() in a CString using the passed encoding
40 void encodeData(const TextEncoding&, CString& name, CString& value);
H A DWMLPostfieldElement.cpp26 #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)
/external/webkit/WebCore/platform/haiku/
H A DFileSystemHaiku.cpp31 #include "CString.h"
39 CString fileSystemRepresentation(const String& string)
50 CString openTemporaryFile(const char* prefix, PlatformFileHandle& handle)
54 return CString();
/external/webkit/WebCore/platform/text/chromium/
H A DTextBreakIteratorInternalICUChromium.cpp25 #include "CString.h"
36 DEFINE_STATIC_LOCAL(CString, locale, (defaultLanguage().latin1()));
/external/webkit/WebCore/plugins/
H A DPluginDebug.h31 #include "CString.h"
42 CString prettyNameForNPNVariable(NPNVariable variable);
43 CString prettyNameForNPPVariable(NPPVariable variable, void* value);
/external/webkit/WebCore/platform/network/chromium/
H A DResourceResponse.h30 #include "CString.h"
53 const CString& getSecurityInfo() const { return m_securityInfo; }
54 void setSecurityInfo(const CString& securityInfo)
89 CString m_securityInfo;
/external/webkit/WebCore/platform/android/
H A DFileSystemAndroid.cpp31 #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/bridge/jni/v8/
H A DJavaStringV8.h29 #include "CString.h"
45 m_utf8String = WebCore::CString(cs, size);
54 WebCore::CString m_utf8String;
/external/webkit/WebCore/platform/
H A DKURLGooglePrivate.h34 #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/WebKit/chromium/src/
H A DWebCString.cpp34 #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/WebCore/platform/posix/
H A DFileSystemPOSIX.cpp32 #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/qt/
H A DTextCodecQt.h44 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
/external/webkit/WebKit/chromium/public/
H A DWebCString.h37 namespace WebCore { class CString; }
87 WebCString(const WebCore::CString&);
88 WebCString& operator=(const WebCore::CString&);
89 operator WebCore::CString() const;
/external/webkit/WebKit/mac/Plugins/
H A DWebBaseNetscapePluginView.h45 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/JavaScriptCore/runtime/
H A DUString.cpp60 CString::CString(const char* c) function in class:JSC::CString
67 CString::CString(const char* c, size_t length) function in class:JSC::CString
75 CString::CString(const CString& b) function in class:JSC::CString
85 CString::~CString()
90 CString CStrin
[all...]

Completed in 264 milliseconds

12345