Home
last modified time | relevance | path

Searched refs:operationType (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DTransformBuilder.cpp119 switch (transformValue->operationType()) { in createTransformOperations()
125 if (transformValue->operationType() == CSSTransformValue::ScaleYTransformOperation) in createTransformOperations()
129 … if (transformValue->operationType() != CSSTransformValue::ScaleXTransformOperation) { in createTransformOperations()
137 …ansformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType()))); in createTransformOperations()
145 if (transformValue->operationType() == CSSTransformValue::ScaleZTransformOperation) in createTransformOperations()
147 else if (transformValue->operationType() == CSSTransformValue::ScaleYTransformOperation) in createTransformOperations()
151 … if (transformValue->operationType() != CSSTransformValue::ScaleXTransformOperation) { in createTransformOperations()
163 …ransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType()))); in createTransformOperations()
171 if (transformValue->operationType() == CSSTransformValue::TranslateYTransformOperation) in createTransformOperations()
175 … if (transformValue->operationType() != CSSTransformValue::TranslateXTransformOperation) { in createTransformOperations()
[all …]
DFilterOperationResolver.cpp374 …FilterOperation::OperationType operationType = filterOperationForType(filterValue->operationType()… in createFilterOperations() local
376 if (operationType == FilterOperation::VALIDATED_CUSTOM) { in createFilterOperations()
381 if (operationType == FilterOperation::CUSTOM) { in createFilterOperations()
389 if (operationType == FilterOperation::REFERENCE) { in createFilterOperations()
413 if (operationType != FilterOperation::DROP_SHADOW) { in createFilterOperations()
426 switch (filterValue->operationType()) { in createFilterOperations()
437 … operations.operations().append(BasicColorMatrixFilterOperation::create(amount, operationType)); in createFilterOperations()
445 … operations.operations().append(BasicColorMatrixFilterOperation::create(angle, operationType)); in createFilterOperations()
452 …double amount = (filterValue->operationType() == CSSFilterValue::BrightnessFilterOperation) ? 0 : … in createFilterOperations()
459 …erations.operations().append(BasicComponentTransferFilterOperation::create(amount, operationType)); in createFilterOperations()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSFilterValue.cpp33 CSSFilterValue::CSSFilterValue(FilterOperationType operationType) in CSSFilterValue() argument
34 …: CSSValueList(CSSFilterClass, typeUsesSpaceSeparator(operationType) ? SpaceSeparator : CommaSepar… in CSSFilterValue()
35 , m_type(operationType) in CSSFilterValue()
39 bool CSSFilterValue::typeUsesSpaceSeparator(FilterOperationType operationType) in typeUsesSpaceSeparator() argument
41 return operationType != CustomFilterOperation; in typeUsesSpaceSeparator()
DCSSFilterValue.h62 FilterOperationType operationType() const { return m_type; } in operationType() function
DCSSTransformValue.h71 TransformOperationType operationType() const { return m_type; } in operationType() function
DWebKitCSSFilterValue.idl46 readonly attribute unsigned short operationType;
DWebKitCSSTransformValue.idl58 readonly attribute unsigned short operationType;
/external/chromium_org/chrome/browser/resources/file_manager/background/js/
Dfile_operation_handler.js81 switch (event.status.operationType) {
90 switch (event.status.operationType) {
98 switch (event.status.operationType) {
107 switch (event.status.operationType) {
115 switch (event.status.operationType) {
150 FileOperationHandler.getType_ = function(operationType) { argument
151 switch (operationType) {
178 item.type = FileOperationHandler.getType_(event.status.operationType);
206 item.type = FileOperationHandler.getType_(event.status.operationType);
Dfile_operation_manager.js381 operationType, sourceEntries, targetDirEntry) { argument
382 this.operationType = operationType;
477 operationType: this.operationType,
977 operationType: null, property
993 var operationType =
994 this.copyTasks_.length > 0 ? this.copyTasks_[0].operationType : null;
998 if (task.operationType != operationType)
999 operationType = null;
1007 result.operationType = operationType;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFilterOperations.cpp115 FilterOperation::OperationType operationType = m_operations.at(i)->type(); in hasOutsets() local
116 …if (operationType == FilterOperation::BLUR || operationType == FilterOperation::DROP_SHADOW || ope… in hasOutsets()
DFilterOperation.h113 #define DEFINE_FILTER_OPERATION_TYPE_CASTS(thisType, operationType) \ argument
114 …rOperation, op, op->type() == FilterOperation::operationType, op.type() == FilterOperation::operat…
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DSubtleCrypto.cpp52 …peration(const Dictionary& rawAlgorithm, Key* key, AlgorithmOperation operationType, ArrayBufferVi… in startCryptoOperation() argument
54 bool requiresKey = operationType != Digest; in startCryptoOperation()
62 if (operationType == Verify && !signature) { in startCryptoOperation()
72 if (!normalizeAlgorithm(rawAlgorithm, operationType, algorithm, exceptionState)) in startCryptoOperation()
75 if (requiresKey && !key->canBeUsedForAlgorithm(algorithm, operationType, exceptionState)) in startCryptoOperation()
84 switch (operationType) { in startCryptoOperation()