Home
last modified time | relevance | path

Searched refs:m_coords (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/html/
DHTMLAreaElement.cpp67 m_coords = newCoordsArray(attr->value().string(), m_coordsLen); in parseMappedAttribute()
121 if (!m_coords && m_shape != Default) in getRegion()
143 … path.moveTo(FloatPoint(m_coords[0].calcMinValue(width), m_coords[1].calcMinValue(height))); in getRegion()
145 …path.addLineTo(FloatPoint(m_coords[i * 2].calcMinValue(width), m_coords[i * 2 + 1].calcMinValue(he… in getRegion()
151 Length radius = m_coords[2]; in getRegion()
153 …path.addEllipse(FloatRect(m_coords[0].calcMinValue(width) - r, m_coords[1].calcMinValue(height) - … in getRegion()
158 int x0 = m_coords[0].calcMinValue(width); in getRegion()
159 int y0 = m_coords[1].calcMinValue(height); in getRegion()
160 int x1 = m_coords[2].calcMinValue(width); in getRegion()
161 int y1 = m_coords[3].calcMinValue(height); in getRegion()
DHTMLAreaElement.h66 OwnArrayPtr<Length> m_coords; variable