HomeSort by relevance Sort by last modified time
    Searched defs:opener (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/
RemoteFrameClient.cpp 17 WebCore::Frame* RemoteFrameClient::opener() const function in class:blink::RemoteFrameClient
19 return toWebCoreFrame(m_webFrame->opener());
WebFrame.cpp 57 WebFrame* WebFrame::opener() const function in class:blink::WebFrame
62 void WebFrame::setOpener(WebFrame* opener)
66 if (opener)
67 opener->m_openedFrameTracker->add(this);
68 m_opener = opener;
FrameLoaderClientImpl.cpp 240 Frame* FrameLoaderClientImpl::opener() const function in class:blink::FrameLoaderClientImpl
242 return toWebCoreFrame(m_webFrame->opener());
245 void FrameLoaderClientImpl::setOpener(Frame* opener)
248 m_webFrame->setOpener(WebLocalFrameImpl::fromFrame(toLocalFrame(opener)));
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 61 ClassPathOpener opener; local
63 opener = new ClassPathOpener(path, true,
131 opener.process();
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_order_controller.cc 38 content::WebContents* opener = tabstrip_->GetActiveWebContents(); local
42 opener, tabstrip_->active_index());
45 // Otherwise insert adjacent to opener...
63 // The parent opener should never be the same as the controller being removed.
80 // parent_opener itself. Note that we use "group" here since opener is
87 // No opener set, fall through to the default handler...
106 // Forget any group/opener relationships that need to be reset whenever
tab_strip_model.cc 35 // opener relationships for the tab in which the transition occurred to be
148 WebContents* opener() const { return opener_; } function in class:TabStripModel::WebContentsData
192 // before selection moves elsewhere, their opener is selected. But if
193 // selection shifts to _any_ tab (including their opener), the group
306 // Anything opened by a link we deem to have an opener.
566 return contents_data_[index]->opener();
570 WebContents* opener) {
572 DCHECK(opener);
573 contents_data_[index]->set_opener(opener);
576 int TabStripModel::GetIndexOfNextWebContentsOpenedBy(const WebContents* opener,
1151 WebContents* opener = contents_data_[index]->group(); local
    [all...]
tab_strip_model_unittest.cc 676 // Opener methods are tested below...
686 // This is a basic test of opener functionality. opener is created
688 // background with opener set as their opener.
690 WebContents* opener = CreateWebContents(); local
691 tabstrip.AppendWebContents(opener, true);
711 // All the tabs should have the same opener.
713 EXPECT_EQ(opener, tabstrip.GetOpenerOfWebContentsAt(i));
716 EXPECT_EQ(2, tabstrip.GetIndexOfNextWebContentsOpenedBy(opener, 1, false))
783 WebContents* opener = CreateWebContents(); local
811 WebContents* opener = CreateWebContents(); local
893 WebContents* opener = CreateWebContents(); local
1138 WebContents* opener = CreateWebContents(); local
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubbies.js 273 var opener = {who: who, cb: cb};
278 this.pendingOpens_[which.namespace][which.device].push(opener);
280 this.pendingOpens_[which.namespace][which.device] = [opener];
  /external/chromium_org/content/public/browser/
web_contents.h 96 // The opener WebContents is the WebContents that initiated this request,
98 WebContents* opener; member in struct:content::WebContents::CreateParams
100 // If the opener is suppressed, then the new WebContents doesn't hold a
101 // reference to its opener.
528 // Does this have an opener associated with it?
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 62 ClassPathOpener opener; local
  /external/chromium_org/chrome/browser/extensions/
extension_tab_util.cc 149 WebContents* opener = NULL; local
158 &opener,
244 if (opener)
245 tab_strip->SetOpenerOfWebContentsAt(new_index, opener);
380 WebContents* opener = tab_strip->GetOpenerOfWebContentsAt(tab_index); local
381 if (opener)
382 result->SetInteger(keys::kOpenerTabIdKey, GetTabId(opener));
  /external/chromium_org/chrome/browser/extensions/api/messaging/
message_service.cc 77 scoped_ptr<MessagePort> opener; member in struct:extensions::MessageService::MessageChannel
304 // Include info about the opener's tab (if it was a tab).
393 channel->opener.reset(new ExtensionMessagePort(source, MSG_ROUTING_CONTROL,
418 // Keep the opener alive until the channel is closed.
419 channel->opener->IncrementLazyKeepaliveCount();
487 channel->opener.reset(new ExtensionMessagePort(params->source,
498 // Send the connect event to the receiver. Give it the opener's port ID (the
499 // opener has the opposite port ID).
509 channel->opener->IncrementLazyKeepaliveCount();
550 channel->receiver.get() : channel->opener.get()
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_impl.h 96 WebContentsImpl* opener);
98 // Returns the opener WebContentsImpl, if any. This can be set to null if the
99 // opener is closed or the page clears its window.opener.
100 WebContentsImpl* opener() const { return opener_; } function in class:content::WebContentsImpl
658 WebContentsImpl* opener);
666 // Clears this tab's opener if it has been closed.
    [all...]
  /external/chromium_org/chrome/browser/guest_view/web_view/
web_view_guest.cc 427 // lifetime of the new guest is no longer managed by the opener guest.
583 // Set the attach params to use the same partition as the opener.
1463 WebViewGuest* opener = GetOpener(); local
    [all...]
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.cc 631 !frame->opener() &&
1308 WebSecurityOrigin opener = frame->opener()->document().securityOrigin(); local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_view_host_impl.cc 304 // Ensure the RenderView sets its opener correctly.
1027 RenderViewHostImpl* opener = local
1109 RenderViewHostImpl* opener = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.cpp 312 if (historyCommitType == StandardCommit && (m_documentLoader->urlForHistory().isEmpty() || (opener() && !m_currentItem && m_documentLoader->originalRequest().url().isEmpty())))
509 LocalFrame* FrameLoader::opener() function in class:WebCore::FrameLoader
512 return client() ? toLocalFrame(client()->opener()) : 0;
515 void FrameLoader::setOpener(LocalFrame* opener)
517 // If the frame is already detached, the opener has already been cleared.
519 client()->setOpener(opener);
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 595 ClassPathOpener opener; local
597 opener = new ClassPathOpener(pathname, false, filter,
630 parallelProcessorFutures.add(threadPool.submit(new ParallelProcessor(opener)));
632 if (opener.process()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalDOMWindow.cpp 945 if (opener() && opener() != this && activeDocument->domWindow() == opener())
1273 LocalDOMWindow* LocalDOMWindow::opener() const function in class:WebCore::LocalDOMWindow
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker.cpp 2476 int opener = (lastWinding & windingMask) == 0; local
    [all...]
  /external/skia/experimental/Intersection/
EdgeWalker.cpp 2476 int opener = (lastWinding & windingMask) == 0; local
    [all...]
  /external/chromium_org/content/renderer/
render_frame_impl.cc 327 // 2. The origin of the url and the opener is the same in which case the
328 // opener relationship is maintained.
335 // The opener relationship between the new window and the parent allows the
339 blink::WebFrame* opener = frame->opener(); local
340 if (!opener)
343 if (url.GetOrigin() != GURL(opener->document().url()).GetOrigin())
    [all...]
  /prebuilts/sdk/tools/darwin/lib/
dx.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 917 milliseconds