HomeSort by relevance Sort by last modified time
    Searched refs:m_stateStack (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.h 282 State& modifiableState() { ASSERT(!m_unrealizedSaveCount); return m_stateStack.last(); }
283 const State& state() const { return m_stateStack.last(); }
340 Vector<State, 1> m_stateStack;
CanvasRenderingContext2D.cpp 92 , m_stateStack(1)
105 if (size_t stackSize = m_stateStack.size()) {
131 m_stateStack.resize(1);
132 m_stateStack.first() = State();
247 ASSERT(m_stateStack.size() >= 1);
250 m_stateStack.append(state());
262 ASSERT(m_stateStack.size() >= 1);
263 if (m_stateStack.size() <= 1)
266 m_stateStack.removeLast();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext.cpp 81 m_stateStack.append(adoptPtr(new GraphicsContextState()));
82 m_state = m_stateStack.last().get();
87 ASSERT(m_stateStack.size() == 1);
116 m_stateStack.append(m_state->clone());
117 m_state = m_stateStack.last().get();
128 if (m_stateStack.size() == 1) {
138 m_stateStack.removeLast();
139 m_state = m_stateStack.last().get();
    [all...]
GraphicsContext.h 434 // Pointer to the current drawing state. This is a cached value of m_stateStack.last().
438 Vector<OwnPtr<GraphicsContextState> > m_stateStack;

Completed in 25 milliseconds