Searched refs:operations (Results 1 - 25 of 142) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DTransformOperations.cpp55 size_t numOperations = operations().size();
57 if (numOperations != other.operations().size())
62 if (!operations()[i]->isSameType(*other.operations()[i]))
72 unsigned fromSize = from.operations().size();
73 unsigned toSize = operations().size();
76 RefPtr<TransformOperation> fromOperation = (i < fromSize) ? from.operations()[i].get() : 0;
77 RefPtr<TransformOperation> toOperation = (i < toSize) ? operations()[i].get() : 0;
80 result.operations().append(blendedOperation);
84 result.operations()
[all...]
H A DInterpolatedTransformOperation.cpp64 thisOperations.operations().append(this);
67 fromOperations.operations().append(IdentityTransformOperation::create());
69 fromOperations.operations().append(const_cast<TransformOperation*>(from));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.operations_2.0.0.v20100510.jar ... org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/operations/ org/eclipse/equinox/internal/p2/operations/Activator.class Activator ...
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java30 import org.apache.xpath.operations.Div;
31 import org.apache.xpath.operations.Minus;
32 import org.apache.xpath.operations.Mod;
33 import org.apache.xpath.operations.Mult;
34 import org.apache.xpath.operations.Plus;
35 import org.apache.xpath.operations.Quo;
36 import org.apache.xpath.operations.Variable;
109 (pred instanceof org.apache.xpath.operations.Number) ||
/external/chromium_org/cc/animation/
H A Dtransform_operations_unittest.cc88 void GetIdentityOperations(ScopedVector<TransformOperations>* operations) { argument
90 operations->push_back(to_add);
94 operations->push_back(to_add);
99 operations->push_back(to_add);
103 operations->push_back(to_add);
108 operations->push_back(to_add);
112 operations->push_back(to_add);
117 operations->push_back(to_add);
121 operations->push_back(to_add);
126 operations
139 ScopedVector<TransformOperations> operations; local
152 TransformOperations operations; local
164 TransformOperations operations; local
175 TransformOperations operations; local
185 TransformOperations operations; local
195 TransformOperations operations; local
222 TransformOperations operations; local
425 TransformOperations operations; local
459 TransformOperations operations; local
493 TransformOperations operations; local
527 TransformOperations operations; local
564 TransformOperations operations; local
583 TransformOperations operations; local
601 TransformOperations operations; local
619 TransformOperations operations; local
637 TransformOperations operations; local
656 TransformOperations operations; local
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DString.java21 package org.apache.xpath.operations;
H A DGt.java21 package org.apache.xpath.operations;
H A DGte.java21 package org.apache.xpath.operations;
H A DLt.java21 package org.apache.xpath.operations;
H A DLte.java21 package org.apache.xpath.operations;
H A DNotEquals.java21 package org.apache.xpath.operations;
H A DQuo.java21 package org.apache.xpath.operations;
H A DBool.java21 package org.apache.xpath.operations;
H A DDiv.java21 package org.apache.xpath.operations;
H A DMinus.java21 package org.apache.xpath.operations;
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
H A DAnimationTranslationUtilTest.cpp71 operations1.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX));
75 operations2.operations().append(TranslateTransformOperation::create(Length(4, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX));
90 operations1.operations().append(RotateTransformOperation::create(0, TransformOperation::Rotate));
94 operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
112 operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
127 operations1.operations().append(RotateTransformOperation::create(-330, TransformOperation::Rotate));
131 operations2.operations().append(RotateTransformOperation::create(-320, TransformOperation::Rotate));
146 operations1.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
150 operations2.operations().append(RotateTransformOperation::create(360, TransformOperation::Rotate));
166 operations1.operations()
[all...]
H A DAnimationTranslationUtil.cpp66 TransformOperation::OperationType operationType = transformOperations.operations()[j]->getOperationType();
73 ScaleTransformOperation* transform = static_cast<ScaleTransformOperation*>(transformOperations.operations()[j].get());
82 TranslateTransformOperation* transform = static_cast<TranslateTransformOperation*>(transformOperations.operations()[j].get());
90 RotateTransformOperation* transform = static_cast<RotateTransformOperation*>(transformOperations.operations()[j].get());
97 SkewTransformOperation* transform = static_cast<SkewTransformOperation*>(transformOperations.operations()[j].get());
102 MatrixTransformOperation* transform = static_cast<MatrixTransformOperation*>(transformOperations.operations()[j].get());
108 Matrix3DTransformOperation* transform = static_cast<Matrix3DTransformOperation*>(transformOperations.operations()[j].get());
114 PerspectiveTransformOperation* transform = static_cast<PerspectiveTransformOperation*>(transformOperations.operations()[j].get());
120 transformOperations.operations()[j]->apply(m, boxSize);
163 OwnPtr<WebTransformOperations> operations(toWebTransformOperation
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DTransformBuilder.cpp96 TransformOperations operations; local
137 operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType())));
163 operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType())));
186 operations.operations().append(TranslateTransformOperation::create(tx, ty, Length(0, Fixed), getTransformOperationType(transformValue->operationType())));
215 operations.operations().append(TranslateTransformOperation::create(tx, ty, tz, getTransformOperationType(transformValue->operationType())));
220 operations
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
H A DFilterOperations.h57 Vector<RefPtr<FilterOperation> >& operations() { return m_operations; } function in class:WebCore::FilterOperations
58 const Vector<RefPtr<FilterOperation> >& operations() const { return m_operations; } function in class:WebCore::FilterOperations
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerFilterInfo.cpp114 void RenderLayerFilterInfo::updateReferenceFilterClients(const FilterOperations& operations) argument
117 for (size_t i = 0; i < operations.size(); ++i) {
118 RefPtr<FilterOperation> filterOperation = operations.operations().at(i);
162 void RenderLayerFilterInfo::updateCustomFilterClients(const FilterOperations& operations) argument
164 if (!operations.size()) {
169 for (size_t i = 0; i < operations.size(); ++i) {
170 const FilterOperation* filterOperation = operations.at(i);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DFilterOperationsTest.cpp39 ops.operations().append(BlurFilterOperation::create(Length(20.0, WebCore::Fixed), FilterOperation::BLUR));
51 ops.operations().append(DropShadowFilterOperation::create(IntPoint(3, 8), 20, Color(1, 2, 3), FilterOperation::DROP_SHADOW));
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java28 import org.apache.xpath.operations.Operation;
29 import org.apache.xpath.operations.UnaryOperation;
30 import org.apache.xpath.operations.Variable;
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
H A DCustomFilterTransformParameter.h55 const TransformOperations& from = fromTransformParameter->operations();
56 const TransformOperations& to = operations();
82 const TransformOperations& operations() const { return m_operations; } function in class:WebCore::CustomFilterTransformParameter
/external/chromium_org/chrome/browser/undo/
H A Dundo_manager.cc121 const std::vector<UndoOperation*>& operations = local
123 result.insert(result.end(), operations.begin(), operations.end());
126 const std::vector<UndoOperation*>& operations = local
128 result.insert(result.end(), operations.begin(), operations.end());
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DVarNameCollector.java28 import org.apache.xpath.operations.Variable;

Completed in 1320 milliseconds

123456