OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_stateStack
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.h
128
StateVector
m_stateStack
;
/external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h
135
Vector<PlatformPainterState*>
m_stateStack
;
/external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.h
213
WTF::Vector<State>
m_stateStack
;
/external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h
266
State& state() { return
m_stateStack
.last(); }
267
const State& state() const { return
m_stateStack
.last(); }
296
Vector<State, 1>
m_stateStack
;
/external/webkit/Source/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp
222
,
m_stateStack
(sizeof(State))
224
State* state = static_cast<State*>(
m_stateStack
.push_back());
233
while (
m_stateStack
.count() > 0)
242
State* newState = static_cast<State*>(
m_stateStack
.push_back());
253
m_stateStack
.pop_back();
254
m_state = static_cast<State*>(
m_stateStack
.back());
431
SkDeque
m_stateStack
;
[
all
...]
Completed in 449 milliseconds