HomeSort by relevance Sort by last modified time
    Searched refs:encodingType (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebCore/loader/
FormSubmission.cpp 64 static void appendMailtoPostFormDataToURL(KURL& url, const FormData& data, const String& encodingType)
68 if (equalIgnoringCase(encodingType, "text/plain")) {
163 String encodingType = copiedAttributes.encodingType();
168 encodingType = "application/x-www-form-urlencoded";
202 appendMailtoPostFormDataToURL(actionURL, *formData, encodingType);
210 return adoptRef(new FormSubmission(copiedAttributes.method(), actionURL, targetOrBaseTarget, encodingType, formState.release(), formData.release(), boundary, lockHistory, event));
FormSubmission.h 69 const String& encodingType() const { return m_encodingType; }
  /external/webkit/Source/WebCore/html/
HTMLFormElement.h 58 String enctype() const { return m_attributes.encodingType(); }
61 String encoding() const { return m_attributes.encodingType(); }
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SmsMessage.java     [all...]
  /external/webkit/Source/WebKit/win/
DefaultDownloadDelegate.cpp 181 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode)
183 LOG(Download, "DefaultDownloadDelegate %p - shouldDecodeSourceDataOfMIMEType %s", download, String(encodingType, SysStringLen(encodingType)).ascii().data());
185 encodingType = 0;
DefaultDownloadDelegate.h 57 virtual HRESULT STDMETHODCALLTYPE shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode);
WebDownloadCFNet.cpp 67 static Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef download, CFStringRef encodingType, const void *clientInfo);
534 Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef, CFStringRef encodingType, const void *clientInfo)
535 { return ((WebDownload*)clientInfo)->shouldDecodeDataOfMIMEType(encodingType); }
  /external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DownloadCFNet.cpp 51 static Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef download, CFStringRef encodingType, const void* clientInfo);
179 Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef, CFStringRef encodingType, const void* clientInfo)
181 return downloadFromClientInfo(clientInfo)->shouldDecodeSourceDataOfMIMEType(encodingType);
  /external/webkit/Source/WebKit/mac/Misc/
WebDownload.mm 155 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
157 return [realDelegate download:download shouldDecodeSourceDataOfMIMEType:encodingType];
  /external/webkit/Source/WebCore/wml/
WMLGoElement.cpp 166 request.setHTTPContentType(m_formAttributes.encodingType() + "; boundary=" + boundary.data());
170 request.setHTTPContentType(m_formAttributes.encodingType());
  /external/webkit/Source/WebKit/win/Interfaces/
IWebDownload.idl 149 HRESULT shouldDecodeSourceDataOfMIMEType([in] IWebDownload* download, [in] BSTR encodingType, [out, retval] BOOL* shouldDecode);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 268 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
271 return _download->shouldDecodeSourceDataOfMIMEType(encodingType);

Completed in 283 milliseconds