HomeSort by relevance Sort by last modified time
    Searched full:window_frame (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/ui/message_center/cocoa/
tray_controller_unittest.mm 49 NSRect window_frame = [[controller_ window] frame];
50 EXPECT_EQ(right_point.x, NSMinX(window_frame));
55 window_frame = [[controller_ window] frame];
56 EXPECT_EQ(left_point.x - NSWidth(window_frame), NSMinX(window_frame));
  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_mac.mm 27 NSRect window_frame = [window frame];
31 std::min(NSMinX(window_frame) + kWindowTilePixels,
33 std::max(NSMaxY(window_frame) - kWindowTilePixels,
  /external/chromium_org/chrome/browser/ui/cocoa/
status_bubble_mac.mm 267 NSRect window_frame, const gfx::Point& mouse_pos) {
281 // The window_frame position is in global (screen) coordinates.
282 window_frame.origin = [parent_ convertBaseToScreen:base_rect.origin];
285 gfx::Point relative_pos(mouse_pos.x() - NSMaxX(window_frame),
286 mouse_pos.y() - NSMaxY(window_frame));
308 NSMinY([screen visibleFrame]) > NSMinY(window_frame) - offset) {
320 if (offset >= NSHeight(window_frame)) {
321 offset = NSHeight(window_frame);
332 window_frame.origin.y -= offset;
337 window_frame.origin.x += NSWidth(base_rect) - NSWidth(window_frame)
    [all...]
status_bubble_mac.h 118 // Sets the frame of the status bubble window to |window_frame|, adjusting
120 void SetFrameAvoidingMouse(NSRect window_frame, const gfx::Point& mouse_pos);
135 // proposed in window_frame) relative to its parent window in determining
141 unsigned long OSDependentCornerFlags(NSRect window_frame);
status_bubble_mac_unittest.mm 161 NSRect window_frame = [test_window() frame];
162 int x = relative_x + window_frame.origin.x;
163 int y = relative_y + window_frame.origin.y;
581 NSRect window_frame = [window frame];
582 window_frame.size.width = 600.0;
583 [window setFrame:window_frame display:YES];
611 window_frame = [window frame];
612 window_frame.size.width = 300.0;
613 [window setFrame:window_frame display:YES];
  /external/chromium/chrome/browser/ui/cocoa/
status_bubble_mac.mm 281 NSRect window_frame = [window_ frame];
282 window_frame.origin = [parent_ convertBaseToScreen:baseFrame.origin];
285 cursor_location.x -= NSMaxX(window_frame);
286 cursor_location.y -= NSMaxY(window_frame);
307 NSMinY([screen visibleFrame]) > NSMinY(window_frame) - offset) {
319 if (offset >= NSHeight(window_frame)) {
320 offset = NSHeight(window_frame);
330 window_frame.origin.y -= offset;
337 window_frame.origin.x += NSWidth(baseFrame) - NSWidth(window_frame);
    [all...]
status_bubble_mac_unittest.mm 540 NSRect window_frame = [window frame];
541 window_frame.size.width = 600.0;
542 [window setFrame:window_frame display:YES];
570 window_frame = [window frame];
571 window_frame.size.width = 300.0;
572 [window setFrame:window_frame display:YES];
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloMaterial.java 72 Geometry window_frame = new Geometry("window frame", boxshape3); local
76 window_frame.setQueueBucket(Bucket.Transparent);
77 window_frame.setMaterial(mat_tt);
78 rootNode.attachChild(window_frame);
  /external/chromium_org/content/plugin/
webplugin_delegate_stub.h 93 void OnContainerShown(gfx::Rect window_frame, gfx::Rect view_frame,
95 void OnWindowFrameChanged(const gfx::Rect& window_frame,
webplugin_delegate_stub.cc 367 void WebPluginDelegateStub::OnContainerShown(gfx::Rect window_frame,
371 delegate_->WindowFrameChanged(window_frame, view_frame);
377 void WebPluginDelegateStub::OnWindowFrameChanged(const gfx::Rect& window_frame,
380 delegate_->WindowFrameChanged(window_frame, view_frame);
plugin_interpose_util_mac.mm 135 NSRect window_frame = [self frame];
137 if (NSIntersectsRect(window_frame, [screen frame]))
  /external/chromium/chrome/browser/ui/
window_sizer_mac.mm 128 NSRect window_frame = [window frame];
132 std::min(NSMinX(window_frame) + kWindowTilePixels,
134 std::max(NSMaxY(window_frame) - kWindowTilePixels,
  /external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
constrained_window_animation.mm 85 NSRect window_frame = [window frame];
87 return NSMakePoint(NSMinX(window_frame),
88 NSHeight(screen_frame) - NSMaxY(window_frame));
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_cocoa_unittest.mm 256 NSRect window_frame = [[native_window->controller_ window] frame];
257 EXPECT_EQ(NSWidth(window_frame), bounds.width());
258 EXPECT_EQ(NSHeight(window_frame), bounds.height());
  /external/chromium_org/content/child/
plugin_messages.h 146 gfx::Rect /* window_frame */,
151 gfx::Rect /* window_frame */,
  /external/chromium_org/content/renderer/npapi/
webplugin_delegate_proxy.cc 847 gfx::Rect window_frame = render_view_->rootWindowRect(); local
850 msg = new PluginMsg_ContainerShown(instance_id_, window_frame, view_frame,
861 void WebPluginDelegateProxy::WindowFrameChanged(gfx::Rect window_frame,
864 window_frame,
    [all...]
webplugin_delegate_proxy.h 95 virtual void WindowFrameChanged(gfx::Rect window_frame, gfx::Rect view_frame);
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_mac.mm 612 void WebPluginDelegateImpl::WindowFrameChanged(const gfx::Rect& window_frame,
614 instance()->set_window_frame(window_frame);
webplugin_delegate_impl.h 168 void WindowFrameChanged(const gfx::Rect& window_frame,
  /external/chromium_org/content/renderer/
render_view_impl.h     [all...]
render_view_impl.cc     [all...]

Completed in 3898 milliseconds