Home
last modified time | relevance | path

Searched refs:windowRef (Results 1 – 15 of 15) sorted by relevance

/external/webkit/Source/WebKit/mac/Carbon/
DCarbonWindowFrame.m66 WindowRef windowRef = [carbonWindow windowRef];
68 GetWindowBounds (windowRef, kWindowTitleBarRgn, &globalBounds);
228 WindowRef windowRef;
232 windowRef = [carbonWindow windowRef];
233 osStatus = SetWindowTitleWithCFString(windowRef, (CFStringRef)title);
246 WindowRef windowRef;
250 windowRef = [carbonWindow windowRef];
251 osStatus = CopyWindowTitleAsCFString(windowRef, &windowTitle);
DCarbonWindowAdapter.h56 - (WindowRef)windowRef;
DCarbonWindowAdapter.mm305 - (WindowRef)windowRef { method
317 // an NSCarbonWindow does not manage the windowRef. The windowRef manages the NSCarbonWindow
335 osStatus = GetWindowClass([self windowRef], &windowClass);
/external/webkit/Source/WebKit/mac/Plugins/
DWebNetscapePluginEventHandlerCarbon.mm127 WindowRef windowRef = (WindowRef)[[m_pluginView window] windowRef];
128 event.message = (unsigned long)windowRef;
283 WindowRef windowRef = (WindowRef)[[m_pluginView window] windowRef];
285 SetUserFocusWindow(windowRef);
291 event.message = (unsigned long)windowRef;
364 InstallEventHandler(GetWindowEventTarget((WindowRef)[[m_pluginView window] windowRef]),
409 return [window windowRef];
DWebNetscapePluginView.mm204 // The WindowRef created by -[NSWindow windowRef] has a QuickDraw GrafPort that covers
222 SetPort(GetWindowPort((WindowRef)[currentWindow windowRef]));
292 WindowRef windowRef = (WindowRef)[[self currentWindow] windowRef];
293 ASSERT(windowRef);
302 CGrafPtr port = GetWindowPort(windowRef);
360 CGrafPtr port = GetWindowPort(windowRef);
491 InvalWindowRgn(windowRef, clipRegion);
516 nPort.cgPort.window = windowRef;
572 WindowRef windowRef = (WindowRef)[[self currentWindow] windowRef];
573 CGrafPtr port = GetWindowPort(windowRef);
[all …]
DWebNetscapePluginEventHandlerCocoa.mm250 InstallEventHandler(GetWindowEventTarget((WindowRef)[[m_pluginView window] windowRef]),
/external/clang/test/CodeGen/
Dpragma-pack-3.c10 void *windowRef; member
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
DNetscapePluginMac.mm250 ASSERT(!windowMap().contains(windowRef()));
251 windowMap().set(windowRef(), this);
266 if (WindowRef window = windowRef()) {
304 NetscapePlugin* NetscapePlugin::netscapePluginFromWindow(WindowRef windowRef)
306 return windowMap().get(windowRef);
309 WindowRef NetscapePlugin::windowRef() const
415 event.message = reinterpret_cast<unsigned long>(windowRef());
805 HiliteWindow(windowRef(), hasFocus);
807 SetUserFocusWindow(windowRef());
810 event.message = reinterpret_cast<unsigned long>(windowRef());
[all …]
/external/webkit/Source/WebKit2/PluginProcess/mac/
DPluginProcessMac.mm141 static bool isWindowActive(WindowRef windowRef, bool& result)
144 if (NetscapePlugin* plugin = NetscapePlugin::netscapePluginFromWindow(windowRef)) {
/external/webkit/Source/WebCore/plugins/mac/
DPluginViewMac.mm107 return static_cast<WindowRef>([qt_mac_window_for(widget) windowRef]);
735 WindowRef windowRef = nativeWindowFor(platformPluginWidget());
738 GetWindowBounds(windowRef, kWindowStructureRgn, &structure);
739 GetWindowBounds(windowRef, kWindowContentRgn, &content);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNetscapePlugin.h62 WindowRef windowRef() const;
/external/webkit/WebKitLibraries/
DWebKitSystemInterface.h185 NSEvent *WKCreateNSEventWithCarbonClickEvent(EventRef inEvent, WindowRef windowRef);
/external/webkit/Source/WebKit/mac/WebView/
DWebView.mm6116 …iewsNeedDisplay = HIViewGetNeedsDisplay(HIViewGetRoot(static_cast<WindowRef>([window windowRef])));
/external/webkit/Source/WebKit/mac/
DChangeLog-2006-02-094089 The WindowRef created by -[NSWindow windowRef] has a QuickDraw GrafPort that covers
30754 (-[CarbonWindowAdapter windowRef]):
/external/webkit/Source/WebCore/
DChangeLog-2010-12-06128866 and fix bug by getting the Carbon windowRef from the NSWindow.