OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RenderGeometryMapStep
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGeometryMap.h
45
struct
RenderGeometryMapStep
{
46
RenderGeometryMapStep
(const
RenderGeometryMapStep
& o)
57
RenderGeometryMapStep
(const RenderObject* renderer, bool accumulatingTransform, bool isNonUniform, bool isFixedPosition, bool hasTransform)
116
void stepInserted(const
RenderGeometryMapStep
&);
117
void stepRemoved(const
RenderGeometryMapStep
&);
131
typedef Vector<
RenderGeometryMapStep
, 32> RenderGeometryMapSteps;
145
// This is required for a struct with OwnPtr. We know
RenderGeometryMapStep
is simple enough that
147
template<> struct VectorTraits<WebCore::
RenderGeometryMapStep
> : SimpleClassVectorTraits { };
RenderGeometryMap.cpp
65
const
RenderGeometryMapStep
& currentStep = m_mapping[i];
253
m_mapping.insert(m_insertionPosition,
RenderGeometryMapStep
(renderer, accumulatingTransform, isNonUniform, isFixedPosition, hasTransform));
255
RenderGeometryMapStep
& step = m_mapping[m_insertionPosition];
268
m_mapping.insert(m_insertionPosition,
RenderGeometryMapStep
(renderer, accumulatingTransform, isNonUniform, isFixedPosition, hasTransform));
270
RenderGeometryMapStep
& step = m_mapping[m_insertionPosition];
297
void RenderGeometryMap::stepInserted(const
RenderGeometryMapStep
& step)
311
void RenderGeometryMap::stepRemoved(const
RenderGeometryMapStep
& step)
Completed in 94 milliseconds