/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
HyperParser.py | 93 # The bracket to which we belong should be an opener. 94 # If it's an opener, it has to have a character.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
register.py | 295 opener = urllib2.build_opener( 300 result = opener.open(req)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
HyperParser.py | 93 # The bracket to which we belong should be an opener. 94 # If it's an opener, it has to have a character.
|
/external/chromium/chrome/browser/extensions/ |
extension_messages_browsertest.cc | 129 // Now simulate getting a message back from the channel opener.
|
/external/chromium_org/chrome/browser/extensions/ |
extension_tabs_apitest.cc | 137 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "opener.html")) << message_;
|
app_process_apitest.cc | 121 // Opening tabs with window.open should keep the page in the opener's 219 // app if it has an opener, because some OAuth providers make script calls 242 // If one of the popup tabs navigates back to the app, window.opener should 253 "window.domAutomationController.send(window.opener != null)", [all...] |
/external/chromium_org/chrome/browser/tab_contents/ |
background_contents.cc | 107 // some way to scope navigation of a background page to its opener's security
|
/external/chromium_org/chrome/common/extensions/api/ |
file_system.idl | 63 // The optional list of accept options for this file opener. Each option
|
/external/chromium_org/content/browser/browser_plugin/ |
browser_plugin_guest.h | 114 BrowserPluginGuest* opener); 147 BrowserPluginGuest* opener() const { return opener_.get(); } function in class:content::BrowserPluginGuest 261 // by its opener, and it can begin loading resources. |extra_params| are 341 BrowserPluginGuest* opener);
|
/external/chromium_org/content/public/test/ |
mock_render_thread.h | 145 // Opener id reported by the Widget.
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8WindowCustom.cpp | 220 ExceptionState exceptionState(ExceptionState::SetterContext, "opener", "Window", info.Holder(), info.GetIsolate()); 226 // Opener can be shadowed if it is in the same domain. 237 info.Holder()->Delete(v8AtomicString(info.GetIsolate(), "opener")); 240 info.This()->Set(v8AtomicString(info.GetIsolate(), "opener"), value);
|
/external/chromium_org/content/browser/renderer_host/ |
render_view_host_impl.cc | 311 // Ensure the RenderView sets its opener correctly. 1325 RenderViewHostImpl* opener = local 1401 RenderViewHostImpl* opener = local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
FrameLoader.cpp | 517 Frame* FrameLoader::opener() function in class:WebCore::FrameLoader 522 void FrameLoader::setOpener(Frame* opener) 524 if (m_opener && !opener) 529 if (opener) 530 opener->loader().m_openedFrames.add(m_frame); 531 m_opener = opener; [all...] |
FrameLoader.h | 168 Frame* opener();
|
/external/chromium_org/chrome/browser/ui/blocked_content/ |
popup_blocker_browsertest.cc | 381 IN_PROC_BROWSER_TEST_F(PopupBlockerBrowserTest, Opener) { 383 base::FilePath(FILE_PATH_LITERAL("popup-opener.html")),
|
/external/chromium/chrome/browser/tab_contents/ |
background_contents.cc | 94 // some way to scope navigation of a background page to its opener's security
|
/external/chromium/chrome/common/extensions/ |
extension_messages.h | 239 // sending messages. If an error occurred, the opener will be notified
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
WorkerManager.js | 92 window.opener.postMessage({workerId: workerId, command: "sendMessageToBackend", message: message}, "*");
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_urllibnet.py | 106 # test getcode() with the fancy opener to get 404 error codes
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_urllibnet.py | 106 # test getcode() with the fancy opener to get 404 error codes
|
/external/chromium_org/third_party/openssl/openssl/crypto/ui/ |
ui.h | 249 an opener This function starts a session, maybe by opening 273 The way this is used, the opener is first called, then the writer for all 308 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
ui.h | 249 an opener This function starts a session, maybe by opening 273 The way this is used, the opener is first called, then the writer for all 308 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
|
/external/openssl/crypto/ui/ |
ui.h | 249 an opener This function starts a session, maybe by opening 273 The way this is used, the opener is first called, then the writer for all 308 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
|
/external/openssl/include/openssl/ |
ui.h | 249 an opener This function starts a session, maybe by opening 273 The way this is used, the opener is first called, then the writer for all 308 int UI_method_set_opener(UI_METHOD *method, int (*opener)(UI *ui));
|
/external/chromium_org/content/renderer/ |
render_view_impl.cc | 511 // 2. The origin of the url and the opener is the same in which case the 512 // opener relationship is maintained. 519 // The opener relationship between the new window and the parent allows the 523 blink::WebFrame* opener = frame->opener(); local 524 if (!opener) 527 if (url.GetOrigin() != GURL(opener->document().url()).GetOrigin()) [all...] |