Home
last modified time | relevance | path

Searched refs:m_stateStack (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/context/
DPlatformGraphicsContext.cpp199 m_stateStack.append(State()); in PlatformGraphicsContext()
200 m_state = &m_stateStack.last(); in PlatformGraphicsContext()
213 m_stateStack.append(m_state->cloneInheritedProperties()); in save()
214 m_state = &m_stateStack.last(); in save()
219 m_stateStack.removeLast(); in restore()
220 m_state = &m_stateStack.last(); in restore()
DPlatformGraphicsContext.h200 WTF::Vector<State> m_stateStack; variable
/external/webkit/Source/WebCore/platform/graphics/openvg/
DPainterOpenVG.cpp428 m_stateStack.append(new PlatformPainterState()); in begin()
429 m_state = m_stateStack.last(); in begin()
449 while (!m_stateStack.isEmpty()) { in destroyPainterStates()
450 state = m_stateStack.last(); in destroyPainterStates()
451 m_stateStack.removeLast(); in destroyPainterStates()
1217 m_stateStack.append(state); in save()
1218 m_state = m_stateStack.last(); in save()
1223 m_stateStack.append(state); in save()
1224 m_state = m_stateStack.last(); in save()
1231 ASSERT(m_stateStack.size() >= 2); in restore()
[all …]
DPainterOpenVG.h135 Vector<PlatformPainterState*> m_stateStack;
/external/webkit/Source/WebCore/platform/graphics/skia/
DPlatformContextSkia.cpp226 m_stateStack.append(State()); in PlatformContextSkia()
227 m_state = &m_stateStack.last(); in PlatformContextSkia()
266 m_stateStack.append(m_state->cloneInheritedProperties()); in save()
267 m_state = &m_stateStack.last(); in save()
334 m_stateStack.removeLast(); in restore()
335 m_state = &m_stateStack.last(); in restore()
DPlatformContextSkia.h213 WTF::Vector<State> m_stateStack; variable
/external/webkit/Source/WebCore/html/canvas/
DCanvasRenderingContext2D.h266 State& state() { return m_stateStack.last(); } in state()
267 const State& state() const { return m_stateStack.last(); } in state()
296 Vector<State, 1> m_stateStack; variable
DCanvasRenderingContext2D.cpp109 , m_stateStack(1) in CanvasRenderingContext2D()
174 m_stateStack.resize(1); in reset()
175 m_stateStack.first() = State(); in reset()
295 ASSERT(m_stateStack.size() >= 1); in save()
296 m_stateStack.append(state()); in save()
305 ASSERT(m_stateStack.size() >= 1); in restore()
306 if (m_stateStack.size() <= 1) in restore()
309 m_stateStack.removeLast(); in restore()
/external/webkit/Source/WebCore/platform/graphics/chromium/
DGLES2Canvas.cpp208 m_stateStack.append(State()); in GLES2Canvas()
209 m_state = &m_stateStack.last(); in GLES2Canvas()
373 m_stateStack.append(State(m_stateStack.last())); in save()
374 m_state = &m_stateStack.last(); in save()
379 ASSERT(!m_stateStack.isEmpty()); in restore()
391 m_stateStack.removeLast(); in restore()
392 m_state = &m_stateStack.last(); in restore()
DGLES2Canvas.h128 StateVector m_stateStack; variable
/external/webkit/Source/WebCore/
DChangeLog-2009-06-161519 initialization for its m_stateStack member:
1521 m_stateStack(sizeof(State))
1525 m_stateStack(1)