HomeSort by relevance Sort by last modified time
    Searched full:bounding_box (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/ppapi/cpp/dev/
text_input_dev.cc 71 const Rect& bounding_box) {
74 instance_.pp_instance(), &caret.pp_rect(), &bounding_box.pp_rect());
77 instance_.pp_instance(), &caret.pp_rect(), &bounding_box.pp_rect());
text_input_dev.h 49 void UpdateCaretPosition(const Rect& caret, const Rect& bounding_box);
  /external/chromium_org/ppapi/thunk/
ppb_text_input_thunk.cc 54 const PP_Rect* bounding_box) {
56 if (enter.succeeded() && caret && bounding_box)
57 enter.functions()->UpdateCaretPosition(instance, *caret, *bounding_box);
  /external/chromium_org/components/autofill/content/browser/
autocheckout_manager.h 70 // being initiated. |bounding_box| is the bounding box of the input field in
73 const gfx::RectF& bounding_box);
108 // is the page where Autocheckout is being initiated. |bounding_box| is the
112 const gfx::RectF& bounding_box,
autocheckout_manager_unittest.cc 405 const gfx::RectF& bounding_box) OVERRIDE {
407 bounding_box);
701 gfx::RectF bounding_box; local
706 autocheckout_manager_->MaybeShowAutocheckoutBubble(frame_url, bounding_box);
766 gfx::RectF bounding_box; local
772 autocheckout_manager_->MaybeShowAutocheckoutBubble(frame_url, bounding_box);
919 gfx::RectF bounding_box; local
    [all...]
autocheckout_manager.cc 299 const gfx::RectF& bounding_box) {
309 bounding_box);
428 const gfx::RectF& bounding_box,
438 bounding_box,
  /external/chromium_org/content/browser/renderer_host/
ui_events_helper.cc 159 gesture_event.data.tap.width = event.details().bounding_box().width();
160 gesture_event.data.tap.height = event.details().bounding_box().height();
165 event.details().bounding_box().width();
167 event.details().bounding_box().height();
204 event.details().bounding_box().width();
206 event.details().bounding_box().height();
211 event.details().bounding_box().width();
213 event.details().bounding_box().height();
  /external/chromium_org/components/autofill/core/browser/
test_autofill_manager_delegate.cc 39 const gfx::RectF& bounding_box,
test_autofill_manager_delegate.h 36 const gfx::RectF& bounding_box,
autofill_manager_delegate.h 96 // Causes the Autocheckout bubble UI to be displayed. |bounding_box| is the
102 const gfx::RectF& bounding_box,
autofill_manager.h 147 // The |bounding_box| is a window relative value.
151 const gfx::RectF& bounding_box,
175 // bubble belongs to |form|. |bounding_box| is the bounding box of the input
178 const gfx::RectF& bounding_box);
  /external/eigen/unsupported/doc/examples/
BVH_Example.cpp 10 Box2d bounding_box(const Vector2d &v) { return Box2d(v, v); } //compute the bounding box of a single point function in namespace:Eigen::internal
  /external/chromium_org/chrome/browser/ui/autofill/
tab_autofill_manager_delegate.cc 111 const gfx::RectF& bounding_box,
121 // Convert |bounding_box| to be in screen space.
124 gfx::RectF anchor = bounding_box + container_rect.OffsetFromOrigin();
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 31 //iterator range or using bounding_box in a unified way
47 outBoxes.push_back(bounding_box(objects[i]));
59 * \param _Object The object type that lives in the hierarchy. It must have value semantics. Either bounding_box(_Object) must
82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */
89 * Requires that bounding_box(Object) return a Volume. */
  /external/chromium/chrome/browser/ui/views/frame/
browser_view_layout.cc 100 gfx::Rect bounding_box(contents_container_->bounds());
104 bounding_box.set_origin(topleft);
108 int height_delta = find_bar_y_ - bounding_box.y();
109 bounding_box.set_y(find_bar_y_);
110 bounding_box.set_height(std::max(0, bounding_box.height() + height_delta));
115 bounding_box.set_width(std::max(0, bounding_box.width() - scrollbar_width));
117 bounding_box.set_x(bounding_box.x() + scrollbar_width)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_view_layout.cc 208 gfx::Rect bounding_box = contents_container_->ConvertRectToWidget( local
229 // Grow the height of |bounding_box| by the height of any elements between
232 int height_delta = bounding_box.y() - find_bar_y;
233 bounding_box.set_y(find_bar_y);
234 bounding_box.set_height(std::max(0, bounding_box.height() + height_delta));
239 bounding_box.set_width(std::max(0, bounding_box.width() - scrollbar_width));
241 bounding_box.set_x(bounding_box.x() + scrollbar_width)
    [all...]
  /external/chromium_org/ash/wm/gestures/
two_finger_drag_handler.cc 103 event.details().bounding_box().CenterPoint(),
159 window_resizer_->Drag(event.details().bounding_box().CenterPoint(),
  /external/chromium_org/ppapi/c/dev/
ppb_text_input_dev.h 86 const struct PP_Rect* bounding_box);
134 const struct PP_Rect* bounding_box);
  /external/chromium_org/ppapi/proxy/
ppb_instance_proxy.h 97 const PP_Rect& bounding_box) OVERRIDE;
198 const PP_Rect& bounding_box);
  /external/chromium_org/ui/aura/gestures/
gesture_recognizer_unittest.cc 187 const gfx::Rect& bounding_box() const { return bounding_box_; } function in class:aura::test::__anon16540::GestureEventConsumeDelegate
199 bounding_box_ = gesture->details().bounding_box();
734 EXPECT_EQ(24, delegate->bounding_box().width());
735 EXPECT_EQ(24, delegate->bounding_box().height());
775 EXPECT_EQ(40, delegate->bounding_box().width());
776 EXPECT_EQ(40, delegate->bounding_box().height());
832 EXPECT_EQ(25, delegate->bounding_box().width());
833 EXPECT_EQ(24, delegate->bounding_box().height());
918 EXPECT_EQ(33, delegate->bounding_box().width());
919 EXPECT_EQ(32, delegate->bounding_box().height())
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppb_text_input_dev.idl 64 [in] PP_Rect bounding_box);
  /external/eigen/unsupported/test/
BVH.cpp 17 template<typename Scalar, int Dim> AlignedBox<Scalar, Dim> bounding_box(const Matrix<Scalar, Dim, 1> &v) { return AlignedBox<Scalar, Dim>(v); } function in namespace:Eigen
35 template<int Dim> AlignedBox<double, Dim> bounding_box(const Ball<Dim> &b) function
  /external/chromium_org/components/autofill/content/renderer/
autofill_agent.cc 116 gfx::Rect bounding_box(element->boundsInViewportSpace());
117 return gfx::RectF(bounding_box.x() * scale,
118 bounding_box.y() * scale,
119 bounding_box.width() * scale,
120 bounding_box.height() * scale);
password_autofill_agent.cc 541 gfx::Rect bounding_box(selected_element.boundsInViewportSpace());
544 gfx::RectF bounding_box_scaled(bounding_box.x() * scale,
545 bounding_box.y() * scale,
546 bounding_box.width() * scale,
547 bounding_box.height() * scale);
  /external/chromium_org/android_webview/native/
aw_autofill_manager_delegate.cc 193 const gfx::RectF& bounding_box,

Completed in 1370 milliseconds

1 2