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

  /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/chrome/browser/tabs/
tab_strip_model_order_controller.cc 40 NavigationController* opener = local
47 opener, tabstrip_->active_index());
50 opener, tabstrip_->active_index());
54 // Otherwise insert adjacent to opener...
77 // The parent opener should never be the same as the controller being removed.
94 // parent_opener itself. Note that we use "group" here since opener is
101 // No opener set, fall through to the default handler...
123 // Forget any group/opener relationships that need to be reset whenever
tab_strip_model.h 107 // If set the newly inserted tab's opener is set to the active tab. If not
108 // set the tab may still inherit the group/opener under certain situations.
293 // the opener to find the next tab. Under some circumstances the group
294 // relationship may exist but the opener may not.
295 int GetIndexOfNextTabContentsOpenedBy(const NavigationController* opener,
300 // specified opener.
301 int GetIndexOfFirstTabContentsOpenedBy(const NavigationController* opener,
305 // specified opener, starting at |start_index|.
306 int GetIndexOfLastTabContentsOpenedBy(const NavigationController* opener,
316 // Forget all Opener relationships that are stored (but _not_ grou
595 NavigationController* opener; member in struct:TabStripModel::TabContentsData
    [all...]
tab_strip_model.cc 38 // opener relationships for the tab in which the transition occured to be
143 // Anything opened by a link we deem to have an opener.
151 data->opener = &selected_contents->controller();
391 return contents_data_.at(index)->opener;
395 const NavigationController* opener, int start_index, bool use_group) const {
396 DCHECK(opener);
401 if (OpenerMatches(contents_data_[i], opener, use_group))
406 if (OpenerMatches(contents_data_[i], opener, use_group))
413 const NavigationController* opener,
415 DCHECK(opener);
1069 NavigationController* opener = contents_data_[index]->group; local
    [all...]
tab_strip_model_unittest.cc 590 // Opener methods are tested below...
600 // This is a basic test of opener functionality. opener_contents is created
602 // background with opener_contents set as their opener.
605 NavigationController* opener = &opener_contents->controller(); local
626 // All the tabs should have the same opener.
628 EXPECT_EQ(opener, tabstrip.GetOpenerOfTabContentsAt(i));
631 EXPECT_EQ(2, tabstrip.GetIndexOfNextTabContentsOpenedBy(opener, 1, false));
634 EXPECT_EQ(4, tabstrip.GetIndexOfNextTabContentsOpenedBy(opener, 5, false));
636 // Tests the method that finds the last tab opened by the same opener in the
638 // specified opener)
756 NavigationController* opener = &opener_contents->controller(); local
    [all...]
  /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.h 99 // If set the newly inserted tab's opener is set to the active tab. If not
100 // set the tab may still inherit the group/opener under certain situations.
273 // there is no opener on record.
276 // Changes the |opener| of the WebContents at |index|.
277 // Note: |opener| must be in this tab strip.
278 void SetOpenerOfWebContentsAt(int index, content::WebContents* opener);
282 // true, the group property of the tab is used instead of the opener to find
284 // the opener may not.
285 int GetIndexOfNextWebContentsOpenedBy(const content::WebContents* opener,
290 // specified opener, starting at |start_index|
603 content::WebContents* opener; member in struct:TabStripModel::WebContentsData
    [all...]
tab_strip_model.cc 36 // opener relationships for the tab in which the transition occurred to be
180 // Anything opened by a link we deem to have an opener.
188 data->opener = active_contents;
433 return contents_data_[index]->opener;
437 WebContents* opener) {
439 DCHECK(opener);
440 contents_data_[index]->opener = opener;
443 int TabStripModel::GetIndexOfNextWebContentsOpenedBy(const WebContents* opener,
446 DCHECK(opener);
1047 WebContents* opener = contents_data_[index]->group; local
    [all...]
tab_strip_model_unittest.cc 583 // Opener methods are tested below...
593 // This is a basic test of opener functionality. opener is created
595 // background with opener set as their opener.
597 WebContents* opener = CreateWebContents(); local
598 tabstrip.AppendWebContents(opener, true);
618 // All the tabs should have the same opener.
620 EXPECT_EQ(opener, tabstrip.GetOpenerOfWebContentsAt(i));
623 EXPECT_EQ(2, tabstrip.GetIndexOfNextWebContentsOpenedBy(opener, 1, false))
690 WebContents* opener = CreateWebContents(); local
718 WebContents* opener = CreateWebContents(); local
800 WebContents* opener = CreateWebContents(); local
1045 WebContents* opener = CreateWebContents(); local
    [all...]
  /external/chromium_org/content/public/browser/
web_contents.h 88 WebContents* opener; member in struct:content::WebContents::CreateParams
434 // Does this have an opener associated with it?
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 62 ClassPathOpener opener; local
  /external/chromium/chrome/browser/extensions/
extension_message_service.cc 45 ExtensionMessageService::MessagePort opener; member in struct:ExtensionMessageService::MessageChannel
157 // Include info about the opener's tab (if it was a tab).
196 // Include info about the opener's tab (if it was a tab).
230 channel->opener = MessagePort(source, MSG_ROUTING_CONTROL);
240 // Send the connect event to the receiver. Give it the opener's port ID (the
241 // opener has the opposite port ID).
305 channel_iter->second->receiver : channel_iter->second->opener;
323 iter->second->opener : iter->second->receiver;
355 current->second->opener.sender != current->second->receiver.sender;
357 if (current->second->opener.sender == sender)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_tab_util.cc 159 WebContents* opener = tab_strip->GetOpenerOfWebContentsAt(tab_index); local
160 if (opener)
161 result->SetInteger(keys::kOpenerTabIdKey, GetTabId(opener));
  /external/chromium_org/content/browser/browser_plugin/
browser_plugin_guest.h 104 BrowserPluginGuest* opener,
141 BrowserPluginGuest* opener() const { return opener_.get(); } function in class:content::BrowserPluginGuest
251 // by its opener, and it can begin loading resources.
305 BrowserPluginGuest* opener,
  /external/chromium_org/chrome/browser/extensions/api/messaging/
message_service.cc 70 scoped_ptr<MessagePort> opener; member in struct:extensions::MessageService::MessageChannel
264 // Include info about the opener's tab (if it was a tab).
323 channel->opener.reset(new ExtensionMessagePort(source, MSG_ROUTING_CONTROL,
347 // Keep the opener alive until the channel is closed.
348 channel->opener->IncrementLazyKeepaliveCount();
413 channel->opener.reset(new ExtensionMessagePort(params->source,
424 // Send the connect event to the receiver. Give it the opener's port ID (the
425 // opener has the opposite port ID).
434 channel->opener->IncrementLazyKeepaliveCount();
474 channel->receiver.get() : channel->opener.get()
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_impl.h 86 WebContentsImpl* opener);
88 // Returns the opener WebContentsImpl, if any. This can be set to null if the
89 // opener is closed or the page clears its window.opener.
90 WebContentsImpl* opener() const { return opener_; } function in class:content::WebContentsImpl
536 WebContentsImpl* opener);
545 // Clears this tab's opener if it has been closed.
    [all...]
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.cc 558 !frame->opener() &&
1151 WebSecurityOrigin opener = frame->opener()->document().securityOrigin(); local
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 563 ClassPathOpener opener; local
565 opener = new ClassPathOpener(pathname, false, filter,
596 return opener.process();
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_view_host_impl.cc 259 // Ensure the RenderView sets its opener correctly.
1024 RenderViewHostImpl* opener = local
1099 RenderViewHostImpl* opener = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.cpp 665 Frame* FrameLoader::opener() function in class:WebCore::FrameLoader
670 void FrameLoader::setOpener(Frame* opener)
672 if (m_opener && !opener)
677 if (opener)
678 opener->loader()->m_openedFrames.add(m_frame);
679 m_opener = opener;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMWindow.cpp 818 if (opener() && opener() != this && activeDocument->domWindow() == opener())
1145 DOMWindow* DOMWindow::opener() const function in class:WebCore::DOMWindow
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.cpp 631 WebFrame* WebFrameImpl::opener() const function in class:WebKit::WebFrameImpl
635 return fromFrame(frame()->loader()->opener());
    [all...]
  /external/chromium_org/content/renderer/
render_view_impl.cc 524 // 2. The origin of the url and the opener is the same in which case the
525 // opener relationship is maintained.
532 // The opener relationship between the new window and the parent allows the
536 WebKit::WebFrame* opener = frame->opener(); local
537 if (!opener)
540 if (url.GetOrigin() != GURL(opener->document().url()).GetOrigin())
    [all...]

Completed in 699 milliseconds