HomeSort by relevance Sort by last modified time
    Searched refs:operations (Results 1 - 25 of 368) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableFilterOperations.h 42 static PassRefPtr<AnimatableFilterOperations> create(const FilterOperations& operations)
44 return adoptRef(new AnimatableFilterOperations(operations));
46 const FilterOperations& operations() const { return m_operations; } function in class:WebCore::AnimatableFilterOperations
53 AnimatableFilterOperations(const FilterOperations& operations)
54 : m_operations(operations)
AnimatableFilterOperations.cpp 41 if (!operations().canInterpolateWith(target->operations()))
45 size_t fromSize = operations().size();
46 size_t toSize = target->operations().size();
49 FilterOperation* from = (i < fromSize) ? m_operations.operations()[i].get() : 0;
50 FilterOperation* to = (i < toSize) ? target->m_operations.operations()[i].get() : 0;
53 result.operations().append(blendedOp);
68 return operations() == toAnimatableFilterOperations(value)->operations();
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformOperations.cpp 55 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().append(toOperation ? toOperation : identityOperation)
    [all...]
InterpolatedTransformOperation.cpp 63 thisOperations.operations().append(this);
66 fromOperations.operations().append(IdentityTransformOperation::create());
68 fromOperations.operations().append(const_cast<TransformOperation*>(from));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.operations_2.0.0.v20100510.jar 
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerReflectionInfo.cpp 93 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
95 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
97 transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::Scale));
101 transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::Scale));
102 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
104 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
109 transform.operations().append(TranslateTransformOperation::create(Length(100., Percent),
111 transform.operations().append(TranslateTransformOperation::create(
113 transform.operations().append(ScaleTransformOperation::create(-1.0, 1.0, ScaleTransformOperation::Scale));
117 transform.operations().append(ScaleTransformOperation::create(-1.0, 1.0, ScaleTransformOperation::Scale))
    [all...]
RenderLayerFilterInfo.cpp 114 void RenderLayerFilterInfo::updateReferenceFilterClients(const FilterOperations& operations)
117 for (size_t i = 0; i < operations.size(); ++i) {
118 RefPtr<FilterOperation> filterOperation = operations.operations().at(i);
166 void RenderLayerFilterInfo::updateCustomFilterClients(const FilterOperations& operations)
168 if (!operations.size()) {
173 for (size_t i = 0; i < operations.size(); ++i) {
174 const FilterOperation* filterOperation = operations.at(i);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorTestOperations/
SequentialCompositeSensorTestOperation.java 33 * @param operations
35 public void add(SensorTestOperation ... operations) {
37 for(SensorTestOperation operation : operations) {
ParallelCompositeSensorTestOperation.java 33 * @param operations
35 public void add(SensorTestOperation ... operations) {
37 for(SensorTestOperation operation : operations) {
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 30 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) ||
  /libcore/luni/src/main/java/java/nio/
SelectionKeyImpl.java 40 public SelectionKeyImpl(AbstractSelectableChannel channel, int operations,
43 interestOps = operations;
68 public SelectionKey interestOps(int operations) {
70 if ((operations & ~(channel().validOps())) != 0) {
74 interestOps = operations;
91 * Allows SelectorImpl to set the ready operations.
95 // about what operations a key is interested in. SelectorImpl is already too complicated.
  /libcore/luni/src/main/java/java/nio/channels/
SelectableChannel.java 111 * {@link SelectionKey interest set} is updated to {@code operations}. The
122 * {@code register(selector, operations, null)}.
126 * @param operations
141 public final SelectionKey register(Selector selector, int operations)
143 return register(selector, operations, null);
183 * Gets the set of valid {@link SelectionKey operations} of this channel.
186 * @return the set of operations that this channel supports.
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtilTest.cpp 106 operations1.operations().append(BasicColorMatrixFilterOperation::create(0.5, FilterOperation::SATURATE));
110 operations2.operations().append(BasicColorMatrixFilterOperation::create(1.0, FilterOperation::SATURATE));
125 operations1.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX));
129 operations2.operations().append(TranslateTransformOperation::create(Length(4, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TranslateX));
144 operations1.operations().append(RotateTransformOperation::create(0, TransformOperation::Rotate));
148 operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
166 operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate));
181 operations1.operations().append(RotateTransformOperation::create(-330, TransformOperation::Rotate));
185 operations2.operations().append(RotateTransformOperation::create(-320, TransformOperation::Rotate));
200 operations1.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate))
    [all...]
AnimationTranslationUtil.cpp 64 switch (transformOperations.operations()[j]->type()) {
70 ScaleTransformOperation* transform = static_cast<ScaleTransformOperation*>(transformOperations.operations()[j].get());
79 TranslateTransformOperation* transform = static_cast<TranslateTransformOperation*>(transformOperations.operations()[j].get());
87 RotateTransformOperation* transform = static_cast<RotateTransformOperation*>(transformOperations.operations()[j].get());
94 SkewTransformOperation* transform = static_cast<SkewTransformOperation*>(transformOperations.operations()[j].get());
99 MatrixTransformOperation* transform = static_cast<MatrixTransformOperation*>(transformOperations.operations()[j].get());
105 Matrix3DTransformOperation* transform = static_cast<Matrix3DTransformOperation*>(transformOperations.operations()[j].get());
111 PerspectiveTransformOperation* transform = static_cast<PerspectiveTransformOperation*>(transformOperations.operations()[j].get());
117 transformOperations.operations()[j]->apply(m, boxSize);
149 OwnPtr<WebTransformOperations> operations = adoptPtr(Platform::current()->compositorSupport()->createTransformOperations()) local
171 OwnPtr<WebTransformOperations> operations = adoptPtr(Platform::current()->compositorSupport()->createTransformOperations()); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
String.java 21 package org.apache.xpath.operations;
Gt.java 21 package org.apache.xpath.operations;
Gte.java 21 package org.apache.xpath.operations;
Lt.java 21 package org.apache.xpath.operations;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 96 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.operations().append(RotateTransformOperation::create(0, 0, 1, angle, getTransformOperationType(tra (…)
    [all...]
  /art/test/ThreadStress/
ThreadStress.java 58 // operations. The distribution of operations is determined by
60 // for each thread with the operations it is to perform. The
68 // operations. So here we do a quick sanity check in case
83 Operation[] operations = new Operation[operationsPerThread]; local
89 if (o == operations.length) {
92 operations[o] = op;
98 Collections.shuffle(Arrays.asList(operations));
99 threadStresses[t] = new ThreadStress(lock, t, operations);
106 Operation[] operations = new Operation[operationsPerThread] local
174 private final Operation[] operations; field in class:ThreadStress
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperations.cpp 75 for (size_t i = 0; i < operations().size(); ++i) {
76 if (!FilterOperation::canInterpolate(operations()[i]->type()))
80 for (size_t i = 0; i < other.operations().size(); ++i) {
81 if (!FilterOperation::canInterpolate(other.operations()[i]->type()))
85 size_t commonSize = std::min(operations().size(), other.operations().size());
87 if (!operations()[i]->isSameType(*other.operations()[i]))
FilterOperations.h 58 Vector<RefPtr<FilterOperation> >& operations() { return m_operations; } function in class:WebCore::FilterOperations
59 const Vector<RefPtr<FilterOperation> >& operations() const { return m_operations; } function in class:WebCore::FilterOperations
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterTransformParameter.cpp 43 const TransformOperations& from = fromTransformParameter->operations();
44 const TransformOperations& to = operations();
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FilterOperationsTest.cpp 39 ops.operations().append(BlurFilterOperation::create(Length(20.0, WebCore::Fixed)));
51 ops.operations().append(DropShadowFilterOperation::create(IntPoint(3, 8), 20, Color(1, 2, 3)));
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ImportTestResolver.java 36 ArrayList<ContentProviderOperation> operations) {
38 return mProvider.applyBatch(operations);

Completed in 237 milliseconds

1 2 3 4 5 6 7 8 91011>>