/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
D | TransformOperations.cpp | 55 size_t numOperations = operations().size(); in operationsMatch() 57 if (numOperations != other.operations().size()) in operationsMatch() 62 if (!operations()[i]->isSameType(*other.operations()[i])) in operationsMatch() 72 unsigned fromSize = from.operations().size(); in blendByMatchingOperations() 73 unsigned toSize = operations().size(); in blendByMatchingOperations() 76 RefPtr<TransformOperation> fromOperation = (i < fromSize) ? from.operations()[i].get() : 0; in blendByMatchingOperations() 77 RefPtr<TransformOperation> toOperation = (i < toSize) ? operations()[i].get() : 0; in blendByMatchingOperations() 80 result.operations().append(blendedOperation); in blendByMatchingOperations() 84 result.operations().append(toOperation ? toOperation : identityOperation); in blendByMatchingOperations() 86 result.operations().append(fromOperation ? fromOperation : identityOperation); in blendByMatchingOperations() [all …]
|
D | InterpolatedTransformOperation.cpp | 63 thisOperations.operations().append(this); in blend() 66 fromOperations.operations().append(IdentityTransformOperation::create()); in blend() 68 fromOperations.operations().append(const_cast<TransformOperation*>(from)); in blend()
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | AnimatableFilterOperations.cpp | 41 if (!operations().canInterpolateWith(target->operations())) in interpolateTo() 45 size_t fromSize = operations().size(); in interpolateTo() 46 size_t toSize = target->operations().size(); in interpolateTo() 49 FilterOperation* from = (i < fromSize) ? m_operations.operations()[i].get() : 0; in interpolateTo() 50 FilterOperation* to = (i < toSize) ? target->m_operations.operations()[i].get() : 0; in interpolateTo() 53 result.operations().append(blendedOp); in interpolateTo() 68 return operations() == toAnimatableFilterOperations(value)->operations(); in equalTo()
|
D | AnimatableFilterOperations.h | 42 static PassRefPtr<AnimatableFilterOperations> create(const FilterOperations& operations) in create() argument 44 return adoptRef(new AnimatableFilterOperations(operations)); in create() 46 const FilterOperations& operations() const { return m_operations; } in operations() function 53 AnimatableFilterOperations(const FilterOperations& operations) in AnimatableFilterOperations() argument 54 : m_operations(operations) in AnimatableFilterOperations()
|
/external/chromium_org/cc/animation/ |
D | transform_operations_unittest.cc | 92 void GetIdentityOperations(ScopedVector<TransformOperations>* operations) { in GetIdentityOperations() argument 94 operations->push_back(to_add); in GetIdentityOperations() 98 operations->push_back(to_add); in GetIdentityOperations() 103 operations->push_back(to_add); in GetIdentityOperations() 107 operations->push_back(to_add); in GetIdentityOperations() 112 operations->push_back(to_add); in GetIdentityOperations() 116 operations->push_back(to_add); in GetIdentityOperations() 121 operations->push_back(to_add); in GetIdentityOperations() 125 operations->push_back(to_add); in GetIdentityOperations() 130 operations->push_back(to_add); in GetIdentityOperations() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
D | AnimationTranslationUtilTest.cpp | 106 …operations1.operations().append(BasicColorMatrixFilterOperation::create(0.5, FilterOperation::SATU… in TEST() 110 …operations2.operations().append(BasicColorMatrixFilterOperation::create(1.0, FilterOperation::SATU… in TEST() 125 …operations1.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Len… in TEST() 129 …operations2.operations().append(TranslateTransformOperation::create(Length(4, WebCore::Fixed), Len… in TEST() 144 … operations1.operations().append(RotateTransformOperation::create(0, TransformOperation::Rotate)); in TEST() 148 …operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate)); in TEST() 166 …operations2.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate)); in TEST() 181 …operations1.operations().append(RotateTransformOperation::create(-330, TransformOperation::Rotate)… in TEST() 185 …operations2.operations().append(RotateTransformOperation::create(-320, TransformOperation::Rotate)… in TEST() 200 …operations1.operations().append(RotateTransformOperation::create(270, TransformOperation::Rotate)); in TEST() [all …]
|
D | AnimationTranslationUtil.cpp | 64 switch (transformOperations.operations()[j]->type()) { in toWebTransformOperations() 70 …tion* transform = static_cast<ScaleTransformOperation*>(transformOperations.operations()[j].get()); in toWebTransformOperations() 79 …* transform = static_cast<TranslateTransformOperation*>(transformOperations.operations()[j].get()); in toWebTransformOperations() 87 …ion* transform = static_cast<RotateTransformOperation*>(transformOperations.operations()[j].get()); in toWebTransformOperations() 94 …ation* transform = static_cast<SkewTransformOperation*>(transformOperations.operations()[j].get()); in toWebTransformOperations() 99 …ion* transform = static_cast<MatrixTransformOperation*>(transformOperations.operations()[j].get()); in toWebTransformOperations() 105 …n* transform = static_cast<Matrix3DTransformOperation*>(transformOperations.operations()[j].get()); in toWebTransformOperations() 111 …transform = static_cast<PerspectiveTransformOperation*>(transformOperations.operations()[j].get()); in toWebTransformOperations() 117 transformOperations.operations()[j]->apply(m, boxSize); in toWebTransformOperations() 149 …OwnPtr<WebTransformOperations> operations = adoptPtr(Platform::current()->compositorSupport()->cre… in appendKeyframeWithStandardTimingFunction() local [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderLayerReflectionInfo.cpp | 93 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), in updateAfterStyleChange() 95 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), in updateAfterStyleChange() 97 …transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::… in updateAfterStyleChange() 101 …transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::… in updateAfterStyleChange() 102 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), in updateAfterStyleChange() 104 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed), in updateAfterStyleChange() 109 transform.operations().append(TranslateTransformOperation::create(Length(100., Percent), in updateAfterStyleChange() 111 transform.operations().append(TranslateTransformOperation::create( in updateAfterStyleChange() 113 …transform.operations().append(ScaleTransformOperation::create(-1.0, 1.0, ScaleTransformOperation::… in updateAfterStyleChange() 117 …transform.operations().append(ScaleTransformOperation::create(-1.0, 1.0, ScaleTransformOperation::… in updateAfterStyleChange() [all …]
|
D | RenderLayerFilterInfo.cpp | 114 void RenderLayerFilterInfo::updateReferenceFilterClients(const FilterOperations& operations) in updateReferenceFilterClients() argument 117 for (size_t i = 0; i < operations.size(); ++i) { in updateReferenceFilterClients() 118 RefPtr<FilterOperation> filterOperation = operations.operations().at(i); in updateReferenceFilterClients() 166 void RenderLayerFilterInfo::updateCustomFilterClients(const FilterOperations& operations) in updateCustomFilterClients() argument 168 if (!operations.size()) { in updateCustomFilterClients() 173 for (size_t i = 0; i < operations.size(); ++i) { in updateCustomFilterClients() 174 const FilterOperation* filterOperation = operations.at(i); in updateCustomFilterClients()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | TransformBuilder.cpp | 96 TransformOperations operations; in createTransformOperations() local 137 …operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, getTransformOperationT… in createTransformOperations() 163 …operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, getTransformOperationTy… in createTransformOperations() 186 …operations.operations().append(TranslateTransformOperation::create(tx, ty, Length(0, Fixed), getTr… in createTransformOperations() 215 …operations.operations().append(TranslateTransformOperation::create(tx, ty, tz, getTransformOperati… in createTransformOperations() 220 …operations.operations().append(RotateTransformOperation::create(0, 0, 1, angle, getTransformOperat… in createTransformOperations() 237 …operations.operations().append(RotateTransformOperation::create(x, y, z, angle, getTransformOperat… in createTransformOperations() 250 …operations.operations().append(RotateTransformOperation::create(x, y, z, angle, getTransformOperat… in createTransformOperations() 270 …operations.operations().append(SkewTransformOperation::create(angleX, angleY, getTransformOperatio… in createTransformOperations() 282 operations.operations().append(MatrixTransformOperation::create(a, b, c, d, e, f)); in createTransformOperations() [all …]
|
D | FilterOperationResolver.cpp | 126 TransformOperations operations; in parseCustomFilterTransformParameter() local 127 …TransformBuilder::createTransformOperations(values, state.cssToLengthConversionData(), operations); in parseCustomFilterTransformParameter() 128 transformParameter->setOperations(operations); in parseCustomFilterTransformParameter() 367 FilterOperations operations; in createFilterOperations() local 386 operations.operations().append(operation); in createFilterOperations() 407 operations.operations().append(operation); in createFilterOperations() 437 … operations.operations().append(BasicColorMatrixFilterOperation::create(amount, operationType)); in createFilterOperations() 445 … operations.operations().append(BasicColorMatrixFilterOperation::create(angle, operationType)); in createFilterOperations() 459 …operations.operations().append(BasicComponentTransferFilterOperation::create(amount, operationType… in createFilterOperations() 469 operations.operations().append(BlurFilterOperation::create(stdDeviation)); in createFilterOperations() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | 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) || in visitPredicate()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
D | FilterOperations.cpp | 75 for (size_t i = 0; i < operations().size(); ++i) { in canInterpolateWith() 76 if (!FilterOperation::canInterpolate(operations()[i]->type())) in canInterpolateWith() 80 for (size_t i = 0; i < other.operations().size(); ++i) { in canInterpolateWith() 81 if (!FilterOperation::canInterpolate(other.operations()[i]->type())) in canInterpolateWith() 85 size_t commonSize = std::min(operations().size(), other.operations().size()); in canInterpolateWith() 87 if (!operations()[i]->isSameType(*other.operations()[i])) in canInterpolateWith()
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | Compiler.java | 43 import org.apache.xpath.operations.And; 44 import org.apache.xpath.operations.Div; 45 import org.apache.xpath.operations.Equals; 46 import org.apache.xpath.operations.Gt; 47 import org.apache.xpath.operations.Gte; 48 import org.apache.xpath.operations.Lt; 49 import org.apache.xpath.operations.Lte; 50 import org.apache.xpath.operations.Minus; 51 import org.apache.xpath.operations.Mod; 52 import org.apache.xpath.operations.Mult; [all …]
|
/external/chromium_org/chrome/browser/undo/ |
D | undo_manager.cc | 121 const std::vector<UndoOperation*>& operations = in GetAllUndoOperations() local 123 result.insert(result.end(), operations.begin(), operations.end()); in GetAllUndoOperations() 126 const std::vector<UndoOperation*>& operations = in GetAllUndoOperations() local 128 result.insert(result.end(), operations.begin(), operations.end()); in GetAllUndoOperations()
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
D | idl_definitions.py | 172 …constructors=None, custom_constructors=None, extended_attributes=None, operations=None, is_callbac… argument 178 self.operations = operations or [] 193 for operation in self.operations: 203 'domInterface::functions': self.operations, 213 …def __init__(self, name=None, constants=None, operations=None, attributes=None, extended_attribute… argument 217 self.operations = operations or [] 225 for operations in self.operations: 226 operations.resolve_typedefs(typedefs) 235 'domInterface::functions': self.operations,
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
D | rewrite.rb | 212 operations = @operations.reverse 215 until operations.empty? 216 operation = operations.shift 221 operations.delete_if do |prior_operation| 236 operations.delete_if do |prior_operation| 284 operations = reduce 288 if operation = operations.delete( cursor ) 296 if operation = operations.delete( cursor ) and
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
D | diff.rb | 34 def operations method in HTMLDiff.DiffBuilder 36 operations = [] 65 operations << operation_upto_match_positions 71 operations << match_operation 78 operations
|
/external/oprofile/events/i386/piii/ |
D | unit_masks | 29 0x04 MMX pack operations 30 0x08 MMX unpack operations 35 0x00 MMX->float operations 36 0x01 float->MMX operations
|
/external/oprofile/events/i386/pii/ |
D | unit_masks | 19 0x04 MMX pack operations 20 0x08 MMX unpack operations 25 0x00 MMX->float operations 26 0x01 float->MMX operations
|
/external/llvm/docs/ |
D | Atomics.rst | 117 another operation; it is normally used along with Monotonic memory operations. 183 lock. Note that code generation will fail for unsupported atomic operations; if 204 call. Reordering unordered operations is safe, though, and optimizers should 205 take advantage of that because unordered operations are common in languages 209 These operations are required to be atomic in the sense that if you use 213 instructions (or an instruction which does multiple memory operations, like 221 essentially guarantees that if you take all the operations affecting a specific 232 either be used for atomic operations which do not protect other memory (like 240 operations are unlikely to be used in ways which would make those 308 barrier (for fences and operations which both read and write memory). [all …]
|
/external/eigen/doc/ |
D | C03_TutorialArrayClass.dox | 3 /** \page TutorialArrayClass Tutorial page 3 - The %Array class and coefficient-wise operations 25 perform coefficient-wise operations, which might not have a linear algebraic meaning, 120 \section TutorialArrayClassCwiseOther Other coefficient-wise operations 122 The Array class defines other coefficient-wise operations besides the addition, subtraction and mul… 127 arrays. These operations are illustrated in the following example. 138 More coefficient-wise operations can be found in the \ref QuickRefPage. 144 apply Matrix operations on arrays, or Array operations on matrices. Thus, if you need to do linear … 145 operations such as matrix multiplication, then you should use matrices; if you need to do coefficie… 146 operations, then you should use arrays. However, sometimes it is not that simple, but you need to u… 147 Matrix and Array operations. In that case, you need to convert a matrix to an array or reversely. T… [all …]
|
/external/oprofile/events/i386/p6_mobile/ |
D | unit_masks | 33 0x04 MMX pack operations 34 0x08 MMX unpack operations 39 0x00 MMX->float operations 40 0x01 float->MMX operations
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | XPathVisitor.java | 28 import org.apache.xpath.operations.Operation; 29 import org.apache.xpath.operations.UnaryOperation; 30 import org.apache.xpath.operations.Variable;
|
/external/mesa3d/src/mesa/swrast/ |
D | NOTES | 4 paths for rasterization operations and states that aren't accelerated 14 the module provides implementations of the pixel operations 15 (ReadPixels, etc), and texture operations (CopyTexSubImage) which may 17 versions of these operations are unavailable.
|