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

1 2 3 4

  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginRequest.h 40 - (id)initWithRequest:(NSURLRequest *)request frameName:(NSString *)frameName notifyData:(void *)notifyData sendNotification:(BOOL)sendNotification didStartFromUserGesture:(BOOL)currentEventIsUserGesture;
43 - (NSString *)frameName;
WebPluginRequest.m 35 - (id)initWithRequest:(NSURLRequest *)request frameName:(NSString *)frameName notifyData:(void *)notifyData sendNotification:(BOOL)sendNotification didStartFromUserGesture:(BOOL)currentEventIsUserGesture
40 _frameName = [frameName retain];
58 - (NSString *)frameName
  /external/webkit/Source/WebKit/mac/WebView/
WebResource.h 46 @method initWithData:URL:MIMEType:textEncodingName:frameName
52 @param frameName The frame name of the resource if the resource represents the contents of an entire HTML frame (can be nil).
55 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName;
82 @method frameName
85 - (NSString *)frameName;
WebResourcePrivate.h 37 frameName:(NSString *)frameName
WebResource.mm 120 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName
122 return [self _initWithData:data URL:URL MIMEType:MIMEType textEncodingName:textEncodingName frameName:frameName response:nil copyData:YES];
135 NSString *mimeType = nil, *textEncoding = nil, *frameName = nil;
153 frameName = object;
162 _private = [[WebResourcePrivate alloc] initWithCoreResource:ArchiveResource::create(SharedBuffer::wrapNSData(data), url, mimeType, textEncoding, frameName, response)];
173 NSString *mimeType = nil, *textEncoding = nil, *frameName = nil;
182 frameName = resource->frameName();
    [all...]
  /external/webkit/Source/WebCore/page/
FrameLoadRequest.h 47 FrameLoadRequest(PassRefPtr<SecurityOrigin> requester, const ResourceRequest& resourceRequest, const String& frameName)
50 , m_frameName(frameName)
61 const String& frameName() const { return m_frameName; }
62 void setFrameName(const String& frameName) { m_frameName = frameName; }
  /external/webkit/Source/WebCore/loader/archive/
ArchiveResourceCollection.cpp 57 const String& frameName = (*iFrame)->mainResource()->frameName();
58 if (!frameName.isNull())
59 m_subframes.set(frameName, iFrame->get());
84 PassRefPtr<Archive> ArchiveResourceCollection::popSubframeArchive(const String& frameName)
86 return m_subframes.take(frameName);
ArchiveResource.cpp 36 inline ArchiveResource::ArchiveResource(PassRefPtr<SharedBuffer> data, const KURL& url, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse& response)
40 , m_frameName(frameName)
45 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const KURL& url, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse& response)
51 return adoptRef(new ArchiveResource(data, url, mimeType, textEncoding, frameName,
54 return adoptRef(new ArchiveResource(data, url, mimeType, textEncoding, frameName, response));
ArchiveResource.h 40 const String& mimeType, const String& textEncoding, const String& frameName,
45 const String& frameName() const { return m_frameName; }
51 ArchiveResource(PassRefPtr<SharedBuffer>, const KURL&, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse&);
ArchiveResourceCollection.h 51 PassRefPtr<Archive> popSubframeArchive(const String& frameName);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebresourceprivate.h 37 gchar* frameName;
webkitwebresource.cpp 74 g_free(priv->frameName);
75 priv->frameName = NULL;
265 const gchar* frameName)
275 WebKitWebResource* webResource = webkit_web_resource_new_with_core_resource(ArchiveResource::create(buffer, KURL(KURL(), String::fromUTF8(uri)), String::fromUTF8(mimeType), String::fromUTF8(encoding), String::fromUTF8(frameName)));
395 if (!priv->frameName)
396 priv->frameName = g_strdup(priv->resource->frameName().utf8().data());
398 return priv->frameName;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebResource.idl 47 @method initWithData:URL:MIMEType:textEncodingName:frameName
53 @param frameName The frame name of the resource if the resource represents the contents of an entire HTML frame (can be nil).
55 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName;
57 HRESULT initWithData([in] IStream* data, [in] BSTR url, [in] BSTR mimeType, [in] BSTR textEncodingName, [in] BSTR frameName);
88 @method frameName
90 - (NSString *)frameName;
92 HRESULT frameName([out, retval] BSTR* name);
  /external/webkit/Tools/DumpRenderTree/qt/
WorkQueueItemQt.cpp 33 QWebFrame* findFrameNamed(const QString& frameName, QWebFrame* frame)
35 if (frame->frameName() == frameName)
39 if (QWebFrame* f = findFrameNamed(frameName, childFrame))
  /external/webkit/Source/WebCore/loader/
PolicyCallback.h 46 const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, const NavigationAction&, bool shouldContinue);
57 void set(const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, const NavigationAction&,
SubframeLoader.h 64 bool requestFrame(HTMLFrameOwnerElement*, const String& url, const AtomicString& frameName, bool lockHistory = true, bool lockBackForwardList = true);
65 bool requestObject(HTMLPlugInImageElement*, const String& url, const AtomicString& frameName,
84 Frame* loadOrRedirectSubframe(HTMLFrameOwnerElement*, const KURL&, const AtomicString& frameName, bool lockHistory, bool lockBackForwardList);
PolicyChecker.h 55 void checkNewWindowPolicy(const NavigationAction&, NewWindowPolicyDecisionFunction, const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, void* argument);
  /external/webkit/Source/WebKit/win/
WebResource.h 41 WebResource(IStream* data, const WebCore::KURL& url, const WTF::String& mimeType, const WTF::String& textEncodingName, const WTF::String& frameName);
56 /* [in] */ BSTR frameName);
70 virtual HRESULT STDMETHODCALLTYPE frameName(
WebResource.cpp 38 WebResource::WebResource(IStream* data, const WebCore::KURL& url, const WTF::String& mimeType, const WTF::String& textEncodingName, const WTF::String& frameName)
44 , m_frameName(frameName)
102 /* [in] */ BSTR frameName)
108 m_frameName = String(frameName);
156 HRESULT STDMETHODCALLTYPE WebResource::frameName(
DefaultPolicyDelegate.cpp 139 /*[in]*/ BSTR /*frameName*/,
188 BSTR frameName;
189 frame->name(&frameName);
191 LOG_ERROR("called unableToImplementPolicyWithError:%S inFrame:%S", errorStr ? errorStr : TEXT(""), frameName ? frameName : TEXT(""));
193 SysFreeString(frameName);
DefaultPolicyDelegate.h 56 /* [in] */ BSTR frameName,
  /external/webkit/Tools/DumpRenderTree/gtk/
DumpRenderTree.cpp 275 const gchar* frameName = webkit_web_frame_get_name(frame);
276 result = g_strdup_printf("\n--------\nFrame: '%s'\n--------\n%s\n", frameName, innerText.data());
748 char* frameName = g_strdup(webkit_web_frame_get_name(frame));
752 if (frameName && (frameName[0] != '\0')) {
753 char* tmp = g_strdup_printf("main frame \"%s\"", frameName);
754 g_free(frameName);
755 frameName = tmp;
757 g_free(frameName);
758 frameName = g_strdup("main frame")
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPolicyClient.h 51 bool decidePolicyForNewWindowAction(WebPageProxy*, WebFrameProxy*, WebCore::NavigationType, WebEvent::Modifiers, WebMouseEvent::Button, const WebCore::ResourceRequest&, const String& frameName, WebFramePolicyListenerProxy*, APIObject* userData);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePagePolicyClient.h 49 WKBundlePagePolicyAction decidePolicyForNewWindowAction(WebPage*, WebFrame*, InjectedBundleNavigationAction*, const WebCore::ResourceRequest&, const String& frameName, RefPtr<APIObject>& userData);
  /external/webkit/Tools/DumpRenderTree/win/
PolicyDelegate.cpp 177 BSTR frameName;
178 frame->name(&frameName);
179 wstring frameNameMessage = frameName;
184 SysFreeString(frameName);

Completed in 335 milliseconds

1 2 3 4