/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/cpp/dev/ |
text_input_dev.h | 49 void UpdateCaretPosition(const Rect& caret, const Rect& bounding_box);
|
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());
|
/external/chromium_org/ppapi/api/dev/ |
ppb_text_input_dev.idl | 64 [in] PP_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);
|
ppb_instance_api.h | 127 const PP_Rect& bounding_box) = 0;
|
/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 | 231 gfx::Rect bounding_box = contents_container_->ConvertRectToWidget( local 252 // Grow the height of |bounding_box| by the height of any elements between 255 int height_delta = bounding_box.y() - find_bar_y; 256 bounding_box.set_y(find_bar_y); 257 bounding_box.set_height(std::max(0, bounding_box.height() + height_delta)); 262 bounding_box.set_width(std::max(0, bounding_box.width() - scrollbar_width)); 264 bounding_box.set_x(bounding_box.x() + scrollbar_width) [all...] |
/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(); 172 event.details().bounding_box().width(); 174 event.details().bounding_box().height(); 211 event.details().bounding_box().width(); 213 event.details().bounding_box().height(); 218 event.details().bounding_box().width(); 220 event.details().bounding_box().height() [all...] |
/external/chromium_org/ash/wm/gestures/ |
two_finger_drag_handler.cc | 110 event.details().bounding_box().CenterPoint(), 174 any_window_resizer->Drag(event.details().bounding_box().CenterPoint(),
|
/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/components/autofill/content/renderer/ |
autofill_agent.cc | 119 gfx::Rect bounding_box(element->boundsInViewportSpace()); 120 return gfx::RectF(bounding_box.x() * scale, 121 bounding_box.y() * scale, 122 bounding_box.width() * scale, 123 bounding_box.height() * scale);
|
password_autofill_agent.cc | 609 gfx::Rect bounding_box(selected_element.boundsInViewportSpace()); 612 gfx::RectF bounding_box_scaled(bounding_box.x() * scale, 613 bounding_box.y() * scale, 614 bounding_box.width() * scale, 615 bounding_box.height() * scale);
|
/external/chromium_org/ui/events/gestures/ |
gesture_types.h | 30 const gfx::Rect& bounding_box() const { return bounding_box_; } function in struct:ui::GestureEventDetails
|
/external/chromium_org/ppapi/proxy/ |
ppb_instance_proxy.h | 97 const PP_Rect& bounding_box) OVERRIDE; 199 const PP_Rect& bounding_box);
|
ppb_instance_proxy.cc | 776 const PP_Rect& bounding_box) { 778 API_ID_PPB_INSTANCE, instance, caret, bounding_box)); [all...] |
/external/chromium_org/ui/aura/gestures/ |
gesture_recognizer_unittest.cc | 192 const gfx::Rect& bounding_box() const { return bounding_box_; } function in class:aura::test::__anon14704::GestureEventConsumeDelegate 204 bounding_box_ = gesture->details().bounding_box(); 795 EXPECT_EQ(24, delegate->bounding_box().width()); 796 EXPECT_EQ(24, delegate->bounding_box().height()); 836 EXPECT_EQ(40, delegate->bounding_box().width()); 837 EXPECT_EQ(40, delegate->bounding_box().height()); 893 EXPECT_EQ(25, delegate->bounding_box().width()); 894 EXPECT_EQ(24, delegate->bounding_box().height()); 979 EXPECT_EQ(33, delegate->bounding_box().width()); 980 EXPECT_EQ(32, delegate->bounding_box().height()) [all...] |
/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/core/browser/ |
autofill_manager.h | 134 // The |bounding_box| is a window relative value. 138 const gfx::RectF& bounding_box,
|
autofill_manager.cc | 356 const gfx::RectF& bounding_box, 366 bounding_box, [all...] |
/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_org/ui/views/widget/ |
root_view.cc | 292 !event->details().bounding_box().IsEmpty()) { 295 gfx::Rect touch_rect(event->details().bounding_box());
|
/external/chromium_org/content/renderer/pepper/ |
pepper_plugin_instance_impl.h | 425 const PP_Rect& bounding_box) OVERRIDE; [all...] |
pepper_plugin_instance_impl.cc | [all...] |