HomeSort by relevance Sort by last modified time
    Searched refs:CString (Results 1 - 25 of 425) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/text/
CString.h 1 #include <JavaScriptCore/CString.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/text/
CString.h 3 #include <JavaScriptCore/CString.h>
  /external/webkit/Source/WebCore/platform/text/
LineEnding.h 41 CString normalizeLineEndingsToCRLF(const CString& from);
44 void normalizeLineEndingsToCR(const CString& from, Vector<char>& result);
47 void normalizeLineEndingsToLF(const CString& from, Vector<char>& result);
51 void normalizeLineEndingsToNative(const CString& from, Vector<char>& result);
LineEnding.cpp 36 #include <wtf/text/CString.h>
43 virtual void copy(const CString&) = 0;
49 CStringBuffer(CString& buffer)
58 m_buffer = CString::newUninitialized(size, ptr);
62 virtual void copy(const CString& source)
67 const CString& buffer() const { return m_buffer; }
70 CString m_buffer;
88 virtual void copy(const CString& source)
97 void internalNormalizeLineEndingsToCRLF(const CString& from, OutputBuffer& buffer)
152 void normalizeToCROrLF(const CString& from, Vector<char>& result, bool toCR)
    [all...]
Base64.h 31 #include <wtf/text/CString.h>
40 void base64Encode(const CString&, Vector<char>&, bool insertLFs = false);
43 String base64Encode(const CString&, bool insertLFs = false);
54 inline void base64Encode(const CString& in, Vector<char>& out, bool insertLFs)
64 inline String base64Encode(const CString& in, bool insertLFs)
TextCodecUserDefined.cpp 31 #include <wtf/text/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);
  /sdk/find_lock/
find_lock.h 22 bool findLock(CPath &path, CString *outModule);
  /external/webkit/Source/WebCore/platform/network/
FormDataBuilder.h 39 static void beginMultiPartHeader(Vector<char>&, const CString& boundary, const CString& name);
40 static void addBoundaryToMultiPartHeader(Vector<char>&, const CString& boundary, bool isLastBoundary = false);
42 static void addContentTypeToMultiPartHeader(Vector<char>&, const CString& mimeType);
46 static void addKeyValuePairAsFormData(Vector<char>&, const CString& key, const CString& value);
47 static void encodeStringAsFormData(Vector<char>&, const CString&);
  /external/webkit/Source/WebCore/platform/text/chromium/
TextBreakIteratorInternalICUChromium.cpp 28 #include <wtf/text/CString.h>
36 DEFINE_STATIC_LOCAL(CString, locale, (defaultLanguage().latin1()));
  /external/webkit/Source/JavaScriptCore/wtf/text/
CString.cpp 28 #include "CString.h"
34 CString::CString(const char* str)
42 CString::CString(const char* str, size_t length)
47 void CString::init(const char* str, size_t length)
63 char* CString::mutableData()
71 CString CString::newUninitialized(size_t length, char*& characterBuffer)
76 CString result
    [all...]
CString.h 41 friend class CString;
52 class CString {
54 CString() { }
55 CString(const char*);
56 CString(const char*, size_t length);
57 CString(CStringBuffer* buffer) : m_buffer(buffer) { }
58 static CString newUninitialized(size_t length, char*& characterBuffer);
80 bool operator==(const CString& a, const CString& b);
81 inline bool operator!=(const CString& a, const CString& b) { return !(a == b);
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebpluginprivate.h 24 #include <wtf/text/CString.h>
39 CString name;
40 CString description;
webkitapplicationcache.cpp 27 #include <wtf/text/CString.h>
89 CString path = WebCore::fileSystemRepresentation(WebCore::cacheStorage().cacheDirectory());
  /external/webkit/Source/WebCore/platform/cf/
FileSystemCF.cpp 34 #import <wtf/text/CString.h>
38 CString fileSystemRepresentation(const String& path)
43 return CString();
48 CString string = CString::newUninitialized(size, buffer);
51 LOG_ERROR("Failed to get filesystem representation to create CString from cfString");
52 return CString();
  /external/webkit/Source/WebCore/platform/brew/
KURLBrew.cpp 23 #include <wtf/text/CString.h>
  /external/webkit/Source/WebCore/plugins/
PluginDebug.h 31 #include <wtf/text/CString.h>
42 CString prettyNameForNPNVariable(NPNVariable variable);
43 CString prettyNameForNPPVariable(NPPVariable variable, void* value);
44 CString prettyNameForNPNURLVariable(NPNURLVariable variable);
  /external/webkit/Source/WebCore/wml/
WMLPostfieldElement.h 41 // Encode name() and value() in a CString using the passed encoding
42 void encodeData(const TextEncoding&, CString& name, CString& value);
  /external/webkit/Source/WebCore/platform/
KURLGooglePrivate.h 34 #include <wtf/text/CString.h>
80 void setUtf8(const CString&);
81 void setAscii(const CString&);
90 const CString& utf8String() const { return m_utf8; }
100 CString m_utf8;
  /external/webkit/Source/WebCore/html/
FormDataList.cpp 35 CString cstr = m_encoding.encode(s.characters(), s.length(), EntitiesForUnencodables);
39 void FormDataList::appendString(const CString& s)
FormDataList.h 27 #include <wtf/text/CString.h>
36 Item(const WTF::CString& data) : m_data(data) { }
39 const WTF::CString& data() const { return m_data; }
43 WTF::CString m_data;
54 void appendData(const String& key, const CString& value)
74 void appendString(const CString&);
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPIdentifierData.h 32 #include <wtf/text/CString.h>
55 CString m_string;
  /sdk/find_java/
utils.h 69 class CString {
73 CString() { mStr = NULL; }
74 CString(const CString &str) { mStr = NULL; set(str.mStr); }
75 explicit CString(const char *str) { mStr = NULL; set(str); }
76 CString(const char *start, int length) { mStr = NULL; set(start, length); }
78 CString& operator=(const CString &str) {
82 CString& set(const char *str) {
92 CString& set(const char *start, int length) {
    [all...]
  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMCString.h 77 WebDOMCString(const WTF::CString&);
78 WebDOMCString& operator=(const WTF::CString&);
79 operator WTF::CString() const;
  /external/webkit/Source/WebCore/platform/gtk/
SharedBufferGtk.cpp 23 #include <wtf/text/CString.h>
35 CString filename = fileSystemRepresentation(filePath);
  /external/webkit/Source/WebKit/chromium/src/
WebURLError.cpp 36 #include <wtf/text/CString.h>
63 CString spec = unreachableURL.spec();

Completed in 673 milliseconds

1 2 3 4 5 6 7 8 91011>>