HomeSort by relevance Sort by last modified time
    Searched refs:operationType (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFilterValue.cpp 33 CSSFilterValue::CSSFilterValue(FilterOperationType operationType)
34 : CSSValueList(CSSFilterClass, typeUsesSpaceSeparator(operationType) ? SpaceSeparator : CommaSeparator)
35 , m_type(operationType)
39 bool CSSFilterValue::typeUsesSpaceSeparator(FilterOperationType operationType)
41 return operationType != CustomFilterOperation;
WebKitCSSFilterValue.idl 46 readonly attribute unsigned short operationType;
CSSFilterValue.h 62 FilterOperationType operationType() const { return m_type; }
WebKitCSSTransformValue.idl 58 readonly attribute unsigned short operationType;
CSSTransformValue.h 71 TransformOperationType operationType() const { return m_type; }
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 59 static TransformOperation::OperationType getTransformOperationType(CSSTransformValue::TransformOperationType type)
119 switch (transformValue->operationType()) {
125 if (transformValue->operationType() == CSSTransformValue::ScaleYTransformOperation)
129 if (transformValue->operationType() != CSSTransformValue::ScaleXTransformOperation) {
137 operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType())));
145 if (transformValue->operationType() == CSSTransformValue::ScaleZTransformOperation)
147 else if (transformValue->operationType() == CSSTransformValue::ScaleYTransformOperation)
151 if (transformValue->operationType() != CSSTransformValue::ScaleXTransformOperation) {
163 operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType())));
171 if (transformValue->operationType() == CSSTransformValue::TranslateYTransformOperation
    [all...]
FilterOperationResolver.cpp 53 static FilterOperation::OperationType filterOperationForType(CSSFilterValue::FilterOperationType type)
374 FilterOperation::OperationType operationType = filterOperationForType(filterValue->operationType());
376 if (operationType == FilterOperation::VALIDATED_CUSTOM) {
381 if (operationType == FilterOperation::CUSTOM) {
389 if (operationType == FilterOperation::REFERENCE) {
413 if (operationType != FilterOperation::DROP_SHADOW) {
426 switch (filterValue->operationType()) {
437 operations.operations().append(BasicColorMatrixFilterOperation::create(amount, operationType));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperations.cpp 96 FilterOperation::OperationType type = m_operations.at(i)->type();
115 FilterOperation::OperationType operationType = m_operations.at(i)->type();
116 if (operationType == FilterOperation::BLUR || operationType == FilterOperation::DROP_SHADOW || operationType == FilterOperation::REFERENCE)
FilterOperation.h 45 enum OperationType {
62 static bool canInterpolate(FilterOperation::OperationType type)
93 OperationType type() const { return m_type; }
102 FilterOperation(OperationType type)
107 OperationType m_type;
113 #define DEFINE_FILTER_OPERATION_TYPE_CASTS(thisType, operationType) \
114 DEFINE_TYPE_CASTS(thisType, FilterOperation, op, op->type() == FilterOperation::operationType, op.type() == FilterOperation::operationType);
165 static PassRefPtr<BasicColorMatrixFilterOperation> create(double amount, OperationType type)
183 BasicColorMatrixFilterOperation(double amount, OperationType type
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/background/js/
file_operation_handler.js 81 switch (event.status.operationType) {
90 switch (event.status.operationType) {
98 switch (event.status.operationType) {
107 switch (event.status.operationType) {
115 switch (event.status.operationType) {
144 * Obtains ProgressItemType from OperationType of FileTransferManager.
145 * @param {string} operationType OperationType of FileTransferManager.
150 FileOperationHandler.getType_ = function(operationType) {
151 switch (operationType) {
    [all...]
file_operation_manager.js 375 * @param {util.FileOperationType} operationType The type of this operation.
381 operationType, sourceEntries, targetDirEntry) {
382 this.operationType = operationType;
477 operationType: this.operationType,
977 operationType: null,
993 var operationType
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.cpp 52 ScriptPromise startCryptoOperation(const Dictionary& rawAlgorithm, Key* key, AlgorithmOperation operationType, ArrayBufferView* signature, ArrayBufferView* dataBuffer, ExceptionState& exceptionState)
54 bool requiresKey = operationType != Digest;
62 if (operationType == Verify && !signature) {
72 if (!normalizeAlgorithm(rawAlgorithm, operationType, algorithm, exceptionState))
75 if (requiresKey && !key->canBeUsedForAlgorithm(algorithm, operationType, exceptionState))
84 switch (operationType) {
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 227 milliseconds