Home
last modified time | relevance | path

Searched refs:firstWindow (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/page/
DLocation.cpp149 void Location::setHref(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow) in setHref() argument
153 m_frame->domWindow()->setLocation(urlString, activeWindow, firstWindow); in setHref()
156 void Location::setProtocol(const String& protocol, DOMWindow* activeWindow, DOMWindow* firstWindow,… in setProtocol() argument
165 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow); in setProtocol()
168 void Location::setHost(const String& host, DOMWindow* activeWindow, DOMWindow* firstWindow) in setHost() argument
174 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow); in setHost()
177 void Location::setHostname(const String& hostname, DOMWindow* activeWindow, DOMWindow* firstWindow) in setHostname() argument
183 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow); in setHostname()
186 void Location::setPort(const String& portString, DOMWindow* activeWindow, DOMWindow* firstWindow) in setPort() argument
196 m_frame->domWindow()->setLocation(url.string(), activeWindow, firstWindow); in setPort()
[all …]
DLocation.h51 void setHref(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
54 void assign(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
55 void replace(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
58 … void setProtocol(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow, ExceptionCode&);
60 void setHost(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
62 void setHostname(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
64 void setPort(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
66 void setPathname(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
68 void setSearch(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
70 void setHash(const String&, DOMWindow* activeWindow, DOMWindow* firstWindow);
DDOMWindow.h132 void setLocation(const String& location, DOMWindow* activeWindow, DOMWindow* firstWindow,
146 DOMWindow* activeWindow, DOMWindow* firstWindow);
150 … DOMWindow* activeWindow, DOMWindow* firstWindow, PrepareDialogFunction, void* functionContext);
DDOMWindow.cpp1682 …tLocation(const String& urlString, DOMWindow* activeWindow, DOMWindow* firstWindow, SetLocationLoc… in setLocation() argument
1694 Frame* firstFrame = firstWindow->frame(); in setLocation()
1805 DOMWindow* activeWindow, DOMWindow* firstWindow) in open() argument
1812 Frame* firstFrame = firstWindow->frame(); in open()
1816 if (!firstWindow->allowPopUp()) { in open()
1869 …DOMWindow* activeWindow, DOMWindow* firstWindow, PrepareDialogFunction function, void* functionCon… in showModalDialog() argument
1876 Frame* firstFrame = firstWindow->frame(); in showModalDialog()
1883 if (!canShowModalDialogNow(m_frame) || !firstWindow->allowPopUp()) in showModalDialog()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8LocationCustom.cpp60 impl->setHash(hash, state->activeWindow(), state->firstWindow()); in hashAccessorSetter()
72 impl->setHost(host, state->activeWindow(), state->firstWindow()); in hostAccessorSetter()
84 impl->setHostname(hostname, state->activeWindow(), state->firstWindow()); in hostnameAccessorSetter()
96 impl->setHref(href, state->activeWindow(), state->firstWindow()); in hrefAccessorSetter()
108 impl->setPathname(pathname, state->activeWindow(), state->firstWindow()); in pathnameAccessorSetter()
120 impl->setPort(port, state->activeWindow(), state->firstWindow()); in portAccessorSetter()
133 impl->setProtocol(protocol, state->activeWindow(), state->firstWindow(), ec); in protocolAccessorSetter()
147 impl->setSearch(search, state->activeWindow(), state->firstWindow()); in searchAccessorSetter()
224 impl->replace(urlString, state->activeWindow(), state->firstWindow()); in replaceCallback()
237 impl->assign(urlString, state->activeWindow(), state->firstWindow()); in assignCallback()
DV8DOMWindowCustom.cpp198 DOMWindow* firstWindow = state->firstWindow(); in locationAccessorSetter() local
199 if (!firstWindow) in locationAccessorSetter()
202 imp->setLocation(toWebCoreString(value), activeWindow, firstWindow); in locationAccessorSetter()
427 DOMWindow* firstWindow = state->firstWindow(); in showModalDialogCallback() local
435 …impl->showModalDialog(urlString, dialogFeaturesString, activeWindow, firstWindow, setUpDialog, &ha… in showModalDialogCallback()
448 DOMWindow* firstWindow = state->firstWindow(); in openCallback() local
455 …> openedWindow = impl->open(urlString, frameName, windowFeaturesString, activeWindow, firstWindow); in openCallback()
/external/webkit/Source/WebCore/bindings/v8/specialization/
DV8BindingState.h53 DOMWindow* firstWindow();
DV8BindingState.cpp58 DOMWindow* State<V8Binding>::firstWindow() in firstWindow() function in WebCore::State
/external/webkit/Source/WebCore/bindings/v8/
DV8DOMWindowShell.cpp634 window->setLocation(locationString, state->activeWindow(), state->firstWindow()); in setLocation()
/external/webkit/Source/WebCore/
DChangeLog-2011-02-1638267 (WebCore::::firstWindow):