operation 63 Source/core/animation/AnimatableClipPathOperation.cpp const ClipPathOperation* operation = toAnimatableClipPathOperation(value)->m_operation.get(); operation 64 Source/core/animation/AnimatableClipPathOperation.cpp return m_operation == operation || (m_operation && operation && *m_operation == *operation); operation 42 Source/core/animation/AnimatableClipPathOperation.h static PassRefPtrWillBeRawPtr<AnimatableClipPathOperation> create(ClipPathOperation* operation) operation 44 Source/core/animation/AnimatableClipPathOperation.h return adoptRefWillBeNoop(new AnimatableClipPathOperation(operation)); operation 55 Source/core/animation/AnimatableClipPathOperation.h AnimatableClipPathOperation(ClipPathOperation* operation) operation 56 Source/core/animation/AnimatableClipPathOperation.h : m_operation(operation) operation 430 Source/core/animation/css/CSSAnimatableValueFactory.cpp if (ClipPathOperation* operation = style.clipPath()) operation 431 Source/core/animation/css/CSSAnimatableValueFactory.cpp return AnimatableClipPathOperation::create(operation); operation 513 Source/core/clipboard/Clipboard.cpp String convertDragOperationToDropZoneOperation(DragOperation operation) operation 515 Source/core/clipboard/Clipboard.cpp switch (operation) { operation 2643 Source/core/css/CSSComputedStyleDeclaration.cpp if (ClipPathOperation* operation = style->clipPath()) { operation 2644 Source/core/css/CSSComputedStyleDeclaration.cpp if (operation->type() == ClipPathOperation::SHAPE) operation 2645 Source/core/css/CSSComputedStyleDeclaration.cpp return valueForBasicShape(*style, toShapeClipPathOperation(operation)->basicShape()); operation 2646 Source/core/css/CSSComputedStyleDeclaration.cpp if (operation->type() == ClipPathOperation::REFERENCE) operation 2647 Source/core/css/CSSComputedStyleDeclaration.cpp return CSSPrimitiveValue::create(toReferenceClipPathOperation(operation)->url(), CSSPrimitiveValue::CSS_URI); operation 59 Source/core/css/CSSTransformValue.cpp static inline String transformValueToCssString(CSSTransformValue::TransformOperationType operation, const String& value) operation 61 Source/core/css/CSSTransformValue.cpp if (operation != CSSTransformValue::UnknownTransformOperation) { operation 62 Source/core/css/CSSTransformValue.cpp ASSERT_WITH_SECURITY_IMPLICATION(static_cast<size_t>(operation) < WTF_ARRAY_LENGTH(transformNamePrefixes)); operation 63 Source/core/css/CSSTransformValue.cpp return transformNamePrefixes[operation] + value + ")"; operation 115 Source/core/css/resolver/FilterOperationResolver.cpp RefPtr<ReferenceFilterOperation> operation = ReferenceFilterOperation::create(svgDocumentValue->url(), AtomicString(url.fragmentIdentifier())); operation 118 Source/core/css/resolver/FilterOperationResolver.cpp state.elementStyleResources().addPendingSVGDocument(operation.get(), svgDocumentValue); operation 120 Source/core/css/resolver/FilterOperationResolver.cpp ReferenceFilterBuilder::setDocumentResourceReference(operation.get(), adoptPtr(new DocumentResourceReference(svgDocumentValue->cachedSVGDocument()))); operation 122 Source/core/css/resolver/FilterOperationResolver.cpp operations.operations().append(operation); operation 52 Source/core/editing/TextInsertionBaseCommand.h void forEachLineInString(const String& string, const LineOperation& operation) operation 57 Source/core/editing/TextInsertionBaseCommand.h operation(offset, newline - offset, false); operation 61 Source/core/editing/TextInsertionBaseCommand.h operation(0, string.length(), true); operation 65 Source/core/editing/TextInsertionBaseCommand.h operation(offset, length - offset, true); operation 335 Source/core/editing/TypingCommand.cpp TypingCommandLineOperation operation(this, selectInsertedText, text); operation 336 Source/core/editing/TypingCommand.cpp forEachLineInString(text, operation); operation 663 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::setGlobalCompositeOperation(const String& operation) operation 667 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (!parseCompositeAndBlendOperator(operation, op, blendMode)) operation 1618 Source/core/html/canvas/CanvasRenderingContext2D.cpp void CanvasRenderingContext2D::setCompositeOperation(const String& operation) operation 1620 Source/core/html/canvas/CanvasRenderingContext2D.cpp setGlobalCompositeOperation(operation); operation 113 Source/core/html/parser/HTMLConstructionSite.cpp ASSERT(task.operation == HTMLConstructionSiteTask::Insert); operation 127 Source/core/html/parser/HTMLConstructionSite.cpp ASSERT(task.operation == HTMLConstructionSiteTask::InsertText); operation 148 Source/core/html/parser/HTMLConstructionSite.cpp ASSERT(task.operation == HTMLConstructionSiteTask::Reparent); operation 158 Source/core/html/parser/HTMLConstructionSite.cpp ASSERT(task.operation == HTMLConstructionSiteTask::InsertAlreadyParsedChild); operation 165 Source/core/html/parser/HTMLConstructionSite.cpp ASSERT(task.operation == HTMLConstructionSiteTask::TakeAllChildren); operation 173 Source/core/html/parser/HTMLConstructionSite.cpp if (task.operation == HTMLConstructionSiteTask::Insert) operation 176 Source/core/html/parser/HTMLConstructionSite.cpp if (task.operation == HTMLConstructionSiteTask::InsertText) operation 181 Source/core/html/parser/HTMLConstructionSite.cpp if (task.operation == HTMLConstructionSiteTask::InsertAlreadyParsedChild) operation 184 Source/core/html/parser/HTMLConstructionSite.cpp if (task.operation == HTMLConstructionSiteTask::Reparent) operation 187 Source/core/html/parser/HTMLConstructionSite.cpp if (task.operation == HTMLConstructionSiteTask::TakeAllChildren) operation 51 Source/core/html/parser/HTMLConstructionSite.h : operation(op) operation 64 Source/core/html/parser/HTMLConstructionSite.h Operation operation; operation 298 Source/core/page/DragController.cpp dragSession.operation = operationForLoad(dragData); operation 344 Source/core/page/DragController.cpp isHandlingDrag = tryDHTMLDrag(dragData, dragSession.operation); operation 382 Source/core/page/DragController.cpp dragSession.operation = dragIsMove(innerFrame->selection(), dragData) ? DragOperationMove : DragOperationCopy; operation 398 Source/core/page/DragController.cpp dragSession.operation = DragOperationNone; operation 589 Source/core/page/DragController.cpp bool DragController::tryDHTMLDrag(DragData* dragData, DragOperation& operation) operation 609 Source/core/page/DragController.cpp operation = clipboard->destinationOperation(); operation 611 Source/core/page/DragController.cpp operation = defaultOperationForDrag(srcOpMask); operation 612 Source/core/page/DragController.cpp else if (!(srcOpMask & operation)) { operation 614 Source/core/page/DragController.cpp operation = DragOperationNone; operation 34 Source/core/page/DragSession.h DragOperation operation; operation 39 Source/core/page/DragSession.h : operation(DragOperationNone) operation 3257 Source/core/page/EventHandler.cpp void EventHandler::dragSourceEndedAt(const PlatformMouseEvent& event, DragOperation operation) operation 3264 Source/core/page/EventHandler.cpp dragState().m_dragClipboard->setDestinationOperation(operation); operation 679 Source/core/rendering/RenderBoxModelObject.cpp CompositeOperator operation = shouldClearDocumentBackground ? CompositeCopy : context->compositeOperation(); operation 684 Source/core/rendering/RenderBoxModelObject.cpp context->fillRect(backgroundRect, baseColor, operation); operation 686 Source/core/rendering/RenderBoxModelObject.cpp context->fillRect(backgroundRect, bgColor, operation); operation 1439 Source/core/rendering/style/RenderStyle.h void setClipPath(PassRefPtr<ClipPathOperation> operation) operation 1441 Source/core/rendering/style/RenderStyle.h if (rareNonInheritedData->m_clipPath != operation) operation 1442 Source/core/rendering/style/RenderStyle.h rareNonInheritedData.access()->m_clipPath = operation; operation 97 Source/modules/crypto/Key.cpp blink::WebCryptoKeyUsageMask toKeyUsage(AlgorithmOperation operation) operation 99 Source/modules/crypto/Key.cpp switch (operation) { operation 65 Source/modules/crypto/NormalizeAlgorithm.cpp AlgorithmOperation operation; operation 212 Source/modules/crypto/NormalizeAlgorithm.cpp return operation < o.operation; operation 276 Source/modules/crypto/NormalizeAlgorithm.cpp if (it->algorithmId != id || it->operation != op) operation 248 Source/modules/filesystem/FileWriter.cpp Operation operation = m_queuedOperation; operation 250 Source/modules/filesystem/FileWriter.cpp doOperation(operation); operation 254 Source/modules/filesystem/FileWriter.cpp void FileWriter::doOperation(Operation operation) operation 256 Source/modules/filesystem/FileWriter.cpp switch (operation) { operation 282 Source/modules/filesystem/FileWriter.cpp operation = OperationNone; operation 289 Source/modules/filesystem/FileWriter.cpp m_operationInProgress = operation; operation 46 Source/platform/graphics/filters/FEComposite.h CompositeOperationType operation() const; operation 192 Source/platform/graphics/filters/FilterOperation.h inline bool isBasicColorMatrixFilterOperation(const FilterOperation& operation) operation 194 Source/platform/graphics/filters/FilterOperation.h FilterOperation::OperationType type = operation.type(); operation 232 Source/platform/graphics/filters/FilterOperation.h inline bool isBasicComponentTransferFilterOperation(const FilterOperation& operation) operation 234 Source/platform/graphics/filters/FilterOperation.h FilterOperation::OperationType type = operation.type(); operation 3045 Source/web/WebViewImpl.cpp WebDragOperation operation) operation 3052 Source/web/WebViewImpl.cpp static_cast<DragOperation>(operation)); operation 3058 Source/web/WebViewImpl.cpp WebDragOperation operation) operation 3176 Source/web/WebViewImpl.cpp DragOperation dropEffect = dragSession.operation; operation 323 public/web/WebView.h WebDragOperation operation) = 0; operation 328 public/web/WebView.h WebDragOperation operation) = 0;