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

1 2

  /external/webkit/Source/WebKit/gtk/webkit/
webkitdownloadprivate.h 32 void webkit_download_set_suggested_filename(WebKitDownload*, const gchar* suggestedFilename);
webkitdownload.cpp 78 gchar* suggestedFilename;
164 g_free(priv->suggestedFilename);
600 if (!response.isNull() && !response.suggestedFilename().isEmpty())
601 webkit_download_set_suggested_filename(download, response.suggestedFilename().utf8().data());
620 if (priv->suggestedFilename)
621 return priv->suggestedFilename;
626 priv->suggestedFilename = g_strdup(decodeURLEscapeSequences(url.lastPathComponent()).utf8().data());
627 return priv->suggestedFilename;
631 void webkit_download_set_suggested_filename(WebKitDownload* download, const gchar* suggestedFilename)
634 g_free(priv->suggestedFilename);
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebURLResponse.idl 58 - (NSString *)suggestedFilename
60 HRESULT suggestedFilename([out, retval] BSTR* result);
  /external/webkit/Source/WebKit/win/
WebURLResponse.h 60 virtual HRESULT STDMETHODCALLTYPE suggestedFilename(
WebURLResponse.cpp 312 HRESULT STDMETHODCALLTYPE WebURLResponse::suggestedFilename(
325 *result = BString(m_response.suggestedFilename()).release();
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PDFViewController.h 58 void setPDFDocumentData(const String& mimeType, const String& suggestedFilename, const CoreIPC::DataReference&);
WKViewInternal.h 70 - (void)_didFinishLoadingDataForCustomRepresentationWithSuggestedFilename:(const String&)suggestedFilename dataReference:(const CoreIPC::DataReference&)dataReference;
PageClientImpl.h 101 virtual void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&);
PageClientImpl.mm 348 void PageClientImpl::didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference& dataReference)
350 [m_wkView _didFinishLoadingDataForCustomRepresentationWithSuggestedFilename:suggestedFilename dataReference:dataReference];
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceResponseCFNet.cpp 101 RetainPtr<CFStringRef> suggestedFilename(AdoptCF, CFURLResponseCopySuggestedFilename(m_cfResponse.get()));
102 m_suggestedFilename = suggestedFilename.get();
  /external/webkit/Source/WebCore/platform/network/
ResourceResponseBase.h 72 const String& suggestedFilename() const;
ResourceResponseBase.cpp 126 data->m_suggestedFilename = suggestedFilename().crossThreadString();
206 const String& ResourceResponseBase::suggestedFilename() const
578 if (a.suggestedFilename() != b.suggestedFilename())
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage_p.h 91 virtual void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&);
  /external/webkit/Source/WebKit2/UIProcess/
PageClient.h 150 virtual void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&) = 0;
WebUIClient.h 109 void saveDataToFileInDownloadsFolder(WebPageProxy*, const String& suggestedFilename, const String& mimeType, const String& originatingURLString, WebData*);
WebUIClient.cpp 367 void WebUIClient::saveDataToFileInDownloadsFolder(WebPageProxy* page, const String& suggestedFilename, const String& mimeType, const String& originatingURLString, WebData* data)
372 m_client.saveDataToFileInDownloadsFolder(toAPI(page), toAPI(suggestedFilename.impl()), toAPI(mimeType.impl()), toURLRef(originatingURLString.impl()), toAPI(data), m_client.clientInfo);
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.h 120 virtual void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&);
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceResponseMac.mm 94 m_suggestedFilename = [m_nsResponse.get() suggestedFilename];
WebCoreURLResponse.mm 527 RetainPtr<NSString> suggestedFilename(AdoptNS, (NSString *)wkCopyCFURLResponseSuggestedFilename(cfResponse));
528 if (!CFSetContainsValue(binaryExtensions, (CFStringRef) [[suggestedFilename.get() pathExtension] lowercaseString]))
  /external/webkit/Source/WebKit/mac/WebView/
WebResource.mm 389 NSString *suggestedFilename = _private->coreResource->response().suggestedFilename();
390 return suggestedFilename;
  /external/webkit/Source/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 483 String suggestedFilename = filenameFromHTTPContentDisposition(QString::fromLatin1(m_replyWrapper->reply()->rawHeader("Content-Disposition")));
485 if (!suggestedFilename.isEmpty())
486 response.setSuggestedFilename(suggestedFilename);
  /external/webkit/Source/WebCore/platform/win/
DragImageWin.cpp 75 String filename = image->response().suggestedFilename();
  /external/webkit/Source/WebKit/chromium/src/
WebURLResponse.cpp 182 WebString WebURLResponse::suggestedFileName() const
184 return m_private->m_resourceResponse->suggestedFilename();
187 void WebURLResponse::setSuggestedFileName(const WebString& suggestedFileName)
189 m_private->m_resourceResponse->setSuggestedFilename(suggestedFileName);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebDragClientMac.mm 277 NSString* filename = [response suggestedFilename];
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.cpp 651 return loader->response().suggestedFilename();
658 return resource->response().suggestedFilename();

Completed in 713 milliseconds

1 2