Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DTransformBuilder.cpp113 switch (transformValue->operationType()) { in createTransformOperations()
119 if (transformValue->operationType() == CSSTransformValue::ScaleYTransformOperation) in createTransformOperations()
123 … if (transformValue->operationType() != CSSTransformValue::ScaleXTransformOperation) { in createTransformOperations()
131 …ansformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType()))); in createTransformOperations()
139 if (transformValue->operationType() == CSSTransformValue::ScaleZTransformOperation) in createTransformOperations()
141 else if (transformValue->operationType() == CSSTransformValue::ScaleYTransformOperation) in createTransformOperations()
145 … if (transformValue->operationType() != CSSTransformValue::ScaleXTransformOperation) { in createTransformOperations()
157 …ransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType()))); in createTransformOperations()
165 if (transformValue->operationType() == CSSTransformValue::TranslateYTransformOperation) in createTransformOperations()
169 … if (transformValue->operationType() != CSSTransformValue::TranslateXTransformOperation) { in createTransformOperations()
[all …]
DFilterOperationResolver.cpp102 …FilterOperation::OperationType operationType = filterOperationForType(filterValue->operationType()… in createFilterOperations() local
104 if (operationType == FilterOperation::REFERENCE) { in createFilterOperations()
128 if (operationType != FilterOperation::DROP_SHADOW) { in createFilterOperations()
141 switch (filterValue->operationType()) { in createFilterOperations()
152 … operations.operations().append(BasicColorMatrixFilterOperation::create(amount, operationType)); in createFilterOperations()
160 … operations.operations().append(BasicColorMatrixFilterOperation::create(angle, operationType)); in createFilterOperations()
167 …double amount = (filterValue->operationType() == CSSFilterValue::BrightnessFilterOperation) ? 0 : … in createFilterOperations()
174 …erations.operations().append(BasicComponentTransferFilterOperation::create(amount, operationType)); in createFilterOperations()
/external/chromium_org/ui/file_manager/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);
207 item.type = FileOperationHandler.getType_(event.status.operationType);
Dfile_operation_manager.js392 operationType, sourceEntries, targetDirEntry) { argument
393 this.operationType = operationType;
485 operationType: this.operationType,
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFilterOperations.cpp103 FilterOperation::OperationType operationType = m_operations.at(i)->type(); in hasOutsets() local
104 …if (operationType == FilterOperation::BLUR || operationType == FilterOperation::DROP_SHADOW || ope… in hasOutsets()
DFilterOperation.h109 #define DEFINE_FILTER_OPERATION_TYPE_CASTS(thisType, operationType) \ argument
110 …rOperation, op, op->type() == FilterOperation::operationType, op.type() == FilterOperation::operat…
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSFilterValue.cpp33 CSSFilterValue::CSSFilterValue(FilterOperationType operationType) in CSSFilterValue() argument
35 , m_type(operationType) in CSSFilterValue()
DCSSFilterValue.h61 FilterOperationType operationType() const { return m_type; } in operationType() function
DCSSTransformValue.h70 TransformOperationType operationType() const { return m_type; } in operationType() function
DWebKitCSSFilterValue.idl45 readonly attribute unsigned short operationType;
DWebKitCSSTransformValue.idl58 readonly attribute unsigned short operationType;
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DSubtleCrypto.cpp89 …, const Dictionary& rawAlgorithm, Key* key, blink::WebCryptoOperation operationType, const ArrayPi… in startCryptoOperation() argument
97 bool requiresKey = operationType != blink::WebCryptoOperationDigest; in startCryptoOperation()
101 …if (operationType == blink::WebCryptoOperationVerify && !ensureNotNull(signature, "signature", res… in startCryptoOperation()
107 if (!parseAlgorithm(rawAlgorithm, operationType, algorithm, result.get())) in startCryptoOperation()
110 if (requiresKey && !key->canBeUsedForAlgorithm(algorithm, operationType, result.get())) in startCryptoOperation()
116 switch (operationType) { in startCryptoOperation()
/external/smali/dexlib2/src/accessorTest/java/org/jf/dexlib2/
DAccessorTest.java124 int operationType = operationTypes.get(operation); in testAccessors() local
125 Assert.assertEquals(operationType, accessedMember.accessedMemberType); in testAccessors()