Searched refs:point (Results 176 - 200 of 537) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnPathProcessor.cpp185 // Returns the i'th control point, 0 <= i < 4.
232 // Subdivides the current segment at the halfway point and replaces
240 // point and extending to x=+infinity crosses this segment. Outgoing
242 // endpoint or tangent point of the segment, indicating that another
243 // query point is preferred.
260 // Returns the number of control point triangles associated with
269 // Fetches the given control point triangle for this segment.
406 // Subdivides the given segment at the halfway point. Returns a
544 // Run plane-sweep algorithm to determine overlaps of control point
549 // number of curve crossings at a random point o
844 const FloatPoint& point = seg->getPoint(i); local
1185 FloatPoint point = seg->getInteriorVertex(i); local
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebPoint.h39 #include <ui/gfx/point.h>
/external/webkit/Source/WebKit/chromium/src/
H A DWebDevToolsAgentImpl.h77 virtual void inspectElementAt(const WebPoint& point);
H A DWebInputEventConversion.cpp209 PlatformTouchPointBuilder::PlatformTouchPointBuilder(Widget* widget, const WebTouchPoint& point) argument
211 m_id = point.id;
212 m_state = toPlatformTouchPointState(point.state);
213 m_pos = widget->convertFromContainingWindow(point.position);
214 m_screenPos = point.screenPosition;
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
H A DSDL_sysvideo.cc570 BPoint point; local
576 (SDL_Win->View())->GetMouse(&point, &buttons, true);
578 point.x = -1;
579 point.y = -1;
583 if ( (point.x >= 0) && (point.x < SDL_VideoSurface->w) &&
584 (point.y >= 0) && (point.y < SDL_VideoSurface->h) ) {
587 (Sint16)point.x, (Sint16)point
[all...]
/external/webkit/Source/WebKit/win/
H A DFullscreenVideoController.cpp160 void HUDSlider::drag(const IntPoint& point, bool start) argument
166 int relativeX = point.x() - m_rect.location().x();
168 m_dragStartOffset = point.x() - m_buttonPosition;
173 m_buttonPosition = max(0, min(m_rect.width() - m_buttonSize, point.x() - m_dragStartOffset));
611 void FullscreenVideoController::onMouseDown(const IntPoint& point) argument
613 IntPoint convertedPoint(fullscreenToHUDCoordinates(point));
650 void FullscreenVideoController::onMouseMove(const IntPoint& point) argument
652 IntPoint convertedPoint(fullscreenToHUDCoordinates(point));
665 void FullscreenVideoController::onMouseUp(const IntPoint& point) argument
667 IntPoint convertedPoint(fullscreenToHUDCoordinates(point));
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dpage_info_bubble_view.cc356 // Find where to point the bubble at.
359 gfx::Point point; local
362 point = gfx::Point(width - kIconHorizontalOffset, 0);
364 point.Offset(0, kIconVerticalOffset);
366 &point);
368 bounds.set_origin(point);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DSkiaFontWin.cpp123 // We're not the last point, compute C.
282 const SkPoint& point,
298 SkScalar x = point.fX;
299 SkScalar y = point.fY;
307 float x = point.fX, y = point.fY;
335 // allowing us to avoid talking to GDI at this point.
279 skiaDrawText(HFONT hfont, HDC dc, PlatformContextSkia* platformContext, const SkPoint& point, SkPaint* paint, const WORD* glyphs, const int* advances, const GOFFSET* offsets, int numGlyphs) argument
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceClipper.cpp301 FloatPoint point = nodeAtPoint; local
302 if (!SVGRenderSupport::pointInClippingArea(this, point))
309 point = transform.inverse().mapPoint(point);
320 if (renderer->nodeAtFloatPoint(HitTestRequest(HitTestRequest::SVGClipContent), result, point, HitTestForeground))
/external/chromium/chrome/browser/renderer_host/
H A Drender_widget_host_view_views.cc442 ui::EventType type, const gfx::Point& point) {
506 WebKit::WebTouchPoint* point = NULL;
511 // Add a new touch point.
514 point = &touch_event_.touchPoints[touch_event_.touchPointsLength++];
515 point->id = event.identity();
534 // The touch point should have been added to the event from an earlier
539 point = touch_event_.touchPoints + i;
540 if (point->id == event.identity()) {
543 point = NULL;
552 if (!point)
441 GetCursorForPoint( ui::EventType type, const gfx::Point& point) argument
[all...]
/external/opencv/cv/src/
H A Dcvsubdivision2d.cpp255 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/webkit/Source/WebCore/platform/graphics/win/
H A DGraphicsLayerCACF.cpp206 void GraphicsLayerCACF::setPosition(const FloatPoint& point) argument
208 GraphicsLayer::setPosition(point);
212 void GraphicsLayerCACF::setAnchorPoint(const FloatPoint3D& point) argument
214 if (point == m_anchorPoint)
217 GraphicsLayer::setAnchorPoint(point);
515 // Position is offset on the layer by the layer anchor point.
541 // of the layer, taking anchor point into account.
598 CGPoint point = CGPointMake(m_size.width() / 2.0f, m_size.height() / 2.0f); local
599 m_layer->setPosition(point);
700 CGPoint point
[all...]
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
H A Dmain.m225 CGPoint point = CGPointMake(event->data.mouse.pluginX,
229 obj->mouseDownLayer = [obj->rootLayer hitTest:point];
231 [obj->controllerLayer handleMouseDown:[obj->rootLayer convertPoint:point toLayer:obj->controllerLayer]];
250 CGPoint point = CGPointMake(event->data.mouse.pluginX,
257 [obj->controllerLayer handleMouseUp:[obj->rootLayer convertPoint:point toLayer:obj->controllerLayer]];
264 CGPoint point = CGPointMake(event->data.mouse.pluginX,
269 [obj->controllerLayer handleMouseDragged:[obj->rootLayer convertPoint:point toLayer:obj->controllerLayer]];
/external/webkit/Source/WebCore/page/
H A DDragController.cpp276 IntPoint point = roundedIntPoint(FloatPoint(p.x() * zoomFactor, p.y() * zoomFactor)); local
279 HitTestResult result(point);
328 IntPoint point = frameView->windowToContents(dragData->clientPosition()); local
329 Element* element = elementUnderMouse(m_documentUnderMouse.get(), point);
333 VisibleSelection dragCaret = m_documentUnderMouse->frame()->visiblePositionForPoint(point);
361 static bool setSelectionToDragCaret(Frame* frame, VisibleSelection& dragCaret, RefPtr<Range>& range, const IntPoint& point) argument
365 dragCaret = frame->visiblePositionForPoint(point);
390 IntPoint point = m_documentUnderMouse->view()->windowToContents(dragData->clientPosition());
391 Element* element = elementUnderMouse(m_documentUnderMouse.get(), point);
469 if (setSelectionToDragCaret(innerFrame, dragCaret, range, point)) {
[all...]
/external/chromium/chrome/browser/ui/views/tabs/
H A Dside_tab_strip.cc150 bool SideTabStrip::IsPositionInWindowCaption(const gfx::Point& point) { argument
151 return GetEventHandlerForPoint(point) == this;
225 views::View* SideTabStrip::GetEventHandlerForPoint(const gfx::Point& point) { argument
229 gfx::Point local_point(point);
236 gfx::Point local_point(point);
241 return views::View::GetEventHandlerForPoint(point);
H A Dtab_strip.h13 #include "ui/gfx/point.h"
59 virtual bool IsPositionInWindowCaption(const gfx::Point& point) OVERRIDE;
82 virtual views::View* GetEventHandlerForPoint(const gfx::Point& point)
130 // Direction the arrow should point in. If true, the arrow is displayed
226 // Returns true if the specified point in TabStrip coords is within the
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontWinCE.cpp66 int from, int numGlyphs, const FloatPoint& point) const
68 graphicsContext->drawText(fontData, glyphBuffer, from, numGlyphs, point);
208 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, argument
225 FloatPoint pt = point;
227 pt.setX(point.x() + w - comp.m_offset - comp.m_width);
229 pt.setX(point.x() + comp.m_offset);
238 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, int /* from */, int /* to */) const
252 // FIXME: This truncation is not a problem for HTML, but only affects SVG, which passes floating-point numbers
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp275 void GraphicsLayerAndroid::setPosition(const FloatPoint& point) argument
277 if (point == m_position)
280 GraphicsLayer::setPosition(point);
284 this, point.x(), point.y(), m_position.x(), m_position.y(),
287 m_contentLayer->setPosition(point.x(), point.y());
301 void GraphicsLayerAndroid::setAnchorPoint(const FloatPoint3D& point) argument
303 if (point == m_anchorPoint)
305 GraphicsLayer::setAnchorPoint(point);
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
H A DECDSASigner.java138 ECPoint point = ECAlgorithms.sumOfTwoMultiplies(G, u1, Q, u2);
140 BigInteger v = point.getX().toBigInteger().mod(n);
/external/chromium/chrome/browser/ui/views/autocomplete/
H A Dautocomplete_popup_contents_view.h75 const gfx::Point& point) OVERRIDE;
136 // Find the index of the match under the given |point|, specified in window
138 // match at the specified point.
139 size_t GetIndexForPoint(const gfx::Point& point);
/external/dhcpcd/mk/
H A Dcc.mk17 -Wdeclaration-after-statement -Wsequence-point -Wextra
/external/oprofile/events/mips/vr5500/
H A Devents11 event:0x5 counters:0,1 um:zero minimum:500 name:FP_INSTRUCTIONS : Execution of floating-point instruction
/external/stlport/test/eh/
H A Dcomo.mak8 # point this to proper location
H A Ddeccxx.mak11 # point this to proper location
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityListBox.cpp166 AccessibilityObject* AccessibilityListBox::elementAccessibilityHitTest(const IntPoint& point) const
168 // the internal HTMLSelectElement methods for returning a listbox option at a point
185 if (rect.contains(point)) {

Completed in 628 milliseconds

1234567891011>>