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

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/text/qt/
TextCodecQt.h 44 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
  /external/webkit/Source/WebKit/chromium/public/
WebCString.h 43 class CString;
96 WebCString(const WTF::CString&);
97 WebCString& operator=(const WTF::CString&);
98 operator WTF::CString() const;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePluginStream.h 36 #include <wtf/text/CString.h>
101 CString m_responseURL;
102 CString m_mimeType;
103 CString m_headers;
  /external/webkit/Source/WebCore/platform/android/
FileSystemAndroid.cpp 38 #include <wtf/text/CString.h>
47 CString fileSystemRepresentation(const String& path)
95 CString fsRep = fileSystemRepresentation(path);
  /external/webkit/Source/WebCore/plugins/
PluginDebug.cpp 84 CString prettyNameForNPNVariable(NPNVariable variable)
123 CString prettyNameForNPPVariable(NPPVariable variable, void* value)
166 CString prettyNameForNPNURLVariable(NPNURLVariable variable)
PluginStream.h 43 #include <wtf/text/CString.h>
73 void sendJavaScriptStream(const KURL& requestURL, const WTF::CString& resultString);
116 CString m_headers;
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPVariantData.h 31 #include <wtf/text/CString.h>
85 const CString& stringValue() const
111 CString m_stringValue;
  /external/webkit/Source/WebCore/platform/efl/
FileSystemEfl.cpp 52 #include <wtf/text/CString.h>
56 CString fileSystemRepresentation(const String& path)
59 // TODO: move this to CString and use it instead in both, being more standard
62 CString cfilename(filename);
114 CString cpath = path.utf8();
115 CString cfilter = filter.utf8();
GeolocationServiceEfl.cpp 27 #include <wtf/text/CString.h>
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebviewprivate.h 84 CString encoding;
85 CString customEncoding;
87 CString iconURI;
99 CString mainResourceIdentifier;
101 CString tooltipText;
  /external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp 41 #include <wtf/text/CString.h>
50 CString fsRep = fileSystemRepresentation(path);
63 CString fsRep = fileSystemRepresentation(path);
74 CString fsRep = fileSystemRepresentation(path);
142 CString fsRep = fileSystemRepresentation(path);
153 CString fsRep = fileSystemRepresentation(path);
169 CString fsRep = fileSystemRepresentation(path);
193 CString fullPath = fileSystemRepresentation(path);
226 CString fsRep = fileSystemRepresentation(path);
238 CString cpath = path.utf8()
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.h 27 #include <wtf/text/CString.h>
67 static WTF::CString getInnerText(WebKitWebFrame*);
68 static WTF::CString dumpRenderTree(WebKitWebFrame*);
69 static WTF::CString counterValueForElementById(WebKitWebFrame*, const char* id);
72 static WTF::CString pageProperty(WebKitWebFrame*, const char* propertyName, int pageNumber);
74 static WTF::CString pageSizeAndMarginsInPixels(WebKitWebFrame*, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
80 static WTF::CString markerTextForListItem(WebKitWebFrame*, JSContextRef, JSValueRef nodeObject);
  /external/webkit/Source/WebCore/platform/network/
FormDataBuilder.cpp 36 #include <wtf/text/CString.h>
52 static inline void append(Vector<char>& buffer, const CString& string)
57 static void appendQuotedString(Vector<char>& buffer, const CString& string)
142 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name)
153 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary)
173 void FormDataBuilder::addContentTypeToMultiPartHeader(Vector<char>& buffer, const CString& mimeType)
184 void FormDataBuilder::addKeyValuePairAsFormData(Vector<char>& buffer, const CString& key, const CString& value)
194 void FormDataBuilder::encodeStringAsFormData(Vector<char>& buffer, const CString& string
    [all...]
  /external/webkit/Source/WebCore/platform/text/wince/
TextCodecWinCE.cpp 35 #include <wtf/text/CString.h>
42 CString m_name;
45 Vector<CString> m_aliases;
57 static HashMap<UINT, CString>& codePageCharsets()
59 static HashMap<UINT, CString> cc;
95 HashMap<UINT, CString>::iterator i = codePageCharsets().find(cpInfo.uiCodePage);
97 CString name(String(cpInfo.wszWebCharset).latin1());
152 for (Vector<CString>::const_iterator alias = j->second.m_aliases.begin(); alias != j->second.m_aliases.end(); ++alias)
278 CString TextCodecWinCE::encode(const UChar* characters, size_t length, UnencodableHandling)
281 return CString();
    [all...]
TextCodecWinCE.h 49 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
  /external/webkit/Source/WebCore/bridge/jni/
JavaMethodJobject.h 35 #include <wtf/text/CString.h>
  /external/webkit/Source/WebCore/html/parser/
XSSFilter.cpp 40 #include <wtf/text/CString.h>
120 CString workingStringUTF8 = workingString.utf8();
  /external/webkit/Source/WebCore/platform/mac/
FileSystemMac.mm 34 #import <wtf/text/CString.h>
57 CString prefixUtf8 = prefix.utf8();
  /external/webkit/Source/WebCore/platform/qt/
KURLQt.cpp 26 #include <wtf/text/CString.h>
  /external/webkit/Source/WebCore/platform/text/
TextCodecUTF16.cpp 30 #include <wtf/text/CString.h>
120 CString TextCodecUTF16::encode(const UChar* characters, size_t length, UnencodableHandling)
131 CString string = 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.
TextCodecUTF8.h 43 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
  /external/webkit/Source/WebCore/platform/text/gtk/
TextCodecGtk.h 51 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
  /external/webkit/Source/WebCore/platform/win/
GDIObjectCounter.cpp 36 #include <wtf/text/CString.h>
  /external/webkit/Source/WebCore/platform/wx/
LoggingWx.cpp 31 #include <wtf/text/CString.h>
  /external/webkit/Source/WebCore/wml/
WMLGoElement.h 50 PassRefPtr<FormData> createFormData(const CString& boundary);

Completed in 359 milliseconds

1 23 4 5 6 7 8 91011>>