/external/chromium_org/third_party/WebKit/Source/core/loader/ |
D | FrameLoadRequest.h | 61 …st(Document* originDocument, const ResourceRequest& resourceRequest, const AtomicString& frameName) in FrameLoadRequest() 64 , m_frameName(frameName) in FrameLoadRequest() 72 …inDocument, const ResourceRequest& resourceRequest, const AtomicString& frameName, ContentSecurity… in FrameLoadRequest() 75 , m_frameName(frameName) in FrameLoadRequest() 99 const AtomicString& frameName() const { return m_frameName; } in frameName() function 100 void setFrameName(const AtomicString& frameName) { m_frameName = frameName; } in setFrameName()
|
D | FrameLoader.cpp | 686 if (!request.formState() && request.frameName().isEmpty()) in prepareRequestForThisFrame() 695 if (!targetFrame && !request.frameName().isEmpty()) in shouldOpenInNewWindow() 736 …= request.formState() ? 0 : findFrameForNavigation(AtomicString(request.frameName()), request.form… in load()
|
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/ |
D | ArchiveResourceCollection.cpp | 61 const String& frameName = archive->mainResource()->frameName(); in addAllResources() local 62 if (!frameName.isNull()) { in addAllResources() 63 m_subframes.set(frameName, archive.get()); in addAllResources() 92 …TMLArchive> ArchiveResourceCollection::popSubframeArchive(const String& frameName, const KURL& url) in popSubframeArchive() argument 94 RefPtrWillBeRawPtr<MHTMLArchive> archive = m_subframes.take(frameName); in popSubframeArchive()
|
D | ArchiveResource.cpp | 34 …AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName, const ResourceR… in ArchiveResource() argument 40 , m_frameName(frameName) in ArchiveResource() 49 …AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName, const ResourceR… in create() argument 55 …return adoptRefWillBeNoop(new ArchiveResource(data, url, mimeType, textEncoding, frameName, resour… in create() 57 …return adoptRefWillBeNoop(new ArchiveResource(data, url, mimeType, textEncoding, frameName, respon… in create()
|
D | ArchiveResource.h | 45 const AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName, 55 const String& frameName() const { return m_frameName; } in frameName() function 60 …AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName, const ResourceR…
|
D | ArchiveResourceCollection.h | 56 PassRefPtrWillBeRawPtr<MHTMLArchive> popSubframeArchive(const String& frameName, const KURL&);
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | CreateWindow.cpp | 50 ASSERT(!features.dialog || request.frameName().isEmpty()); in createWindow() 52 …if (!request.frameName().isEmpty() && request.frameName() != "_blank" && policy == NavigationPolic… in createWindow() 53 …if (LocalFrame* frame = lookupFrame.loader().findFrameForNavigation(request.frameName(), openerFra… in createWindow() 54 if (request.frameName() != "_self") in createWindow() 87 if (request.frameName() != "_blank") in createWindow() 88 frame.tree().setName(request.frameName()); in createWindow() 118 LocalFrame* createWindow(const String& urlString, const AtomicString& frameName, const WindowFeatur… in createWindow() argument 136 FrameLoadRequest frameRequest(callingWindow.document(), request, frameName); in createWindow()
|
D | CreateWindow.h | 40 LocalFrame* createWindow(const String& urlString, const AtomicString& frameName, const WindowFeatur…
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLFrameOwnerElement.cpp | 239 bool HTMLFrameOwnerElement::loadOrRedirectSubframe(const KURL& url, const AtomicString& frameName, … in loadOrRedirectSubframe() argument 257 …return parentFrame->loader().client()->createFrame(url, frameName, Referrer(referrer, document().r… in loadOrRedirectSubframe()
|
D | HTMLFrameOwnerElement.h | 86 … bool loadOrRedirectSubframe(const KURL&, const AtomicString& frameName, bool lockBackForwardList);
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
D | ChromeWebContentsDelegateAndroid.java | 37 String frameName, String targetUrl, long newWebContents) { in webContentsCreated() argument
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
D | V8WindowCustom.cpp | 381 AtomicString frameName; in openMethodCustom() local 383 frameName = "_blank"; in openMethodCustom() 386 frameName = frameNameResource; in openMethodCustom() 390 …RefPtrWillBeRawPtr<LocalDOMWindow> openedWindow = impl->open(urlString, frameName, windowFeaturesS… in openMethodCustom()
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | FrameTestHelpers.h | 101 virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) OVERRIDE;
|
D | FrameTestHelpers.cpp | 307 WebFrame* TestWebFrameClient::createChildFrame(WebLocalFrame* parent, const WebString& frameName) in createChildFrame() argument
|
D | WebViewTest.cpp | 1660 virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) OVERRIDE; 1668 … CreateChildCounterFrameClient::createChildFrame(WebLocalFrame* parent, const WebString& frameName) in createChildFrame() argument 1671 return TestWebFrameClient::createChildFrame(parent, frameName); in createChildFrame()
|
D | WebFrameTest.cpp | 5631 virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) OVERRIDE in createChildFrame() argument
|
/external/chromium_org/mojo/services/html_viewer/ |
D | html_document_view.h | 71 const blink::WebString& frameName);
|
D | html_document_view.cc | 193 const blink::WebString& frameName) { in createChildFrame() argument
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | LocalDOMWindow.cpp | 1771 …ndow> LocalDOMWindow::open(const String& urlString, const AtomicString& frameName, const String& w… in open() argument 1790 if (frameName.isEmpty() || !m_frame->tree().find(frameName)) in open() 1797 if (frameName == "_top") in open() 1799 else if (frameName == "_parent") { in open() 1829 …LocalFrame* result = createWindow(urlString, frameName, windowFeatures, *callingWindow, *firstFram… in open()
|
D | LocalDOMWindow.h | 147 …awPtr<LocalDOMWindow> open(const String& urlString, const AtomicString& frameName, const String& w…
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebFrameClient.h | 153 …virtual WebFrame* createChildFrame(WebLocalFrame* parent, const WebString& frameName) { return 0; } in createChildFrame() argument
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | ChromeClientImpl.cpp | 242 …mFrame(frame), WrappedResourceRequest(r.resourceRequest()), features, r.frameName(), policy, shoul… in createWindow()
|
D | WebLocalFrameImpl.cpp | 1584 …meImpl* webframeChild = toWebLocalFrameImpl(m_client->createChildFrame(this, request.frameName())); in createChildFrame() 1592 …bframeChild->initializeCoreFrame(frame()->host(), ownerElement, request.frameName(), ownerElement-… in createChildFrame()
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
D | ContentViewCore.java | 1244 public void postMessageToFrame(String frameName, String message, 1247 nativePostMessageToFrame(mNativeContentViewCore, frameName, message, sourceOrigin,
|