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

  /external/webkit/WebCore/html/
HTMLFormElement.h 66 String enctype() const { return m_formDataBuilder.encodingType(); }
69 String encoding() const { return m_formDataBuilder.encodingType(); }
HTMLFormElement.cpp 311 static void transferMailtoPostFormDataToURL(RefPtr<FormData>& data, KURL& url, const String& encodingType)
316 if (equalIgnoringCase(encodingType, "text/plain")) {
398 transferMailtoPostFormDataToURL(data, url, m_formDataBuilder.encodingType());
402 frame->loader()->submitForm("POST", m_url, data.release(), m_target, m_formDataBuilder.encodingType(), String(), lockHistory, event, formState.release());
405 frame->loader()->submitForm("POST", m_url, createFormData(boundary.data()), m_target, m_formDataBuilder.encodingType(), boundary.data(), lockHistory, event, formState.release());
  /external/webkit/WebCore/platform/network/
FormDataBuilder.h 44 String encodingType() const { return m_encodingType; }
  /external/webkit/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 58 virtual HRESULT STDMETHODCALLTYPE shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode);
WebDownloadCFNet.cpp 68 static Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef download, CFStringRef encodingType, const void *clientInfo);
535 Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef, CFStringRef encodingType, const void *clientInfo)
536 { return ((WebDownload*)clientInfo)->shouldDecodeDataOfMIMEType(encodingType); }
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SmsMessage.java     [all...]
  /external/webkit/WebKit/mac/Misc/
WebDownload.mm 155 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
157 return [realDelegate download:download shouldDecodeSourceDataOfMIMEType:encodingType];
  /external/webkit/WebCore/wml/
WMLGoElement.cpp 159 request.setHTTPContentType(m_formDataBuilder.encodingType() + "; boundary=" + boundary.data());
163 request.setHTTPContentType(m_formDataBuilder.encodingType());
  /external/webkit/WebKit/win/Interfaces/
IWebDownload.idl 149 HRESULT shouldDecodeSourceDataOfMIMEType([in] IWebDownload* download, [in] BSTR encodingType, [out, retval] BOOL* shouldDecode);

Completed in 106 milliseconds