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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/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 64 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/
org.eclipse.equinox.p2.operations_2.0.0.v20100510.jar 
  /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.
  /external/chromium_org/cc/animation/
transform_operations_unittest.cc 88 void GetIdentityOperations(ScopedVector<TransformOperations>* operations) {
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->push_back(to_add)
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...]
  /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/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;
Lte.java 21 package org.apache.xpath.operations;
NotEquals.java 21 package org.apache.xpath.operations;
Quo.java 21 package org.apache.xpath.operations;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
AnimationTranslationUtilTest.cpp 71 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().append(Matrix3DTransformOperation::create(matrix1))
    [all...]
AnimationTranslationUtil.cpp 66 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(toWebTransformOperations(*value->value(), boxSize))
    [all...]
  /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/core/platform/graphics/filters/
FilterOperations.h 57 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/
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);
162 void RenderLayerFilterInfo::updateCustomFilterClients(const FilterOperations& operations)
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/
FilterOperationsTest.cpp 39 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));
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ImportTestResolver.java 36 ArrayList<ContentProviderOperation> operations) {
38 return mProvider.applyBatch(operations);
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_drag_drop_views.h 22 // Returns the drag operations for the specified node.
27 // set of drop operations (|operations|). This prefers the following ordering:
29 int GetPreferredBookmarkDropOperation(int source_operations, int operations);

Completed in 1819 milliseconds

1 2 3 4 5 6 7 8 91011>>