OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LegacyWebArchive
(Results
1 - 17
of
17
) sorted by null
/external/webkit/Source/WebKit/mac/WebView/
WebArchiveInternal.h
33
class
LegacyWebArchive
;
38
- (id)_initWithCoreLegacyWebArchive:(WTF::PassRefPtr<WebCore::
LegacyWebArchive
>)coreLegacyWebArchive;
39
- (WebCore::
LegacyWebArchive
*)_coreLegacyWebArchive;
WebArchive.mm
38
#import <WebCore/
LegacyWebArchive
.h>
57
RefPtr<
LegacyWebArchive
> coreArchive;
60
- (id)initWithCoreArchive:(PassRefPtr<
LegacyWebArchive
>)coreArchive;
61
- (
LegacyWebArchive
*)coreArchive;
62
- (void)setCoreArchive:(PassRefPtr<
LegacyWebArchive
>)newCoreArchive;
81
coreArchive =
LegacyWebArchive
::create();
85
- (id)initWithCoreArchive:(PassRefPtr<
LegacyWebArchive
>)_coreArchive
96
- (
LegacyWebArchive
*)coreArchive
101
- (void)setCoreArchive:(PassRefPtr<
LegacyWebArchive
>)newCoreArchive
190
Vector<PassRefPtr<
LegacyWebArchive
> > coreArchives
[
all
...]
WebDataSource.mm
53
#import <WebCore/
LegacyWebArchive
.h>
496
return [[[WebArchive alloc] _initWithCoreLegacyWebArchive:
LegacyWebArchive
::create(core([self webFrame]))] autorelease];
WebResource.mm
40
#import <WebCore/
LegacyWebArchive
.h>
WebFrame.mm
76
#import <WebCore/
LegacyWebArchive
.h>
[
all
...]
WebHTMLView.mm
101
#import <WebCore/
LegacyWebArchive
.h>
[
all
...]
/external/webkit/Source/WebCore/loader/archive/cf/
LegacyWebArchive.h
40
class
LegacyWebArchive
: public Archive {
42
static PassRefPtr<
LegacyWebArchive
> create();
43
static PassRefPtr<
LegacyWebArchive
> create(SharedBuffer*);
44
static PassRefPtr<
LegacyWebArchive
> create(PassRefPtr<ArchiveResource> mainResource, Vector<PassRefPtr<ArchiveResource> >& subresources, Vector<PassRefPtr<
LegacyWebArchive
> >& subframeArchives);
45
static PassRefPtr<
LegacyWebArchive
> create(Node*);
46
static PassRefPtr<
LegacyWebArchive
> create(Frame*);
47
static PassRefPtr<
LegacyWebArchive
> createFromSelection(Frame*);
48
static PassRefPtr<
LegacyWebArchive
> create(Range*);
53
LegacyWebArchive
() { }
[
all
...]
LegacyWebArchive.cpp
30
#include "
LegacyWebArchive
.h"
67
RetainPtr<CFDictionaryRef>
LegacyWebArchive
::createPropertyListRepresentation(ArchiveResource* resource, MainResourceStatus isMainResource)
96
LOG(Archives, "
LegacyWebArchive
- NULL resource URL is invalid - returning null property list");
130
RetainPtr<CFDictionaryRef>
LegacyWebArchive
::createPropertyListRepresentation(Archive* archive)
147
LOG(Archives, "
LegacyWebArchive
- Failed to create property list for subresource");
159
LOG(Archives, "
LegacyWebArchive
- Failed to create property list for subframe archive");
167
ResourceResponse
LegacyWebArchive
::createResourceResponseFromPropertyListData(CFDataRef data, CFStringRef responseDataType)
183
PassRefPtr<ArchiveResource>
LegacyWebArchive
::createResource(CFDictionaryRef dictionary)
191
LOG(Archives, "
LegacyWebArchive
- Resource data is not of type CFData, cannot create invalid resource");
197
LOG(Archives, "
LegacyWebArchive
- Frame name is not of type CFString, cannot create invalid resource")
[
all
...]
LegacyWebArchiveMac.mm
30
#include "
LegacyWebArchive
.h"
38
ResourceResponse
LegacyWebArchive
::createResourceResponseFromMacArchivedData(CFDataRef responseData)
59
RetainPtr<CFDataRef>
LegacyWebArchive
::createPropertyListRepresentation(const ResourceResponse& response)
/external/webkit/Source/WebKit/win/
WebArchive.h
35
class
LegacyWebArchive
;
42
static WebArchive* createInstance(PassRefPtr<WebCore::
LegacyWebArchive
>);
44
WebArchive(PassRefPtr<WebCore::
LegacyWebArchive
>);
81
RefPtr<WebCore::
LegacyWebArchive
> m_archive;
WebArchive.cpp
32
#include <WebCore/
LegacyWebArchive
.h>
45
WebArchive* WebArchive::createInstance(PassRefPtr<
LegacyWebArchive
> coreArchive)
53
WebArchive::WebArchive(PassRefPtr<
LegacyWebArchive
> coreArchive)
121
m_archive =
LegacyWebArchive
::create(domNode->node());
/external/webkit/Source/WebKit/mac/DOM/
WebDOMOperations.mm
46
#import <WebCore/
LegacyWebArchive
.h>
90
return [[[WebArchive alloc] _initWithCoreLegacyWebArchive:
LegacyWebArchive
::create(core(self))] autorelease];
178
return [[[WebArchive alloc] _initWithCoreLegacyWebArchive:
LegacyWebArchive
::create(core(self))] autorelease];
/external/webkit/Source/WebCore/loader/archive/
ArchiveFactory.cpp
36
#include "
LegacyWebArchive
.h"
66
mimeTypes.set("application/x-webarchive", archiveFactoryCreate<
LegacyWebArchive
>);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebDragClientMac.mm
40
#import <WebCore/
LegacyWebArchive
.h>
145
RefPtr<
LegacyWebArchive
> archive =
LegacyWebArchive
::create(coreElement);
/external/webkit/Source/WebCore/platform/mac/
PasteboardMac.mm
46
#import "
LegacyWebArchive
.h"
184
RefPtr<
LegacyWebArchive
> archive =
LegacyWebArchive
::createFromSelection(frame);
501
RefPtr<
LegacyWebArchive
> coreArchive =
LegacyWebArchive
::create(SharedBuffer::wrapNSData([m_pasteboard.get() dataForType:WebArchivePboardType]).get());
/external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp
115
#include <WebCore/
LegacyWebArchive
.h>
[
all
...]
/external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm
63
#import <WebCore/
LegacyWebArchive
.h>
[
all
...]
Completed in 302 milliseconds