Searched refs:hotSpot (Results 1 - 25 of 31) sorted by relevance

12

/external/webkit/Source/WebKit/chromium/src/
H A DWebCursorInfo.cpp43 hotSpot = cursor.impl().hotSpot();
/external/webkit/Source/WebCore/rendering/style/
H A DCursorData.h35 CursorData(PassRefPtr<StyleImage> image, const IntPoint& hotSpot) argument
37 , m_hotSpot(hotSpot)
54 const IntPoint& hotSpot() const { return m_hotSpot; } function in class:WebCore::CursorData
/external/webkit/Source/WebCore/css/
H A DCSSCursorImageValue.h35 static PassRefPtr<CSSCursorImageValue> create(const String& url, const IntPoint& hotSpot) argument
37 return adoptRef(new CSSCursorImageValue(url, hotSpot));
42 IntPoint hotSpot() const { return m_hotSpot; } function in class:WebCore::CSSCursorImageValue
52 CSSCursorImageValue(const String& url, const IntPoint& hotSpot);
H A DCSSCursorImageValue.cpp56 CSSCursorImageValue::CSSCursorImageValue(const String& url, const IntPoint& hotSpot) argument
58 , m_hotSpot(hotSpot)
/external/replicaisland/src/com/replica/replicaisland/
H A DSelectDialogComponent.java40 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem;
41 if (hotSpot != null && mHitReact != null) {
47 final int hitSpot = hotSpot.getHotSpot(parentObject.getCenteredPositionX(), currentPosition.y + 10);
H A DNPCComponent.java165 final int hotSpot = hotSpotSystem.getHotSpotByTile(hitTileX, hitTileY);
167 if (hotSpot >= HotSpotSystem.HotSpotType.NPC_GO_RIGHT && hotSpot <= HotSpotSystem.HotSpotType.NPC_SLOW) {
170 accepted = executeCommand(hotSpot, parentObject, timeDelta);
171 } else if (hotSpot == HotSpotSystem.HotSpotType.ATTACK && !mPauseOnAttack) {
173 accepted = executeCommand(hotSpot, parentObject, timeDelta);
174 } else if (hotSpot == HotSpotSystem.HotSpotType.NPC_RUN_QUEUED_COMMANDS) {
178 } else if (hotSpot > HotSpotSystem.HotSpotType.NONE) {
179 queueCommand(hotSpot);
212 private boolean executeCommand(int hotSpot, GameObjec argument
[all...]
H A DPatrolComponent.java91 int hotSpot = HotSpotSystem.HotSpotType.NONE;
95 hotSpot = hotSpotSystem.getHotSpot(parentObject.getCenteredPositionX(),
102 || hotSpot == HotSpotType.GO_LEFT) && targetVelocityX >= 0.0f;
105 || hotSpot == HotSpotType.GO_RIGHT) && targetVelocityX <= 0.0f;
107 boolean pause = (mMaxSpeed == 0.0f) || hotSpot == HotSpotType.GO_DOWN;
162 || hotSpot == HotSpotType.GO_UP;
165 || hotSpot == HotSpotType.GO_DOWN;
H A DLifetimeComponent.java104 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem;
105 if (hotSpot != null) {
107 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(),
H A DAnimationComponent.java289 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem;
290 if (hotSpot != null) {
292 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(),
H A DPlayerComponent.java280 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem;
281 if (hotSpot != null) {
283 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(),
/external/webkit/Source/WebCore/platform/chromium/
H A DPlatformCursor.h94 PlatformCursor(Image* image, const IntPoint& hotSpot) argument
96 , m_hotSpot(hotSpot)
100 const IntPoint& hotSpot() const { return m_hotSpot; } function in class:WebCore::PlatformCursor
H A DCursorChromium.cpp43 Cursor::Cursor(Image* image, const IntPoint& hotSpot) argument
44 : m_platformCursor(image, hotSpot)
/external/chromium/webkit/glue/
H A Dwebcursor_unittest.cc121 EXPECT_EQ(gfx::Point(1, 1), gfx::Point(info.hotSpot));
125 info.hotSpot = gfx::Point(-1, -1);
128 EXPECT_EQ(gfx::Point(0, 0), gfx::Point(info.hotSpot));
H A Dwebcursor.cc57 hotspot_ = cursor_info.hotSpot;
65 cursor_info->hotSpot = hotspot_;
/external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
H A DSDL_macmouse.c82 cursor->curs.hotSpot.h = hot_x;
83 cursor->curs.hotSpot.v = hot_y;
/external/webkit/Source/WebCore/platform/mac/
H A DCursorMac.mm43 static RetainPtr<NSCursor> createCustomCursor(Image* image, const IntPoint& hotSpot)
50 return RetainPtr<NSCursor>(AdoptNS, [[NSCursor alloc] initWithImage:nsImage hotSpot:hotSpot]);
68 cursor = [[NSCursor alloc] initWithImage:cursorImage hotSpot:hotSpotPoint];
/external/webkit/Source/WebKit/chromium/public/
H A DWebCursorInfo.h97 WebPoint hotSpot; member in struct:WebKit::WebCursorInfo
/external/webkit/Source/WebCore/platform/qt/
H A DCursorQt.cpp76 static QCursor* createCustomCursor(Image* image, const IntPoint& hotSpot) argument
78 IntPoint effectiveHotSpot = determineHotSpot(image, hotSpot);
/external/webkit/Source/WebCore/platform/win/
H A DCursorWin.cpp43 static PassRefPtr<SharedCursor> createSharedCursor(Image* img, const IntPoint& hotSpot) argument
47 IntPoint effectiveHotSpot = determineHotSpot(img, hotSpot);
126 IntPoint hotSpot(x, y);
129 return createSharedCursor(cursorImage.get(), hotSpot);
/external/webkit/Source/WebCore/platform/
H A DCursor.h163 Cursor(Image*, const IntPoint& hotSpot);
172 const IntPoint& hotSpot() const { return m_hotSpot; } function in class:WebCore::Cursor
H A DCursor.cpp242 Cursor::Cursor(Image* image, const IntPoint& hotSpot) argument
245 , m_hotSpot(determineHotSpot(image, hotSpot))
/external/webkit/Source/WebCore/platform/graphics/
H A DBitmapImage.cpp189 bool BitmapImage::getHotSpot(IntPoint& hotSpot) const
191 bool result = m_source.getHotSpot(hotSpot);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageSourceCG.cpp208 bool ImageSource::getHotSpot(IntPoint& hotSpot) const
226 hotSpot = IntPoint(x, y);
/external/webkit/Source/WebCore/platform/gtk/
H A DCursorGtk.cpp62 static GRefPtr<GdkCursor> createCustomCursor(Image* image, const IntPoint& hotSpot) argument
64 IntPoint effectiveHotSpot = determineHotSpot(image, hotSpot);
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h210 encoder->encode(cursor.hotSpot());
234 WebCore::IntPoint hotSpot;
235 if (!decoder->decode(hotSpot))
237 if (!image->rect().contains(WebCore::IntRect(hotSpot, WebCore::IntSize())))
240 cursor = WebCore::Cursor(image.get(), hotSpot);

Completed in 376 milliseconds

12