HomeSort by relevance Sort by last modified time
    Searched defs:hotSpot (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebCore/css/
CSSCursorImageValue.h 35 static PassRefPtr<CSSCursorImageValue> create(const String& url, const IntPoint& hotSpot)
37 return adoptRef(new CSSCursorImageValue(url, hotSpot));
42 IntPoint hotSpot() const { return m_hotSpot; }
52 CSSCursorImageValue(const String& url, const IntPoint& hotSpot);
  /external/webkit/Source/WebCore/rendering/style/
CursorData.h 35 CursorData(PassRefPtr<StyleImage> image, const IntPoint& hotSpot)
37 , m_hotSpot(hotSpot)
54 const IntPoint& hotSpot() const { return m_hotSpot; }
  /external/replicaisland/src/com/replica/replicaisland/
SelectDialogComponent.java 40 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem;
41 if (hotSpot != null && mHitReact != null) {
47 final int hitSpot = hotSpot.getHotSpot(parentObject.getCenteredPositionX(), currentPosition.y + 10);
LifetimeComponent.java 104 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem;
105 if (hotSpot != null) {
107 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(),
PatrolComponent.java 91 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;
AnimationComponent.java 289 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem;
290 if (hotSpot != null) {
292 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(),
NPCComponent.java 165 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, GameObject parentObject, float timeDelta)
    [all...]
PlayerComponent.java 280 HotSpotSystem hotSpot = sSystemRegistry.hotSpotSystem;
281 if (hotSpot != null) {
283 if (hotSpot.getHotSpot(parentObject.getCenteredPositionX(),
  /external/webkit/Source/WebCore/platform/
Cursor.h 163 Cursor(Image*, const IntPoint& hotSpot);
172 const IntPoint& hotSpot() const { return m_hotSpot; }
  /external/webkit/Source/WebCore/platform/chromium/
PlatformCursor.h 94 PlatformCursor(Image* image, const IntPoint& hotSpot)
96 , m_hotSpot(hotSpot)
100 const IntPoint& hotSpot() const { return m_hotSpot; }
  /external/webkit/Source/WebKit/chromium/public/
WebCursorInfo.h 97 WebPoint hotSpot;
  /external/webkit/Source/WebCore/page/
EventHandler.cpp     [all...]

Completed in 120 milliseconds