HomeSort by relevance Sort by last modified time
    Searched defs:opener (Results 1 - 24 of 24) 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_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 36 // opener relationships for the tab in which the transition occurred to be
146 WebContents* opener() const { return opener_; } function in class:TabStripModel::WebContentsData
190 // before selection moves elsewhere, their opener is selected. But if
191 // selection shifts to _any_ tab (including their opener), the group
304 // Anything opened by a link we deem to have an opener.
567 return contents_data_[index]->opener();
571 WebContents* opener) {
573 DCHECK(opener);
574 contents_data_[index]->set_opener(opener);
577 int TabStripModel::GetIndexOfNextWebContentsOpenedBy(const WebContents* opener,
1174 WebContents* opener = contents_data_[index]->group(); local
    [all...]
tab_strip_model_unittest.cc 677 // Opener methods are tested below...
687 // This is a basic test of opener functionality. opener is created
689 // background with opener set as their opener.
691 WebContents* opener = CreateWebContents(); local
692 tabstrip.AppendWebContents(opener, true);
712 // All the tabs should have the same opener.
714 EXPECT_EQ(opener, tabstrip.GetOpenerOfWebContentsAt(i));
717 EXPECT_EQ(2, tabstrip.GetIndexOfNextWebContentsOpenedBy(opener, 1, false))
784 WebContents* opener = CreateWebContents(); local
812 WebContents* opener = CreateWebContents(); local
894 WebContents* opener = CreateWebContents(); local
1139 WebContents* opener = CreateWebContents(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
RemoteFrameClient.cpp 19 Frame* RemoteFrameClient::opener() const function in class:blink::RemoteFrameClient
21 return toCoreFrame(m_webFrame->opener());
WebFrame.cpp 95 WebFrame* WebFrame::opener() const function in class:blink::WebFrame
100 void WebFrame::setOpener(WebFrame* opener)
104 if (opener)
105 opener->m_openedFrameTracker->add(this);
106 m_opener = opener;
FrameLoaderClientImpl.cpp 253 Frame* FrameLoaderClientImpl::opener() const function in class:blink::FrameLoaderClientImpl
255 return toCoreFrame(m_webFrame->opener());
258 void FrameLoaderClientImpl::setOpener(Frame* opener)
260 m_webFrame->setOpener(WebFrame::fromFrame(opener));
  /external/chromium_org/content/public/browser/
web_contents.h 99 // The opener WebContents is the WebContents that initiated this request,
101 WebContents* opener; member in struct:content::WebContents::CreateParams
103 // If the opener is suppressed, then the new WebContents doesn't hold a
104 // reference to its opener.
538 // Does this have an opener associated with it?
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubbies.js 312 var opener = {who: who, cb: cb};
317 this.pendingOpens_[which.namespace][which.device].push(opener);
319 this.pendingOpens_[which.namespace][which.device] = [opener];
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 62 ClassPathOpener opener; local
  /external/chromium_org/chrome/browser/extensions/
extension_tab_util.cc 152 WebContents* opener = NULL; local
161 &opener,
247 if (opener)
248 tab_strip->SetOpenerOfWebContentsAt(new_index, opener);
403 WebContents* opener = tab_strip->GetOpenerOfWebContentsAt(tab_index); local
404 if (opener)
405 result->SetInteger(keys::kOpenerTabIdKey, GetTabId(opener));
  /external/chromium_org/base/android/linker/
linker_jni.cc 241 const LibraryOpener& opener) {
253 if (!opener.Open(library.GetPtr(), library_name, context)) {
345 FileLibraryOpener opener; local
348 static_cast<size_t>(load_address), lib_info_obj, opener);
381 ZipLibraryOpener opener(zipfile_name_str.c_str());
384 static_cast<size_t>(load_address), lib_info_obj, opener);
  /external/chromium_org/chrome/browser/extensions/api/messaging/
message_service.cc 75 scoped_ptr<MessagePort> opener; member in struct:extensions::MessageService::MessageChannel
293 // Include info about the opener's tab (if it was a tab).
382 channel->opener.reset(new ExtensionMessagePort(source, MSG_ROUTING_CONTROL,
407 // Keep the opener alive until the channel is closed.
408 channel->opener->IncrementLazyKeepaliveCount();
476 channel->opener.reset(new ExtensionMessagePort(params->source,
487 // Send the connect event to the receiver. Give it the opener's port ID (the
488 // opener has the opposite port ID).
498 channel->opener->IncrementLazyKeepaliveCount();
539 channel->receiver.get() : channel->opener.get()
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_impl.h 106 WebContentsImpl* opener);
110 // Returns the opener WebContentsImpl, if any. This can be set to null if the
111 // opener is closed or the page clears its window.opener.
112 WebContentsImpl* opener() const { return opener_; } function in class:content::WebContentsImpl
    [all...]
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.cc 686 !frame->opener() &&
1379 WebSecurityOrigin opener = frame->opener()->document().securityOrigin(); local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_view_host_impl.cc 293 // Ensure the RenderView sets its opener correctly.
946 RenderViewHostImpl* opener = local
1052 RenderViewHostImpl* opener = local
    [all...]
  /external/chromium_org/extensions/browser/guest_view/web_view/
web_view_guest.cc 294 // lifetime of the new guest is no longer managed by the opener guest.
488 // Set the attach params to use the same partition as the opener.
1028 WebViewGuest* opener = GetOpener(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoader.cpp 351 if (historyCommitType == StandardCommit && (m_documentLoader->urlForHistory().isEmpty() || (opener() && !m_currentItem && m_documentLoader->originalRequest().url().isEmpty())))
514 Frame* FrameLoader::opener() function in class:blink::FrameLoader
516 return client() ? client()->opener() : 0;
519 void FrameLoader::setOpener(LocalFrame* opener)
521 // If the frame is already detached, the opener has already been cleared.
523 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 929 if (opener() && opener() != this && activeDocument->domWindow() == opener())
1259 LocalDOMWindow* LocalDOMWindow::opener() const function in class:blink::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 341 // 2. The origin of the url and the opener is the same in which case the
342 // opener relationship is maintained.
349 // The opener relationship between the new window and the parent allows the
353 blink::WebFrame* opener = frame->opener(); local
354 if (!opener)
357 if (url.GetOrigin() != GURL(opener->document().url()).GetOrigin())
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 1349 milliseconds