/external/webkit/WebCore/platform/graphics/win/ |
IntPointWin.cpp | 33 IntPoint::IntPoint(const POINT& p) 39 IntPoint::operator POINT() const 41 POINT p = {m_x, m_y};
|
/frameworks/base/graphics/java/android/renderscript/ |
Primitive.java | 23 POINT (0),
|
/external/qemu/distrib/sdl-1.2.12/src/video/gapi/ |
SDL_gapivideo.h | 44 POINT ptUp; // x,y position of key/button. Not on screen but in screen coordinates. 46 POINT ptDown; 48 POINT ptLeft; 50 POINT ptRight; 52 POINT ptA; 54 POINT ptB; 56 POINT ptC; 58 POINT ptStart;
|
/external/webkit/WebCore/platform/win/ |
WheelEventWin.cpp | 41 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local 42 ScreenToClient(hWnd, &point); 43 return point; 48 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local 49 return point; 82 POINT point = {location.x(), location.y()}; local 83 m_globalPosition = point; [all...] |
PlatformMouseEventWin.cpp | 40 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local 41 return point; 46 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local 47 ClientToScreen(hWnd, &point); 48 return point;
|
PopupMenuWin.cpp | 81 POINT pt; 291 POINT location(rScreenCoords.location()); 400 int PopupMenu::listIndexAtPoint(const IntPoint& point) const 402 return m_scrollOffset + point.y() / m_itemHeight; 883 // Put the point into coordinates relative to the scroll bar 919 // Put the point into coordinates relative to the scroll bar 944 // Put the point into coordinates relative to the scroll bar
|
/external/webkit/WebKit/win/ |
WebKitGraphics.h | 55 POINT pt;
|
WebDropSource.cpp | 139 POINT cursorPoint;
|
WebNodeHighlight.cpp | 167 POINT srcPoint; 171 POINT dstPoint;
|
WebKitGraphics.cpp | 87 POINT pt;
|
FullscreenVideoController.cpp | 156 void HUDSlider::drag(const IntPoint& point, bool start) 162 int relativeX = point.x() - m_rect.location().x(); 164 m_dragStartOffset = point.x() - m_buttonPosition; 169 m_buttonPosition = max(0, min(m_rect.width() - m_buttonSize, point.x() - m_dragStartOffset)); 464 POINT sourcePoint = {0, 0}; 465 POINT destPoint = { m_hudPosition.x(), m_hudPosition.y() }; 514 void FullscreenVideoController::onMouseDown(const IntPoint& point) 516 IntPoint convertedPoint(fullScreenToHUDCoordinates(point)); 553 void FullscreenVideoController::onMouseMove(const IntPoint& point) 555 IntPoint convertedPoint(fullScreenToHUDCoordinates(point)); [all...] |
/external/webkit/WebCore/platform/graphics/ |
IntPoint.h | 50 typedef struct tagPOINT POINT; 120 IntPoint(const POINT&); 121 operator POINT() const; 193 inline QDataStream& operator<<(QDataStream& stream, const IntPoint& point) 195 stream << point.x() << point.y(); 199 inline QDataStream& operator>>(QDataStream& stream, IntPoint& point) 203 point.setX(x); 204 point.setY(y);
|
/external/webkit/WebKit/chromium/src/win/ |
WebInputEventFactory.cpp | 157 POINT pos = {-1, -1}; 236 POINT globalPoint = { result.x, result.y }; 331 POINT cursorPosition = {0}; 390 POINT clientPoint = { result.globalX, result.globalY };
|
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/ |
SDL_sysmouse.c | 189 POINT mouse_pos; 219 POINT pt; 231 POINT pt;
|
SDL_syswm.c | 268 POINT pt; 285 POINT pt;
|
SDL_sysevents.c | 262 POINT pt; 438 POINT center;
|
/frameworks/base/core/java/android/text/ |
SpannableStringBuilder.java | 184 if (flag == POINT || (atend && flag == PARAGRAPH)) 195 if (flag == POINT || (atend && flag == PARAGRAPH)) 366 if (flag == POINT || (flag == PARAGRAPH && atend)) 376 if (flag == POINT || (flag == PARAGRAPH && atend)) 549 if (flag == POINT || (flag == PARAGRAPH && start == length())) 558 if (flag == POINT || (flag == PARAGRAPH && end == length())) 1021 if (endFlag(mSpanFlags[wfound]) == POINT) [all...] |
/external/webkit/WebKitTools/DumpRenderTree/win/ |
EventSender.cpp | 49 static POINT lastMousePosition; 217 static inline POINTL pointl(const POINT& point) 220 result.x = point.x; 221 result.y = point.y; 238 POINT screenPoint = msg.pt; 311 POINT screenPoint = msg.pt;
|
/frameworks/base/libs/rs/java/Fountain/src/com/android/fountain/ |
FountainRS.java | 90 smb.setPrimitive(Primitive.POINT); 98 // All setup of named objects should be done by this point 104 sb.setType(mSM.getVertexType(0), "point", 1);
|
/external/icu4c/samples/layout/ |
GDIFontInstance.cpp | 111 POINT pt; 196 POINT pt; 384 le_bool GDIFontInstance::getGlyphPoint(LEGlyphID glyph, le_int32 pointNumber, LEPoint &point) const 393 point.fX = xUnitsToPoints(pt.fX); 394 point.fY = yUnitsToPoints(pt.fY);
|
/external/webkit/WebKit/win/WebCoreSupport/ |
WebDragClient.cpp | 119 POINT localpt = core(m_webView)->mainFrame()->view()->windowToContents(windowPoint); 131 POINT point = intPoint; 135 HRESULT result = uiDelegate->willPerformDragSourceAction(m_webView, static_cast<WebDragSourceAction>(action), &point, dataObject.get(), &newDataObject);
|
WebInspectorClient.cpp | 400 POINT size = {400, 400};
|
/external/webkit/WebCore/platform/graphics/wince/ |
PlatformPathWince.cpp | 167 static inline int quadrant(const PathPoint& point, const PathPoint& origin) 169 return point.m_x < origin.m_x ? 170 (point.m_y < origin.m_y ? 2 : 1) 171 : (point.m_y < origin.m_y ? 3 : 0); 243 POINT* winPoints = 0; 246 winPoints = new POINT[npoints + 1]; 248 winPoints = new POINT[npoints]; 326 bool PathPolygon::contains(const FloatPoint& point) const 331 // Test intersections between the polygon and the vertical line: x = point.x() 340 if (point1->x() != point.x()) [all...] |
/external/openssl/crypto/rand/ |
rand_win.c | 153 POINT ptScreenPos;
|
/packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/ |
GalaxyRS.java | 141 meshBuilder.setPrimitive(Primitive.POINT);
|