OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebArchive
(Results
1 - 23
of
23
) sorted by null
/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/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/mac/WebView/
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)
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.
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
...]
WebFrame.h
35
@class
WebArchive
;
137
@abstract Causes WebFrame to load a
WebArchive
.
140
- (void)loadArchive:(
WebArchive
*)archive;
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];
WebView.h
43
@class
WebArchive
;
726
- (void)replaceSelectionWithArchive:(
WebArchive
*)archive;
WebFrame.mm
[
all
...]
WebHTMLView.mm
37
#import "
WebArchive
.h"
[
all
...]
WebView.mm
[
all
...]
/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;
WebKit.h
30
#import <WebKit/
WebArchive
.h>
WebNSPasteboardExtras.mm
32
#import "
WebArchive
.h"
198
- (void)_web_writePromisedRTFDFromArchive:(
WebArchive
*)archive containsImage:(BOOL)containsImage
233
archive:(
WebArchive
*)archive
264
archive:(
WebArchive
*)archive
/external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.mm
28
#import "
WebArchive
.h"
128
WebArchive
*archive = [element
webArchive
];
/external/webkit/Source/WebKit/win/Interfaces/
WebKit.idl
265
coclass
WebArchive
{
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebDragClientMac.mm
44
#import <WebKit/
WebArchive
.h>
/external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTree.mm
62
#import <WebKit/
WebArchive
.h>
[
all
...]
Completed in 435 milliseconds