Searched refs:operationType (Results 1 - 9 of 9) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DWebKitCSSFilterValue.cpp37 WebKitCSSFilterValue::WebKitCSSFilterValue(FilterOperationType operationType) argument
38 : CSSValueList(WebKitCSSFilterClass, typeUsesSpaceSeparator(operationType) ? SpaceSeparator : CommaSeparator)
39 , m_type(operationType)
43 bool WebKitCSSFilterValue::typeUsesSpaceSeparator(FilterOperationType operationType) argument
46 return operationType != CustomFilterOperation;
48 UNUSED_PARAM(operationType);
H A DTransformFunctions.cpp115 switch (transformValue->operationType()) {
121 if (transformValue->operationType() == WebKitCSSTransformValue::ScaleYTransformOperation)
125 if (transformValue->operationType() != WebKitCSSTransformValue::ScaleXTransformOperation) {
133 operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, transformOperationType(transformValue->operationType())));
141 if (transformValue->operationType() == WebKitCSSTransformValue::ScaleZTransformOperation)
143 else if (transformValue->operationType() == WebKitCSSTransformValue::ScaleYTransformOperation)
147 if (transformValue->operationType() != WebKitCSSTransformValue::ScaleXTransformOperation) {
159 operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, transformOperationType(transformValue->operationType())));
167 if (transformValue->operationType() == WebKitCSSTransformValue::TranslateYTransformOperation)
171 if (transformValue->operationType() !
[all...]
H A DWebKitCSSFilterValue.idl50 readonly attribute unsigned short operationType;
H A DWebKitCSSTransformValue.idl58 readonly attribute unsigned short operationType;
H A DWebKitCSSFilterValue.h67 FilterOperationType operationType() const { return m_type; } function in class:WebCore::WebKitCSSFilterValue
H A DWebKitCSSTransformValue.h74 TransformOperationType operationType() const { return m_type; } function in class:WebCore::WebKitCSSTransformValue
H A DStyleResolver.cpp3905 FilterOperation::OperationType operationType = filterOperationForType(filterValue->operationType()); local
3908 if (operationType == FilterOperation::VALIDATED_CUSTOM) {
3913 if (operationType == FilterOperation::CUSTOM) {
3922 if (operationType == FilterOperation::REFERENCE) {
3948 if (operationType != FilterOperation::DROP_SHADOW) {
3961 switch (filterValue->operationType()) {
3972 operations.operations().append(BasicColorMatrixFilterOperation::create(amount, operationType));
3980 operations.operations().append(BasicColorMatrixFilterOperation::create(angle, operationType));
3987 double amount = (filterValue->operationType()
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFilterOperations.cpp114 FilterOperation::OperationType operationType = m_operations.at(i).get()->getOperationType(); local
115 if (operationType == FilterOperation::BLUR || operationType == FilterOperation::DROP_SHADOW)
/macosx-10.9.5/WebKit2-7537.78.2/Shared/CoordinatedGraphics/
H A DCoordinatedGraphicsArgumentCoders.cpp459 TransformOperation::OperationType operationType; local
460 if (!decoder.decodeEnum(operationType))
463 switch (operationType) {
476 transformOperations.operations().append(ScaleTransformOperation::create(x, y, z, operationType));
491 transformOperations.operations().append(TranslateTransformOperation::create(x, y, z, operationType));
507 transformOperations.operations().append(RotateTransformOperation::create(x, y, z, angle, operationType));
518 transformOperations.operations().append(SkewTransformOperation::create(angleX, angleY, operationType));

Completed in 174 milliseconds