OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_operations
(Results
1 - 6
of
6
) sorted by null
/external/webkit/WebCore/platform/graphics/transforms/
TransformOperations.cpp
32
m_operations
.append(IdentityTransformOperation::create());
37
if (
m_operations
.size() != o.
m_operations
.size())
40
unsigned s =
m_operations
.size();
42
if (*
m_operations
[i] != *o.
m_operations
[i])
TransformOperations.h
46
for (unsigned i = 0; i <
m_operations
.size(); ++i)
47
m_operations
[i]->apply(t, sz);
54
for (unsigned i = 0; i <
m_operations
.size(); ++i)
55
if (
m_operations
[i]->is3DOperation())
60
Vector<RefPtr<TransformOperation> >& operations() { return
m_operations
; }
61
const Vector<RefPtr<TransformOperation> >& operations() const { return
m_operations
; }
63
size_t size() const { return
m_operations
.size(); }
64
const TransformOperation* at(size_t index) const { return index <
m_operations
.size() ?
m_operations
.at(index).get() : 0; }
67
Vector<RefPtr<TransformOperation> >
m_operations
;
member in class:WebCore::TransformOperations
[
all
...]
/external/webkit/WebCore/rendering/style/
StyleTransformData.cpp
30
:
m_operations
(RenderStyle::initialTransform())
39
,
m_operations
(o.
m_operations
)
48
return m_x == o.m_x && m_y == o.m_y && m_z == o.m_z &&
m_operations
== o.
m_operations
;
StyleTransformData.h
46
TransformOperations
m_operations
;
member in class:WebCore::StyleTransformData
RenderStyle.cpp
660
unsigned s = rareNonInheritedData->m_transform->
m_operations
.operations().size();
664
TransformOperation::OperationType type = rareNonInheritedData->m_transform->
m_operations
.operations()[i]->getOperationType();
682
rareNonInheritedData->m_transform->
m_operations
.operations()[i]->apply(transform, borderBoxSize);
[
all
...]
RenderStyle.h
[
all
...]
Completed in 84 milliseconds