Searched refs:point (Results 201 - 225 of 537) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint3D.h112 // Convenience function returning "this cross point" as a
114 FloatPoint3D cross(const FloatPoint3D& point) const
117 result.cross(*this, point);
H A DFloatRect.h121 bool contains(const FloatPoint& point) const { return contains(point.x(), point.y()); }
H A DIntRect.h107 // center point.
148 bool contains(const IntPoint& point) const { return contains(point.x(), point.y()); }
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DWebPageProxyMac.mm176 uint64_t WebPageProxy::characterIndexForPoint(const IntPoint point)
179 process()->sendSync(Messages::WebPage::CharacterIndexForPoint(point), Messages::WebPage::CharacterIndexForPoint::Reply(result), m_pageID);
222 void WebPageProxy::performDictionaryLookupAtLocation(const WebCore::FloatPoint& point)
227 process()->send(Messages::WebPage::PerformDictionaryLookupAtLocation(point), m_pageID);
/external/freetype/src/smooth/
H A Dftgrays.c59 /* use floating point values. */
1445 FT_Vector* point; local
1452 int first; /* index of first point in contour */
1453 char tag; /* current point's state */
1468 int last; /* index of last point in contour */
1488 point = outline->points + first;
1492 /* A contour cannot start with a cubic control point! */
1496 /* check first point to determine origin */
1499 /* first point is conic control. Yes, this happens. */
1502 /* start at last point i
[all...]
/external/chromium/chrome/browser/chromeos/frame/
H A Dbubble_frame_view.h40 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
/external/icu4c/test/letest/
H A DPortableFontInstance.h105 virtual le_bool getGlyphPoint(LEGlyphID glyph, le_int32 pointNumber, LEPoint &point) const;
/external/webkit/Source/WebCore/platform/mac/
H A DScrollViewMac.mm190 IntPoint ScrollView::platformScreenToContents(const IntPoint& point) const
194 NSPoint windowCoord = [[documentView window] convertScreenToBase: point];
/external/webkit/Source/WebCore/platform/qt/
H A DClipboardQt.cpp224 void ClipboardQt::setDragImage(CachedImage* image, const IntPoint& point) argument
226 setDragImage(image, 0, point);
229 void ClipboardQt::setDragImageElement(Node* node, const IntPoint& point) argument
231 setDragImage(0, node, point);
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGRootInlineBox.cpp207 InlineBox* SVGRootInlineBox::closestLeafChildForPosition(const IntPoint& point) argument
219 if (point.y() < leaf->m_y)
221 if (point.y() > leaf->m_y + leaf->virtualLogicalHeight())
225 if (point.x() < leaf->m_x + leaf->m_logicalWidth)
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebContextMenu.cpp87 m_page->send(Messages::WebPageProxy::ShowContextMenu(view->contentsToWindow(controller->hitTestResult().point()), contextMenuState, proposedMenu, InjectedBundleUserMessageEncoder(userData.get())));
/external/freetype/src/base/
H A Dftstroke.c119 /* basically a point; */
215 /* basically a point; */
293 FT_STROKE_TAG_ON = 1, /* on-curve point */
294 FT_STROKE_TAG_CUBIC = 2, /* cubic off-point */
309 FT_Int start; /* index of current sub-path start point */
361 /* copy the last point to the start of this sub-path, since */
424 /* move last point */
435 /* add one point */
537 /* compute start point */
562 /* compute end point */
659 FT_Vector* point = border->points; local
1244 FT_Vector point; local
1326 FT_Vector point; local
2052 FT_Vector* point; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DCameraSystem.java161 /** Returns the x position of the camera's look-at point. */
166 /** Returns the y position of the camera's look-at point. */
171 public boolean pointVisible(Vector2 point, float radius) { argument
175 if (Math.abs(mFocalPosition.x - point.x) < (width + radius)) {
176 if (Math.abs(mFocalPosition.y - point.y) < (height + radius)) {
/external/webkit/Tools/DumpRenderTree/mac/
H A DTextInputController.m350 NSPoint point = NSMakePoint(x, y);
351 point = [webView convertPoint:point toView:nil];
352 point = [[webView window] convertBaseToScreen:point];
353 NSInteger index = [textInput characterIndexForPoint:point];
/external/openssl/crypto/ec/
H A Dec.h104 /** Enum for the point conversion form as defined in X9.62 (ECDSA)
105 * for the encoding of a elliptic curve point (x,y) */
107 /** the point is encoded as z||x, where the octet z specifies
110 /** the point is encoded as z||x||y, where z is the octet 0x02 */
112 /** the point is encoded as z||x||y, where the octet z specifies
391 * \param point EC_POINT object to be freed
393 void EC_POINT_free(EC_POINT *point);
396 * \param point EC_POINT object to be cleared and freed
398 void EC_POINT_clear_free(EC_POINT *point);
416 * \param point EC_POIN
[all...]
/external/openssl/include/openssl/
H A Dec.h104 /** Enum for the point conversion form as defined in X9.62 (ECDSA)
105 * for the encoding of a elliptic curve point (x,y) */
107 /** the point is encoded as z||x, where the octet z specifies
110 /** the point is encoded as z||x||y, where z is the octet 0x02 */
112 /** the point is encoded as z||x||y, where the octet z specifies
391 * \param point EC_POINT object to be freed
393 void EC_POINT_free(EC_POINT *point);
396 * \param point EC_POINT object to be cleared and freed
398 void EC_POINT_clear_free(EC_POINT *point);
416 * \param point EC_POIN
[all...]
/external/quake/quake/src/WinQuake/
H A Dsv_phys.cpp810 vec3_t point; local
816 point[0] = ent->u.v.origin[0];
817 point[1] = ent->u.v.origin[1];
818 point[2] = ent->u.v.origin[2] + ent->u.v.mins[2] + 1;
822 cont = SV_PointContents (point);
826 truecont = SV_TruePointContents (point);
830 point[2] = ent->u.v.origin[2] + (ent->u.v.mins[2] + ent->u.v.maxs[2])*0.5;
831 cont = SV_PointContents (point);
835 point[2] = ent->u.v.origin[2] + ent->u.v.view_ofs[2];
836 cont = SV_PointContents (point);
1202 vec3_t point; local
1434 vec3_t mins, maxs, point; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGraphicsLayerChromium.cpp180 void GraphicsLayerChromium::setPosition(const FloatPoint& point) argument
182 GraphicsLayer::setPosition(point);
186 void GraphicsLayerChromium::setAnchorPoint(const FloatPoint3D& point) argument
188 if (point == m_anchorPoint)
191 GraphicsLayer::setAnchorPoint(point);
501 // Position is offset on the layer by the layer anchor point.
523 // of the layer, taking anchor point into account.
/external/chromium/chrome/browser/ui/views/
H A Dconstrained_window_views.cc160 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
317 int ConstrainedWindowFrameView::NonClientHitTest(const gfx::Point& point) { argument
318 if (!bounds().Contains(point))
322 container_->GetWindow()->client_view()->NonClientHitTest(point);
328 if (sysmenu_rect.Contains(point))
334 // Then see if the point is within any of the window controls.
335 if (close_button_->GetMirroredBounds().Contains(point))
338 int window_component = GetHTComponentForFrame(point, kFrameBorderThickness,
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.cpp444 void ChromeClientQt::delegatedScrollRequested(const IntPoint& point) argument
447 emit m_webPage->scrollRequested(point.x() - currentPosition.x(), point.y() - currentPosition.y(), QRect(QPoint(0, 0), m_webPage->viewportSize()));
467 IntPoint ChromeClientQt::screenToWindow(const IntPoint& point) const
471 return point;
475 return point;
477 return ownerWidget->mapFromGlobal(point);
/external/chromium/chrome/browser/ui/views/frame/
H A Dapp_panel_browser_frame_view.cc145 int AppPanelBrowserFrameView::NonClientHitTest(const gfx::Point& point) { argument
146 if (!bounds().Contains(point))
150 frame_->GetWindow()->client_view()->NonClientHitTest(point);
160 if (sysmenu_rect.Contains(point))
166 // Then see if the point is within any of the window controls.
168 close_button_->GetMirroredBounds().Contains(point))
171 int window_component = GetHTComponentForFrame(point,
H A Dglass_browser_frame_view.cc199 int GlassBrowserFrameView::NonClientHitTest(const gfx::Point& point) { argument
201 // Windows can figure this out. If the point isn't within our bounds, then
204 if (!browser_view_->IsBrowserTypeNormal() || !bounds().Contains(point))
208 frame_->GetWindow()->client_view()->NonClientHitTest(point);
215 GetSystemMetrics(SM_CYSMICON)).Contains(point))
221 // See if the point is within the profile menu button.
223 profile_button_->GetMirroredBounds().Contains(point))
227 int window_component = GetHTComponentForFrame(point, frame_border_thickness,
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWin.cpp121 // Create the PlatformCALayerWinInternal object and point to it in the userdata.
337 CGPoint point = CACFLayerGetPosition(m_layer.get()); local
338 return FloatPoint3D(point.x, point.y, CACFLayerGetZPosition(m_layer.get()));
350 CGPoint point = CACFLayerGetAnchorPoint(m_layer.get()); local
352 return FloatPoint3D(point.x, point.y, z);
/external/webkit/Source/WebCore/rendering/
H A DHitTestResult.cpp63 HitTestResult::HitTestResult(const IntPoint& point) argument
64 : m_point(point)
93 , m_point(other.point())
120 m_point = other.point();
198 // Return the tool tip string associated with this point, if any. Only markers associated with bad grammar
214 // Return the replaced string associated with this point, if any. This marker is created when a string is autocorrected,
616 IntRect HitTestResult::rectForPoint(const IntPoint& point, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding) argument
618 IntPoint actualPoint(point);
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapePluginEventHandlerCocoa.mm104 NSPoint point = [m_pluginView convertPoint:[nsEvent locationInWindow] fromView:nil];
116 event.data.mouse.pluginX = point.x;
117 event.data.mouse.pluginY = point.y;

Completed in 2286 milliseconds

1234567891011>>