HomeSort by relevance Sort by last modified time
    Searched defs:point (Results 176 - 200 of 391) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium/chrome/browser/ui/views/
shell_dialogs_win.cc 185 POINT point = { dialog_rect.left, dialog_rect.top }; local
186 HMONITOR monitor1 = MonitorFromPoint(point, MONITOR_DEFAULTTONULL);
187 point.x = dialog_rect.right;
188 point.y = dialog_rect.bottom;
191 HMONITOR monitor2 = MonitorFromPoint(point, MONITOR_DEFAULTTONULL);
    [all...]
  /external/chromium_org/ash/accelerators/
accelerator_controller.cc 389 gfx::Point point = Shell::GetScreen()->GetCursorScreenPoint(); local
390 gfx::Display display = Shell::GetScreen()->GetDisplayNearestPoint(point);
    [all...]
  /external/chromium_org/ash/display/
display_controller_unittest.cc 262 gfx::Point mouse_location_;
624 gfx::Point(-100, -100)).id());
646 gfx::Point(-100, -100)).id());
679 gfx::Point(-100, -100)).id());
718 gfx::Point(-100, -100)).id());
740 gfx::Point(-100, -100)).id());
773 gfx::Point(-100, -100)).id());
809 gfx::Point(-100, -100)).id());
996 gfx::Point point; local
    [all...]
  /external/chromium_org/ash/touch/
touch_hud_debug.cc 98 // A TouchPointLog represents a single touch-event of a touch point.
114 // point.
133 gfx::Point location;
142 // A TouchTrace keeps track of all the touch events of a single touch point
166 // Returns a list containing data from all events for the touch point.
277 const TouchPointLog& point = trace.log().back(); local
278 if (point.type == ui::ET_TOUCH_PRESSED)
280 if (point.type != ui::ET_TOUCH_CANCELLED)
299 const TouchPointLog& point = trace.log().back(); local
300 const gfx::Point& location = point.location
443 TouchTrace::const_reverse_iterator point = trace.log().rbegin(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
menu_gtk.cc 106 // is a widget, then also move the anchor point to the top of the widget
423 void MenuGtk::PopupAsContext(const gfx::Point& point, guint32 event_time) {
424 // gtk_menu_popup doesn't like the "const" qualifier on point.
425 gfx::Point nonconst_point(point);
740 gfx::Point* point = reinterpret_cast<gfx::Point*>(userdata); local
741 *x = point->x()
    [all...]
  /external/chromium_org/chrome/third_party/mozilla_security_manager/
nsNSSCertHelper.cpp 757 CRLDistributionPoint* point; local
784 point = *points;
785 switch (point->distPointType) {
789 rv += ProcessGeneralNames(arena.get(), point->distPoint.fullName);
792 rv += ProcessRDN(&point->distPoint.relativeName);
795 if (point->reasons.len) {
799 if (point->reasons.data[0] & reason_string_map[i].reason) {
808 if (point->crlIssuer) {
811 UTF8ToUTF16(ProcessGeneralNames(arena.get(), point->crlIssuer)));
    [all...]
  /external/chromium_org/chrome_frame/test/
chrome_frame_ui_test_utils.cc 25 #include "ui/gfx/point.h"
90 POINT point = {x, y}; local
91 ::AccessibleObjectFromPoint(point, accessible.Receive(), child_id.Receive());
242 POINT offset = {0, 0};
542 gfx::Point center = location.CenterPoint();
  /external/chromium_org/content/common/gpu/
gpu_channel.cc 74 // thread, generating the sync point ID and responding immediately, and then
373 // This function must ensure that the sync point will be retired. Normally
374 // we'll find the stub based on the routing ID, and associate the sync point
376 // deleted, invalid routing id), we need to retire the sync point
502 std::deque<IPC::Message*>::iterator point = deferred_messages_.begin(); local
504 while (point != deferred_messages_.end() &&
505 (*point)->type() == GpuCommandBufferMsg_GetStateFast::ID) {
506 ++point;
509 if (point != deferred_messages_.end()) {
510 ++point;
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
voronoi.cc 192 // This is the core of the Voronoi calculation. At a given point on the
355 // Entry point for worker thread. Can't pass a member function around, so we
460 pp::FloatPoint point = touch.position(); local
461 positions_[i].Set(point.x() / ps_context_->width,
462 point.y() / ps_context_->height);
523 // Starting point for the module. We do not use main since it would
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
voronoi.cc 181 // This is the core of the Voronoi calculation. At a given point on the
352 // Entry point for worker thread. Can't pass a member function around, so we
431 pp::FloatPoint point = touch.position(); local
432 positions_[i].Set(point.x() / ps_context_->width,
433 point.y() / ps_context_->height);
484 // Starting point for the module. We do not use main since it would
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 318 LayoutPoint point = roundedLayoutPoint(FloatPoint(p.x() * zoomFactor, p.y() * zoomFactor)); local
321 HitTestResult result(point);
367 IntPoint point = frameView->windowToContents(dragData->clientPosition()); local
368 Element* element = elementUnderMouse(m_documentUnderMouse.get(), point);
380 m_page->dragCaretController().setCaretPosition(m_documentUnderMouse->frame()->visiblePositionForPoint(point));
428 static bool setSelectionToDragCaret(Frame* frame, VisibleSelection& dragCaret, RefPtr<Range>& range, const IntPoint& point)
432 dragCaret = frame->visiblePositionForPoint(point);
460 IntPoint point = m_documentUnderMouse->view()->windowToContents(dragData->clientPosition());
461 Element* element = elementUnderMouse(m_documentUnderMouse.get(), point);
509 if (setSelectionToDragCaret(innerFrame.get(), dragCaret, range, point)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.cpp 48 FloatPoint point; member in struct:WebCore::EdgeIntersection
52 static inline float leftSide(const FloatPoint& vertex1, const FloatPoint& vertex2, const FloatPoint& point)
54 return ((point.x() - vertex1.x()) * (vertex2.y() - vertex1.y())) - ((vertex2.x() - vertex1.x()) * (point.y() - vertex1.y()));
92 result.point.set(intersectionX, y);
241 float x1 = intersection1.point.x();
242 float x2 = intersection2.point.x();
272 if ((thisIntersection.point.x() == nextIntersection.point.x()) && (thisIntersection.type == VertexMinY || thisIntersection.type == VertexMaxY)) {
306 inside = appendIntervalX(thisIntersection.point.x(), inside, result)
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afhints.c 186 AF_Point point; local
193 for ( point = points; point < limit; point++ )
196 point - points,
197 point->fx,
198 point->fy,
199 point->ox / 64.0,
200 point->oy / 64.0,
201 point->x / 64.0
673 AF_Point point; local
804 AF_Point point = hints->points; local
850 AF_Point point, first, last; local
876 AF_Point point, first, last; local
929 AF_Point point; local
1174 AF_Point point; local
1304 AF_Point point; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_asn1.c 578 const EC_POINT *point=NULL; local
616 /* set the base point */
617 if ((point = EC_GROUP_get0_generator(group)) == NULL)
625 len = EC_POINT_point2oct(group, point, form, NULL, len, NULL);
636 if (!EC_POINT_point2oct(group, point, form, buffer, len, NULL))
752 EC_POINT *point=NULL; local
944 if ((point = EC_POINT_new(ret)) == NULL) goto err;
946 /* set the point conversion form */
950 /* extract the ec point */
951 if (!EC_POINT_oct2point(ret, point, params->base->data,
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrInOrderDrawBuffer.cpp 67 const GrPoint* point = static_cast<const GrPoint*>(vertices); local
68 bounds->fLeft = bounds->fRight = point->fX;
69 bounds->fTop = bounds->fBottom = point->fY;
71 point = reinterpret_cast<GrPoint*>(reinterpret_cast<intptr_t>(point) + vertexSize);
72 bounds->growToInclude(point->fX, point->fY);
  /external/chromium_org/ui/message_center/views/
notification_view.cc 568 // targeting. Using the center point of |rect| preserves this function's
570 gfx::Point point = rect.CenterPoint(); local
579 gfx::Point point_in_child = point;
  /external/chromium_org/ui/shell_dialogs/
select_file_dialog_win.cc 213 POINT point = { dialog_rect.left, dialog_rect.top }; local
214 HMONITOR monitor1 = MonitorFromPoint(point, MONITOR_DEFAULTTONULL);
215 point.x = dialog_rect.right;
216 point.y = dialog_rect.bottom;
219 HMONITOR monitor2 = MonitorFromPoint(point, MONITOR_DEFAULTTONULL);
    [all...]
  /external/clang/test/Sema/
designated-initializers.c 25 struct point { struct
30 struct point p1 = {
33 .a = 4.0, // expected-error{{field designator 'a' does not refer to any field in type 'struct point'}}
36 struct point p2 = {
40 struct point array[10] = {
43 [2].z = 3.0, // expected-error{{field designator 'z' does not refer to any field in type 'struct point'}}
46 struct point array2[10] = {
52 struct point array3[10] = {
57 struct point top_left;
58 struct point bottom_right
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CTableCombo.java 20 import org.eclipse.swt.graphics.Point;
259 // At this point the widget may have been disposed.
379 // At this point the widget may have been disposed.
401 // At this point the widget may have been disposed.
512 Point point = getParent().toDisplay(getLocation()); local
513 Point comboSize = getSize();
529 Display.getCurrent().getClientArea().height - point.y - 20);
530 m_popup.setBounds(point.x, point.y + comboSize.y, width, height)
    [all...]
  /external/freetype/src/autofit/
afhints.c 186 AF_Point point; local
193 for ( point = points; point < limit; point++ )
196 point - points,
197 point->fx,
198 point->fy,
199 point->ox / 64.0,
200 point->oy / 64.0,
201 point->x / 64.0
673 AF_Point point; local
804 AF_Point point = hints->points; local
850 AF_Point point, first, last; local
876 AF_Point point, first, last; local
929 AF_Point point; local
1174 AF_Point point; local
1304 AF_Point point; local
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainTestModifyHeight.java 245 Vector2f point = new Vector2f(x, y); local
247 return point.length() <= radius;
252 Vector2f point = new Vector2f(x, z); local
253 float val = point.length() / radius;
  /external/kernel-headers/original/linux/mtd/
mtd.h 154 int (*point) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char **mtdbuf); member in struct:mtd_info
  /external/opencv/cv/src/
cvsubdivision2d.cpp 255 CvSubdiv2DPoint *point = 0; local
363 point = cvSubdiv2DEdgeOrg( edge );
369 point = cvSubdiv2DEdgeDst( edge );
376 point = 0;
383 point = 0;
389 *_point = point;
410 CvSubdiv2DPoint *point = 0; local
439 point = curr_point;
505 point = curr_point;
512 return point;
730 CvSubdiv2DPoint* point = 0; local
    [all...]
  /external/openssl/crypto/ec/
ec_asn1.c 578 const EC_POINT *point=NULL; local
616 /* set the base point */
617 if ((point = EC_GROUP_get0_generator(group)) == NULL)
625 len = EC_POINT_point2oct(group, point, form, NULL, len, NULL);
636 if (!EC_POINT_point2oct(group, point, form, buffer, len, NULL))
752 EC_POINT *point=NULL; local
944 if ((point = EC_POINT_new(ret)) == NULL) goto err;
946 /* set the point conversion form */
950 /* extract the ec point */
951 if (!EC_POINT_oct2point(ret, point, params->base->data,
    [all...]
  /external/skia/src/gpu/
GrInOrderDrawBuffer.cpp 67 const GrPoint* point = static_cast<const GrPoint*>(vertices); local
68 bounds->fLeft = bounds->fRight = point->fX;
69 bounds->fTop = bounds->fBottom = point->fY;
71 point = reinterpret_cast<GrPoint*>(reinterpret_cast<intptr_t>(point) + vertexSize);
72 bounds->growToInclude(point->fX, point->fY);

Completed in 1105 milliseconds

1 2 3 4 5 6 78 91011>>