Home
last modified time | relevance | path

Searched refs:anchor_point (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/chrome/browser/ui/cocoa/autofill/
Dnew_credit_card_bubble_cocoa.mm211 NSPoint anchor_point;
215 anchor_point = NSMakePoint(
222 anchor_point = NSMakePoint(
227 anchor_point.x = NSMaxX([anchor_view bounds]) - anchor_point.x;
236 anchor_point.y = NSMaxY([anchor_view bounds]) - anchor_point.y;
237 anchor_point = [anchor_view convertPoint:anchor_point toView:nil];
240 frame.origin = anchor_point;
241 anchor_point = [parent_window convertBaseToScreen:anchor_point];
242 [bubbleController_ showAtAnchor:anchor_point];
/external/chromium_org/webkit/renderer/compositor_bindings/
Dweb_layer_impl_fixed_bounds.cc34 const blink::WebFloatPoint& anchor_point) { in setAnchorPoint() argument
35 if (anchor_point != this->anchorPoint()) { in setAnchorPoint()
36 layer_->SetAnchorPoint(anchor_point); in setAnchorPoint()
Dweb_layer_impl_fixed_bounds_unittest.cc88 const WebFloatPoint& anchor_point, in CompareFixedBoundsLayerAndNormalLayer() argument
111 fixed_bounds_layer->setAnchorPoint(anchor_point); in CompareFixedBoundsLayerAndNormalLayer()
124 normal_layer->setAnchorPoint(anchor_point); in CompareFixedBoundsLayerAndNormalLayer()
Dweb_layer_impl_fixed_bounds.h28 virtual void setAnchorPoint(const blink::WebFloatPoint& anchor_point);
Dweb_layer_impl.cc82 void WebLayerImpl::setAnchorPoint(const WebFloatPoint& anchor_point) { in setAnchorPoint() argument
83 layer_->SetAnchorPoint(anchor_point); in setAnchorPoint()
87 return layer_->anchor_point(); in anchorPoint()
/external/chromium_org/cc/trees/
Dlayer_tree_host_common.cc1504 gfx::PointF anchor_point = layer->anchor_point(); in CalculateDrawPropertiesInternal() local
1512 position.x() + anchor_point.x() * bounds.width(), in CalculateDrawPropertiesInternal()
1513 position.y() + anchor_point.y() * bounds.height(), in CalculateDrawPropertiesInternal()
1518 combined_transform.Translate3d(-anchor_point.x() * bounds.width(), in CalculateDrawPropertiesInternal()
1519 -anchor_point.y() * bounds.height(), in CalculateDrawPropertiesInternal()
1892 layer->anchor_point().x() * bounds.width(), in CalculateDrawPropertiesInternal()
1893 layer->anchor_point().y() * bounds.height()); in CalculateDrawPropertiesInternal()
1897 -layer->anchor_point().x() * bounds.width(), in CalculateDrawPropertiesInternal()
1898 -layer->anchor_point().y() * bounds.height()); in CalculateDrawPropertiesInternal()
2075 layer->replica_layer()->anchor_point().x() * bounds.width(), in CalculateDrawPropertiesInternal()
[all …]
Dlayer_tree_host_impl.h133 bool anchor_point,
Dlayer_tree_host_impl.cc429 bool anchor_point, in StartPageScaleAnimation() argument
451 if (anchor_point) { in StartPageScaleAnimation()
/external/chromium_org/chrome/browser/ui/gtk/
Dconfirm_bubble_gtk.cc46 const gfx::Point& anchor_point, in ConfirmBubbleGtk() argument
50 anchor_point_(anchor_point), in ConfirmBubbleGtk()
Dconfirm_bubble_gtk.h43 const gfx::Point& anchor_point,
/external/chromium_org/cc/input/
Dinput_handler.h121 bool anchor_point,
/external/chromium_org/ui/app_list/views/
Dapp_list_view.cc166 void AppListView::SetAnchorPoint(const gfx::Point& anchor_point) { in SetAnchorPoint() argument
167 SetAnchorRect(gfx::Rect(anchor_point, gfx::Size())); in SetAnchorPoint()
Dapp_list_view.h62 void SetAnchorPoint(const gfx::Point& anchor_point);
/external/chromium_org/ash/shelf/
Dshelf_view.cc1875 gfx::Rect anchor_point = gfx::Rect(click_point, gfx::Size()); in ShowMenu() local
1882 anchor_point = source->GetBoundsInScreen(); in ShowMenu()
1889 anchor_point.set_x(anchor_point.x() - offset.x()); in ShowMenu()
1890 anchor_point.set_y(anchor_point.y() - offset.y()); in ShowMenu()
1895 anchor_point.Inset(source->border()->GetInsets()); in ShowMenu()
1923 anchor_point, in ShowMenu()
/external/chromium_org/cc/layers/
Dlayer.h106 void SetAnchorPoint(gfx::PointF anchor_point);
107 gfx::PointF anchor_point() const { return anchor_point_; } in anchor_point() function
Dlayer_impl.h192 void SetAnchorPoint(gfx::PointF anchor_point);
193 gfx::PointF anchor_point() const { return anchor_point_; } in anchor_point() function
Dlayer.cc380 void Layer::SetAnchorPoint(gfx::PointF anchor_point) { in SetAnchorPoint() argument
382 if (anchor_point_ == anchor_point) in SetAnchorPoint()
384 anchor_point_ = anchor_point; in SetAnchorPoint()
Dlayer_impl.cc796 void LayerImpl::SetAnchorPoint(gfx::PointF anchor_point) { in SetAnchorPoint() argument
797 if (anchor_point_ == anchor_point) in SetAnchorPoint()
800 anchor_point_ = anchor_point; in SetAnchorPoint()
/external/chromium_org/third_party/ots/src/
Dgpos.cc131 uint16_t anchor_point = 0; in ParseAnchorTable() local
132 if (!subtable.ReadU16(&anchor_point)) { in ParseAnchorTable()
/external/chromium_org/ui/compositor/
Dlayer_unittest.cc615 l1->cc_layer()->anchor_point().ToString()); in TEST_F()
630 l1->cc_layer()->anchor_point().ToString()); in TEST_F()
/external/chromium_org/content/renderer/input/
Dinput_handler_proxy_unittest.cc65 bool anchor_point, in StartPageScaleAnimation() argument