HomeSort by relevance Sort by last modified time
    Searched refs:frameName (Results 26 - 50 of 69) sorted by null

12 3

  /external/webkit/WebKit/mac/WebView/
WebPolicyDelegate.h 171 newFrameName:(NSString *)frameName
WebFrameInternal.h 93 + (void)_createMainFrameWithPage:(WebCore::Page*)page frameName:(const WebCore::String&)name frameView:(WebFrameView *)frameView;
94 + (PassRefPtr<WebCore::Frame>)_createSubframeWithOwnerElement:(WebCore::HTMLFrameOwnerElement*)ownerElement frameName:(const WebCore::String&)name frameView:(WebFrameView *)frameView;
WebView.h 181 @method initWithFrame:frameName:groupName:
188 @param frameName The name to use for the top level frame. May be nil.
192 - (id)initWithFrame:(NSRect)frame frameName:(NSString *)frameName groupName:(NSString *)groupName;
WebViewPrivate.h 455 - (id)_initWithFrame:(NSRect)f frameName:(NSString *)frameName groupName:(NSString *)groupName usesDocumentViews:(BOOL)usesDocumentViews;
WebView.mm 586 - (void)_commonInitializationWithFrameName:(NSString *)frameName groupName:(NSString *)groupName usesDocumentViews:(BOOL)usesDocumentViews
635 [WebFrame _createMainFrameWithPage:_private->page frameName:frameName frameView:frameView];
684 - (id)_initWithFrame:(NSRect)f frameName:(NSString *)frameName groupName:(NSString *)groupName usesDocumentViews:(BOOL)usesDocumentViews
703 [self _commonInitializationWithFrameName:frameName groupName:groupName usesDocumentViews:usesDocumentViews];
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
PolicyDelegate.h 57 /* [in] */ BSTR frameName,
FrameLoadDelegate.cpp 76 string frameName = (webFrame == mainFrame) ? "main frame" : "frame";
77 frameName += " \"" + BSTRtoString(frameNameBSTR) + "\"";
80 return frameName;
  /external/webkit/WebCore/loader/archive/cf/
LegacyWebArchive.cpp 99 // FrameName should be left out if empty for subresources, but always included for main resources
100 const String& frameName(resource->frameName());
101 if (!frameName.isEmpty() || isMainResource) {
102 RetainPtr<CFStringRef> cfFrameName(AdoptCF, frameName.createCFString());
194 CFStringRef frameName = static_cast<CFStringRef>(CFDictionaryGetValue(dictionary, LegacyWebArchiveResourceFrameNameKey));
195 if (frameName && CFGetTypeID(frameName) != CFStringGetTypeID()) {
236 return ArchiveResource::create(SharedBuffer::create(CFDataGetBytePtr(resourceData), CFDataGetLength(resourceData)), KURL(ParsedURLString, url), mimeType, textEncoding, frameName, response);
  /external/webkit/WebKit/mac/DefaultDelegates/
WebDefaultPolicyDelegate.m 102 newFrameName:(NSString *)frameName
  /external/webkit/WebKit/win/Interfaces/
IWebPolicyDelegate.idl 189 newFrameName:(NSString *)frameName
192 HRESULT decidePolicyForNewWindowAction([in] IWebView* webView, [in] IPropertyBag* actionInformation, [in] IWebURLRequest* request, [in] BSTR frameName, [in] IWebPolicyDecisionListener* listener);
IWebFrame.idl 73 HRESULT name([out, retval] BSTR* frameName);
  /external/webkit/WebKit/qt/Api/
qwebframe_p.h 47 const WebCore::String& frameName = WebCore::String());
qwebframe.h 144 QString frameName() const;
  /external/webkit/WebCore/loader/
FrameLoader.cpp 262 ASSERT(!features.dialog || request.frameName().isEmpty());
264 if (!request.frameName().isEmpty() && request.frameName() != "_blank") {
265 Frame* frame = frameLoaderForFrameLookup->frame()->tree()->find(request.frameName());
294 if (request.frameName() != "_blank")
295 frame->tree()->setName(request.frameName());
369 bool FrameLoader::requestFrame(HTMLFrameOwnerElement* ownerElement, const String& urlString, const AtomicString& frameName)
384 frame = loadSubframe(ownerElement, url, frameName, m_outgoingReferrer);
    [all...]
DocumentLoader.h 131 PassRefPtr<Archive> popArchiveForSubframe(const String& frameName);
FrameLoaderClient.h 139 virtual void dispatchDecidePolicyForNewWindowAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, PassRefPtr<FormState>, const String& frameName) = 0;
  /external/webkit/WebCore/bindings/js/
JSDOMWindowCustom.cpp 663 Frame* openerFrame, const String& url, const String& frameName,
682 FrameLoadRequest frameRequest(request, frameName);
732 AtomicString frameName = args.at(1).isUndefinedOrNull() ? "_blank" : AtomicString(args.at(1).toString(exec));
749 if (!domWindowAllowPopUp(dynamicFrame, exec) && (frameName.isEmpty() || !frame->tree()->find(frameName)))
755 if (frameName == "_top") {
758 } else if (frameName == "_parent") {
795 frame = createWindow(exec, lexicalFrame, dynamicFrame, frame, urlString, frameName, windowFeatures, JSValue());
    [all...]
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm 78 static PassRefPtr<PluginRequest> create(uint32_t requestID, NSURLRequest* request, NSString* frameName, bool allowPopups)
80 return adoptRef(new PluginRequest(requestID, request, frameName, allowPopups));
85 NSString* frameName() const { return m_frameName.get(); }
89 PluginRequest(uint32_t requestID, NSURLRequest* request, NSString* frameName, bool allowPopups)
92 , m_frameName(frameName)
503 NSString *frameName = pluginRequest->frameName();
509 ASSERT(frameName || JSString);
510 if (frameName) {
513 frame = kit(core([m_pluginView webFrame])->loader()->findFrameForNavigation(frameName));
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8DOMWindowCustom.cpp 574 AtomicString frameName = (args[1]->IsUndefined() || args[1]->IsNull()) ? "_blank" : AtomicString(toWebCoreString(args[1]));
599 (frameName.isEmpty() || !frame->tree()->find(frameName))) {
606 if (frameName == "_top") {
609 } else if (frameName == "_parent") {
687 frame = V8BindingDOMWindow::createWindow(V8BindingState::Only(), callingFrame, enteredFrame, frame, urlString, frameName, windowFeatures, v8::Local<v8::Value>());
  /external/webkit/WebKit/win/
WebFrame.h 97 /* [retval][out] */ BSTR *frameName);
301 virtual void dispatchDecidePolicyForNewWindowAction(WebCore::FramePolicyFunction, const WebCore::NavigationAction&, const WebCore::ResourceRequest&, PassRefPtr<WebCore::FormState>, const WebCore::String& frameName);
  /external/webkit/WebCore/history/
HistoryItem.h 207 HistoryItem(const KURL& url, const String& frameName, const String& parent, const String& title);
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.h 104 virtual void dispatchDecidePolicyForNewWindowAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, PassRefPtr<FormState>, const String& frameName);
  /external/webkit/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.h 98 virtual void dispatchDecidePolicyForNewWindowAction(WebCore::FramePolicyFunction, const WebCore::NavigationAction&, const WebCore::ResourceRequest&, WTF::PassRefPtr<WebCore::FormState>, const WebCore::String& frameName);
  /external/webkit/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.h 116 const WebCore::NavigationAction&, const WebCore::ResourceRequest&, PassRefPtr<WebCore::FormState>, const WebCore::String& frameName);
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginView.mm     [all...]

Completed in 246 milliseconds

12 3