| /external/chromium_org/third_party/WebKit/Source/core/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 | 35 #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...] |
| TextBreakIteratorInternalICU.cpp | 27 #include "wtf/text/CString.h" 36 DEFINE_STATIC_LOCAL(CString, locale, (defaultLanguage().latin1()));
|
| /sdk/find_lock/ |
| find_lock.h | 22 bool findLock(CPath &path, CString *outModule);
|
| /external/chromium_org/third_party/WebKit/Source/core/platform/network/ |
| FormDataBuilder.h | 42 static void beginMultiPartHeader(Vector<char>&, const CString& boundary, const CString& name); 43 static void addBoundaryToMultiPartHeader(Vector<char>&, const CString& boundary, bool isLastBoundary = false); 45 static void addContentTypeToMultiPartHeader(Vector<char>&, const CString& mimeType); 49 static void addKeyValuePairAsFormData(Vector<char>&, const CString& key, const CString& value, FormData::EncodingType = FormData::FormURLEncoded); 50 static void encodeStringAsFormData(Vector<char>&, const CString&);
|
| /external/chromium_org/third_party/WebKit/Source/wtf/text/ |
| CString.h | 35 // CStringBuffer is the ref-counted storage class for the characters in a CString. 43 friend class CString; 55 class WTF_EXPORT CString { 57 CString() { } 58 CString(const char*); 59 CString(const char*, size_t length); 60 CString(CStringBuffer* buffer) : m_buffer(buffer) { } 61 static CString newUninitialized(size_t length, char*& characterBuffer); 84 WTF_EXPORT bool operator==(const CString& a, const CString& b) [all...] |
| CString.cpp | 28 #include "CString.h" 46 CString::CString(const char* str) 54 CString::CString(const char* str, size_t length) 64 void CString::init(const char* str, size_t length) 73 char* CString::mutableData() 81 CString CString::newUninitialized(size_t length, char*& characterBuffer) 83 CString result [all...] |
| TextCodecLatin1.h | 40 virtual CString encode(const UChar*, size_t length, UnencodableHandling) OVERRIDE; 41 virtual CString encode(const LChar*, size_t length, UnencodableHandling) OVERRIDE; 44 CString encodeCommon(const CharType*, size_t length, UnencodableHandling);
|
| TextCodecUserDefined.h | 40 virtual CString encode(const UChar*, size_t length, UnencodableHandling) OVERRIDE; 41 virtual CString encode(const LChar*, size_t length, UnencodableHandling) OVERRIDE; 44 CString encodeCommon(const CharType*, size_t length, UnencodableHandling);
|
| TextCodecUTF16.h | 41 virtual CString encode(const UChar*, size_t length, UnencodableHandling) OVERRIDE; 42 virtual CString encode(const LChar*, size_t length, UnencodableHandling) OVERRIDE;
|
| TextCodecUTF8.h | 43 virtual CString encode(const UChar*, size_t length, UnencodableHandling) OVERRIDE; 44 virtual CString encode(const LChar*, size_t length, UnencodableHandling) OVERRIDE; 47 CString encodeCommon(const CharType* characters, size_t length);
|
| TextCodecICU.h | 52 virtual CString encode(const UChar*, size_t length, UnencodableHandling) OVERRIDE; 53 virtual CString encode(const LChar*, size_t length, UnencodableHandling) OVERRIDE; 56 CString encodeCommon(const CharType*, size_t length, UnencodableHandling); 57 CString encodeInternal(const TextCodecInput&, UnencodableHandling);
|
| TextCodecUserDefined.cpp | 31 #include "wtf/text/CString.h" 67 static CString encodeComplexUserDefined(const CharType* characters, size_t length, UnencodableHandling handling) 90 return CString(bytes, resultLength); 94 CString TextCodecUserDefined::encodeCommon(const CharType* characters, size_t length, UnencodableHandling handling) 97 CString result = CString::newUninitialized(length, bytes); 114 CString TextCodecUserDefined::encode(const UChar* characters, size_t length, UnencodableHandling handling) 119 CString TextCodecUserDefined::encode(const LChar* characters, size_t length, UnencodableHandling handling)
|
| TextCodecUTF16.cpp | 30 #include "wtf/text/CString.h" 120 CString TextCodecUTF16::encode(const UChar* characters, size_t length, UnencodableHandling) 131 CString result = CString::newUninitialized(length * 2, bytes); 133 // FIXME: CString is not a reasonable data structure for encoded UTF-16, which will have 134 // null characters inside it. Perhaps the result of encode should not be a CString. 152 CString TextCodecUTF16::encode(const LChar* characters, size_t length, UnencodableHandling) 158 CString result = CString::newUninitialized(length * 2, bytes);
|
| /external/chromium_org/sandbox/win/tools/finder/ |
| finder.h | 66 DWORD ParseFileSystem(ATL::CString path); 72 DWORD ParseRegistry(HKEY key, ATL::CString print_name); 79 DWORD ParseKernelObjects(ATL::CString path); 83 DWORD TestFileAccess(ATL::CString path); 89 DWORD TestRegAccess(HKEY key, ATL::CString name, ATL::CString print_name); 94 DWORD TestKernelObjectAccess(ATL::CString path, ATL::CString type); 97 void Output(ATL::CString type, ATL::CString access, ATL::CString info) [all...] |
| /external/chromium_org/third_party/WebKit/Source/wtf/ |
| SHA1Test.cpp | 35 #include "wtf/text/CString.h" 41 CString SHA1HexDigest(CString input, int repeat)
|
| SHA1.h | 36 #include "wtf/text/CString.h" 48 void addBytes(const CString& input) 51 // Make sure that the creator of the CString didn't make the mistake 64 static CString hexDigest(const Vector<uint8_t, 20>&); 67 CString computeHexDigest();
|
| /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...] |
| find_java.h | 33 bool getJavaVersion(CPath &javaPath, CString *outVersionStr, int *outVersionInt);
|
| /external/chromium_org/third_party/WebKit/Source/wtf/tests/ |
| CString.cpp | 28 #include "wtf/text/CString.h" 35 CString string; 40 CString stringFromCharPointer(static_cast<const char*>(0)); 45 CString stringFromCharAndLength(static_cast<const char*>(0), 0); 54 CString string(emptyString); 59 CString stringWithLength(emptyString, 0); 69 CString string(referenceString); 74 CString stringWithLength(referenceString, 6); 83 CString emptyString = CString::newUninitialized(0, buffer) [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| FormDataList.h | 26 #include "wtf/text/CString.h" 36 Item(const WTF::CString& data) : m_data(data) { } 39 const WTF::CString& data() const { return m_data; } 44 WTF::CString m_data; 56 void appendData(const String& key, const CString& value) 76 void appendString(const CString&);
|
| FormDataList.cpp | 35 CString encodedString = m_encoding.encode(string, WTF::EntitiesForUnencodables); 39 void FormDataList::appendString(const CString& string)
|
| /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/ |
| WebCString.cpp | 36 #include "wtf/text/CString.h" 67 WTF::CString::newUninitialized(length, newData).buffer(); 87 WebCString::WebCString(const WTF::CString& s) 92 WebCString& WebCString::operator=(const WTF::CString& s) 98 WebCString::operator WTF::CString() const
|
| /external/chromium_org/third_party/WebKit/Source/wtf/testing/ |
| WTFTestHelpers.h | 34 #include "wtf/text/CString.h" 47 // Output stream operator so gtest can print WTF::CString. 48 static std::ostream& operator<<(std::ostream& out, const CString& str)
|
| /external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
| WebSocketExtensionParserTest.cpp | 35 #include "wtf/text/CString.h" 45 CString input("extension"); 57 CString input("extension; foo=FOO; bar=BAR; baz"); 73 CString input("extension; foo=FOO; bar=\"BA\\R\""); 87 CString input("extension: foo=FOO"); 97 CString input("extension; foo="); 107 CString input("extension; foo=\"\""); 117 CString input("exten\xe0sion"); 127 CString input("exten\bsion"); 137 CString input("exten\tsion") [all...] |