OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:webarchive
(Results
1 - 25
of
70
) sorted by null
1
2
3
/external/webkit/Source/WebKit/win/
WebArchive.cpp
28
#include "
WebArchive
.h"
36
//
WebArchive
----------------------------------------------------------------
38
WebArchive
*
WebArchive
::createInstance()
40
WebArchive
* instance = new
WebArchive
(0);
45
WebArchive
*
WebArchive
::createInstance(PassRefPtr<LegacyWebArchive> coreArchive)
47
WebArchive
* instance = new
WebArchive
(coreArchive)
[
all
...]
WebArchive.h
38
class
WebArchive
: public IWebArchive
41
static
WebArchive
* createInstance();
42
static
WebArchive
* createInstance(PassRefPtr<WebCore::LegacyWebArchive>);
44
WebArchive
(PassRefPtr<WebCore::LegacyWebArchive>);
45
~
WebArchive
();
ForEachCoClass.h
62
macro(
WebArchive
) \
/external/webkit/Source/WebCore/manual-tests/
webarchive-test.html
3
<title>
webarchive
test</title>
6
<p>This test verifies that
webarchive
files larger than 4KB can be loaded. This functionality had previously regressed due to <a href="https://bugs.webkit.org/show_bug.cgi?id=36196">https://bugs.webkit.org/show_bug.cgi?id=36196</a>. If you see a snapshot of <a href="http://webkit.org">webkit.org</a> in the iframe below, the test passed.</p>
7
<iframe src="WebKitSite.
webarchive
" width="800" height="600"></iframe>
/external/webkit/Source/WebKit/mac/WebView/
WebArchive.h
36
@abstract The pasteboard type constant used when adding or accessing a
WebArchive
on the pasteboard.
41
@class
WebArchive
42
@discussion
WebArchive
represents a main resource as well as all the subresources and subframes associated with the main resource.
47
@interface
WebArchive
: NSObject <NSCoding, NSCopying>
55
@abstract The initializer for
WebArchive
.
59
@result An initialized
WebArchive
.
65
@abstract The initializer for creating a
WebArchive
from data.
66
@param data The data representing the archive. This can be obtained using
WebArchive
's data method.
67
@result An initialized
WebArchive
.
93
using WebArchivePboardType. To create a
WebArchive
using the returned data, call initWithData:
[
all
...]
WebDataSource.h
37
@class
WebArchive
;
135
@method
webArchive
136
@result A
WebArchive
representing the data source, its subresources and child frames.
137
@description This method constructs a
WebArchive
using the original downloaded data.
138
In the case of HTML, if the current state of the document is preferred,
webArchive
should be
141
- (
WebArchive
*)
webArchive
;
147
This method can be used to construct a
WebArchive
in case the archive returned by
148
WebDataSource's
webArchive
isn't sufficient.
WebDataSourceInternal.h
40
@class
WebArchive
;
51
- (DOMDocumentFragment *)_documentFragmentWithArchive:(
WebArchive
*)archive;
53
- (void)_replaceSelectionWithArchive:(
WebArchive
*)archive selectReplacement:(BOOL)selectReplacement;
WebArchiveInternal.h
29
#import "
WebArchive
.h"
36
@interface
WebArchive
(WebInternal)
WebArchive.mm
29
#import "
WebArchive
.h"
122
@implementation
WebArchive
175
if (!subframeArchives || isArrayOfClass(subframeArchives, [
WebArchive
class]))
192
WebArchive
*subframeArchive;
249
if (isArrayOfClass(object, [
WebArchive
class]))
350
WebArchive
*archive = [[
WebArchive
alloc] _initWithCoreLegacyWebArchive:(LegacyWebArchive *)subframeArchives[i].get()];
381
@implementation
WebArchive
(WebInternal)
WebDataSource.mm
31
#import "
WebArchive
.h"
167
WebArchive
*archive;
281
- (void)_replaceSelectionWithArchive:(
WebArchive
*)archive selectReplacement:(BOOL)selectReplacement
289
- (DOMDocumentFragment *)_documentFragmentWithArchive:(
WebArchive
*)archive
490
- (
WebArchive
*)
webArchive
492
// it makes no sense to grab a
WebArchive
from an uncommitted document.
496
return [[[
WebArchive
alloc] _initWithCoreLegacyWebArchive:LegacyWebArchive::create(core([self webFrame]))] autorelease];
WebFrame.h
35
@class
WebArchive
;
137
@abstract Causes WebFrame to load a
WebArchive
.
140
- (void)loadArchive:(
WebArchive
*)archive;
/external/webkit/Source/WebKit/mac/DOM/
WebDOMOperations.h
33
@class
WebArchive
;
39
@method
webArchive
40
@result A
WebArchive
representing the node and the children of the node.
42
- (
WebArchive
*)
webArchive
;
68
@method
webArchive
69
@result A
WebArchive
representing the range.
71
- (
WebArchive
*)
webArchive
;
WebDOMOperations.mm
88
- (
WebArchive
*)
webArchive
90
return [[[
WebArchive
alloc] _initWithCoreLegacyWebArchive:LegacyWebArchive::create(core(self))] autorelease];
176
- (
WebArchive
*)
webArchive
178
return [[[
WebArchive
alloc] _initWithCoreLegacyWebArchive:LegacyWebArchive::create(core(self))] autorelease];
/external/webkit/Source/WebKit/win/Interfaces/
IWebArchive.idl
36
@class
WebArchive
37
@discussion
WebArchive
represents a main resource as well as all the subresources and subframes associated with the main resource.
52
@abstract The initializer for
WebArchive
.
56
@result An initialized
WebArchive
.
63
@abstract The initializer for creating a
WebArchive
from data.
64
@param data The data representing the archive. This can be obtained using
WebArchive
's data method.
65
@result An initialized
WebArchive
.
72
@abstract The initializer for creating a
WebArchive
from data.
73
@param data The data representing the archive. This can be obtained using
WebArchive
's data method.
74
@result An initialized
WebArchive
[
all
...]
IWebDataSource.idl
155
@method
webArchive
156
@result A
WebArchive
representing the data source, its subresources and child frames.
157
@description This method constructs a
WebArchive
using the original downloaded data.
158
In the case of HTML, if the current state of the document is preferred,
webArchive
should be
160
- (
WebArchive
*)
webArchive
;
162
HRESULT
webArchive
([out, retval] IWebArchive** archive);
168
This method can be used to construct a
WebArchive
in case the archive returned by
169
WebDataSource's
webArchive
isn't sufficient.
/external/webkit/Source/WebKit/mac/Misc/
WebNSPasteboardExtras.h
32
@class
WebArchive
;
73
archive:(
WebArchive
*)archive
80
archive:(
WebArchive
*)archive
83
- (void)_web_writePromisedRTFDFromArchive:(
WebArchive
*)archive containsImage:(BOOL)containsImage;
WebNSPasteboardExtras.mm
32
#import "
WebArchive
.h"
198
- (void)_web_writePromisedRTFDFromArchive:(
WebArchive
*)archive containsImage:(BOOL)containsImage
233
archive:(
WebArchive
*)archive
264
archive:(
WebArchive
*)archive
WebKit.h
30
#import <WebKit/
WebArchive
.h>
/external/webkit/Source/WebCore/loader/archive/
ArchiveFactory.cpp
66
mimeTypes.set("application/x-
webarchive
", archiveFactoryCreate<LegacyWebArchive>);
68
mimeTypes.set("application/x-
webarchive
-xml", archiveFactoryCreate<WebArchiveAndroid>);
/external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCGWin.cpp
71
UTIMap.add("com.apple.
webarchive
", "
webarchive
");
/external/webkit/Source/WebCore/platform/win/
MIMETypeRegistryWin.cpp
87
mimetypeMap.add("
webarchive
", "application/x-
webarchive
");
/external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.mm
28
#import "
WebArchive
.h"
128
WebArchive
*archive = [element
webArchive
];
/external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTree.mm
62
#import <WebKit/
WebArchive
.h>
[
all
...]
/external/webkit/Tools/WebKitLauncher/
Info.plist
48
<string>
webarchive
</string>
51
<string>
webarchive
.icns</string>
54
<string>application/x-
webarchive
</string>
/external/webkit/Source/WebCore/loader/archive/cf/
LegacyWebArchive.cpp
291
LOG(Archives, "LegacyWebArchive - Archive property list is not the expected CFDictionary, aborting invalid
WebArchive
");
305
LOG(Archives, "LegacyWebArchive - Null root CFDictionary, aborting invalid
WebArchive
");
311
LOG(Archives, "LegacyWebArchive - No main resource in archive, aborting invalid
WebArchive
");
315
LOG(Archives, "LegacyWebArchive - Main resource is not the expected CFDictionary, aborting invalid
WebArchive
");
321
LOG(Archives, "LegacyWebArchive - Failed to parse main resource from CFDictionary or main resource does not exist, aborting invalid
WebArchive
");
327
LOG(Archives, "LegacyWebArchive - Subresources is not the expected Array, aborting invalid
WebArchive
");
336
LOG(Archives, "LegacyWebArchive - Subresource is not expected CFDictionary, aborting invalid
WebArchive
");
345
LOG(Archives, "LegacyWebArchive - Subframe archives is not the expected Array, aborting invalid
WebArchive
");
354
LOG(Archives, "LegacyWebArchive - Subframe array is not expected CFDictionary, aborting invalid
WebArchive
");
Completed in 4853 milliseconds
1
2
3