OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RenderingContextMap
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.h
209
typedef HashMap<int, int>
RenderingContextMap
;
210
PassRefPtr<JSONObject> layerTreeAsJSON(LayerTreeFlags,
RenderingContextMap
&) const;
GraphicsLayer.cpp
549
PassRefPtr<JSONObject> GraphicsLayer::layerTreeAsJSON(LayerTreeFlags flags,
RenderingContextMap
&
renderingContextMap
) const
583
RenderingContextMap
::const_iterator it =
renderingContextMap
.find(m_3dRenderingContext);
584
int contextId =
renderingContextMap
.size() + 1;
585
if (it ==
renderingContextMap
.end())
586
renderingContextMap
.set(m_3dRenderingContext, contextId);
612
json->setObject("replicaLayer", m_replicaLayer->layerTreeAsJSON(flags,
renderingContextMap
));
665
childrenJSON->pushObject(m_children[i]->layerTreeAsJSON(flags,
renderingContextMap
));
674
RenderingContextMap
renderingContextMap
[
all
...]
Completed in 1176 milliseconds