/external/webkit/Source/WebCore/css/ |
D | CSSCursorImageValue.h | 35 static PassRefPtr<CSSCursorImageValue> create(const String& url, const IntPoint& hotSpot) in create() argument 37 return adoptRef(new CSSCursorImageValue(url, hotSpot)); in create() 42 IntPoint hotSpot() const { return m_hotSpot; } in hotSpot() function 52 CSSCursorImageValue(const String& url, const IntPoint& hotSpot);
|
D | CSSCursorImageValue.cpp | 56 CSSCursorImageValue::CSSCursorImageValue(const String& url, const IntPoint& hotSpot) in CSSCursorImageValue() argument 58 , m_hotSpot(hotSpot) in CSSCursorImageValue()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | NPCComponent.java | 165 final int hotSpot = hotSpotSystem.getHotSpotByTile(hitTileX, hitTileY); in update() local 167 …if (hotSpot >= HotSpotSystem.HotSpotType.NPC_GO_RIGHT && hotSpot <= HotSpotSystem.HotSpotType.NPC_… in update() 170 accepted = executeCommand(hotSpot, parentObject, timeDelta); in update() 171 } else if (hotSpot == HotSpotSystem.HotSpotType.ATTACK && !mPauseOnAttack) { in update() 173 accepted = executeCommand(hotSpot, parentObject, timeDelta); in update() 174 } else if (hotSpot == HotSpotSystem.HotSpotType.NPC_RUN_QUEUED_COMMANDS) { in update() 178 } else if (hotSpot > HotSpotSystem.HotSpotType.NONE) { in update() 179 queueCommand(hotSpot); in update() 212 private boolean executeCommand(int hotSpot, GameObject parentObject, float timeDelta) { in executeCommand() argument 216 switch(hotSpot) { in executeCommand() [all …]
|
D | PatrolComponent.java | 91 int hotSpot = HotSpotSystem.HotSpotType.NONE; in update() local 95 hotSpot = hotSpotSystem.getHotSpot(parentObject.getCenteredPositionX(), in update() 102 || hotSpot == HotSpotType.GO_LEFT) && targetVelocityX >= 0.0f; in update() 105 || hotSpot == HotSpotType.GO_RIGHT) && targetVelocityX <= 0.0f; in update() 107 boolean pause = (mMaxSpeed == 0.0f) || hotSpot == HotSpotType.GO_DOWN; in update() 162 || hotSpot == HotSpotType.GO_UP; in update() 165 || hotSpot == HotSpotType.GO_DOWN; in update()
|
D | SelectDialogComponent.java | 40 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem; in update() local 41 if (hotSpot != null && mHitReact != null) { in update() 47 …final int hitSpot = hotSpot.getHotSpot(parentObject.getCenteredPositionX(), currentPosition.y + 10… in update()
|
D | LifetimeComponent.java | 104 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem; in update() local 105 if (hotSpot != null) { in update() 107 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(), in update()
|
D | AnimationComponent.java | 289 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem; in update() local 290 if (hotSpot != null) { in update() 292 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(), in update()
|
D | PlayerComponent.java | 280 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem; in update() local 281 if (hotSpot != null) { in update() 283 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(), in update()
|
/external/webkit/Source/WebCore/rendering/style/ |
D | CursorData.h | 35 CursorData(PassRefPtr<StyleImage> image, const IntPoint& hotSpot) in CursorData() argument 37 , m_hotSpot(hotSpot) in CursorData() 54 const IntPoint& hotSpot() const { return m_hotSpot; } in hotSpot() function
|
/external/webkit/Source/WebCore/platform/chromium/ |
D | PlatformCursor.h | 94 PlatformCursor(Image* image, const IntPoint& hotSpot) in PlatformCursor() argument 96 , m_hotSpot(hotSpot) in PlatformCursor() 100 const IntPoint& hotSpot() const { return m_hotSpot; } in hotSpot() function
|
D | CursorChromium.cpp | 43 Cursor::Cursor(Image* image, const IntPoint& hotSpot) in Cursor() argument 44 : m_platformCursor(image, hotSpot) in Cursor()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebCursorInfo.cpp | 43 hotSpot = cursor.impl().hotSpot(); in WebCursorInfo()
|
/external/chromium/webkit/glue/ |
D | webcursor_unittest.cc | 121 EXPECT_EQ(gfx::Point(1, 1), gfx::Point(info.hotSpot)); in TEST() 125 info.hotSpot = gfx::Point(-1, -1); in TEST() 128 EXPECT_EQ(gfx::Point(0, 0), gfx::Point(info.hotSpot)); in TEST()
|
D | webcursor_mac.mm | 31 hotSpot:NSMakePoint(x, y)] autorelease]; 71 hotSpot:NSMakePoint(hotspot.x(), 279 cursor_info.hotSpot = WebKit::WebPoint(cursor->hotSpot.h, cursor->hotSpot.v); 326 NSPoint hot_spot = [cursor hotSpot]; 327 cursor_info.hotSpot = WebKit::WebPoint(hot_spot.x, hot_spot.y);
|
D | webcursor.cc | 57 hotspot_ = cursor_info.hotSpot; in InitFromCursorInfo() 65 cursor_info->hotSpot = hotspot_; in GetCursorInfo()
|
/external/qemu/distrib/sdl-1.2.12/src/video/maccommon/ |
D | SDL_macmouse.c | 82 cursor->curs.hotSpot.h = hot_x; in Mac_CreateWMCursor() 83 cursor->curs.hotSpot.v = hot_y; in Mac_CreateWMCursor()
|
/external/webkit/Source/WebCore/platform/win/ |
D | CursorWin.cpp | 43 static PassRefPtr<SharedCursor> createSharedCursor(Image* img, const IntPoint& hotSpot) in createSharedCursor() argument 47 IntPoint effectiveHotSpot = determineHotSpot(img, hotSpot); in createSharedCursor() 126 IntPoint hotSpot(x, y); in loadCursorByName() local 129 return createSharedCursor(cursorImage.get(), hotSpot); in loadCursorByName()
|
/external/webkit/Source/WebCore/platform/mac/ |
D | CursorMac.mm | 43 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/WebKit2/Shared/ |
D | WebCoreArgumentCoders.h | 210 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);
|
/external/webkit/Source/WebCore/platform/qt/ |
D | CursorQt.cpp | 76 static QCursor* createCustomCursor(Image* image, const IntPoint& hotSpot) in createCustomCursor() argument 78 IntPoint effectiveHotSpot = determineHotSpot(image, hotSpot); in createCustomCursor()
|
/external/webkit/Source/WebCore/platform/ |
D | Cursor.h | 163 Cursor(Image*, const IntPoint& hotSpot); 172 const IntPoint& hotSpot() const { return m_hotSpot; } in hotSpot() function
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | CursorGtk.cpp | 62 static GRefPtr<GdkCursor> createCustomCursor(Image* image, const IntPoint& hotSpot) in createCustomCursor() argument 64 IntPoint effectiveHotSpot = determineHotSpot(image, hotSpot); in createCustomCursor()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebCursorInfo.h | 97 WebPoint hotSpot; member
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | ImageSourceCG.cpp | 208 bool ImageSource::getHotSpot(IntPoint& hotSpot) const in getHotSpot() 226 hotSpot = IntPoint(x, y); in getHotSpot()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | BitmapImage.cpp | 189 bool BitmapImage::getHotSpot(IntPoint& hotSpot) const in getHotSpot() 191 bool result = m_source.getHotSpot(hotSpot); in getHotSpot()
|