OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_operations
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/transforms/
TransformOperations.h
47
for (unsigned i = 0; i <
m_operations
.size(); ++i)
48
m_operations
[i]->apply(t, sz);
55
for (unsigned i = 0; i <
m_operations
.size(); ++i)
56
if (
m_operations
[i]->is3DOperation())
63
m_operations
.clear();
66
Vector<RefPtr<TransformOperation> >& operations() { return
m_operations
; }
67
const Vector<RefPtr<TransformOperation> >& operations() const { return
m_operations
; }
69
size_t size() const { return
m_operations
.size(); }
70
const TransformOperation* at(size_t index) const { return index <
m_operations
.size() ?
m_operations
.at(index).get() : 0;
73
Vector<RefPtr<TransformOperation> >
m_operations
;
member in class:WebCore::TransformOperations
[
all
...]
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])
/external/webkit/Source/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
691
unsigned s = rareNonInheritedData->m_transform->
m_operations
.operations().size();
695
TransformOperation::OperationType type = rareNonInheritedData->m_transform->
m_operations
.operations()[i]->getOperationType();
713
rareNonInheritedData->m_transform->
m_operations
.operations()[i]->apply(transform, borderBoxSize);
[
all
...]
RenderStyle.h
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp
56
,
m_operations
(operations)
183
if (!
m_operations
->size())
211
for (unsigned int i = 0; i <
m_operations
->size(); i++) {
212
const AnimationValue* value =
m_operations
->at(i);
215
if (distance == -1 || (d >= 0 && d < distance && i + 1 <
m_operations
->size())) {
223
if (foundAt + 1 <
m_operations
->size())
234
FloatAnimationValue* fromValue = (FloatAnimationValue*)
m_operations
->at(from);
235
FloatAnimationValue* toValue = (FloatAnimationValue*)
m_operations
->at(to);
276
TransformAnimationValue* fromValue = (TransformAnimationValue*)
m_operations
->at(from);
277
TransformAnimationValue* toValue = (TransformAnimationValue*)
m_operations
->at(to)
[
all
...]
AndroidAnimation.h
76
KeyframeValueList*
m_operations
;
member in class:WebCore::AndroidAnimation
/external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.cpp
144
for (size_t i = 0; i <
m_operations
.size(); i++)
145
m_operations
[i]->~RecordingData();
146
m_operations
.clear();
160
for (size_t i = 0; i <
m_operations
.size(); i++) {
161
RecordingData *data =
m_operations
[i];
191
m_operations
.append(data);
206
Vector<RecordingData*>
m_operations
;
member in class:WebCore::CanvasState
[
all
...]
Completed in 969 milliseconds