Home
last modified time | relevance | path

Searched refs:m_hotSpot (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DCursorData.h37 , m_hotSpot(hotSpot) in CursorData()
43 return m_hotSpot == o.m_hotSpot && m_image == o.m_image;
55 const IntPoint& hotSpot() const { return m_hotSpot; } in hotSpot()
59 IntPoint m_hotSpot; // for CSS3 support variable
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSCursorImageValue.cpp54 , m_hotSpot(hotSpot) in CSSCursorImageValue()
82 result.appendNumber(m_hotSpot.x()); in customCSSText()
84 result.appendNumber(m_hotSpot.y()); in customCSSText()
103 m_hotSpot.setX(static_cast<int>(x)); in updateIfSVGCursorIsUsed()
106 m_hotSpot.setY(static_cast<int>(y)); in updateIfSVGCursorIsUsed()
194 return m_hasHotSpot ? other.m_hasHotSpot && m_hotSpot == other.m_hotSpot : !other.m_hasHotSpot in equals()
DCSSCursorImageValue.h47 return m_hotSpot; in hotSpot()
71 IntPoint m_hotSpot; variable
/external/chromium_org/third_party/WebKit/Source/platform/
DCursor.cpp148 , m_hotSpot(determineHotSpot(image, hotSpot)) in Cursor()
156 , m_hotSpot(determineHotSpot(image, hotSpot)) in Cursor()
170 , m_hotSpot(other.m_hotSpot) in Cursor()
179 m_hotSpot = other.m_hotSpot; in operator =()
DCursor.h111 const IntPoint& hotSpot() const { return m_hotSpot; } in hotSpot()
118 IntPoint m_hotSpot; variable
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
DICOImageDecoder.cpp151 hotSpot = m_dirEntries[index].m_hotSpot; in hotSpotAtIndex()
312 entry.m_hotSpot = IntPoint(readUint16(4), readUint16(6)); in readDirectoryEntry()
315 entry.m_hotSpot = IntPoint(); in readDirectoryEntry()
DICOImageDecoder.h76 IntPoint m_hotSpot; member