Searched refs:operations (Results 1 - 25 of 137) sorted by relevance

123456

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DTransformOperations.cpp55 size_t numOperations = operations().size();
57 if (numOperations != other.operations().size())
62 if (!operations()[i]->isSameType(*other.operations()[i]))
72 unsigned fromSize = from.operations().size();
73 unsigned toSize = operations().size();
76 RefPtr<TransformOperation> fromOperation = (i < fromSize) ? from.operations()[i].get() : 0;
77 RefPtr<TransformOperation> toOperation = (i < toSize) ? operations()[i].get() : 0;
80 result.operations().append(blendedOperation);
84 result.operations()
[all...]
H A DTransformOperations.h69 Vector<RefPtr<TransformOperation> >& operations() { return m_operations; } function in class:WebCore::TransformOperations
70 const Vector<RefPtr<TransformOperation> >& operations() const { return m_operations; } function in class:WebCore::TransformOperations
/macosx-10.9.5/cups-372.4/cups/test/
H A Dipp-2.2.test61 EXPECT operations-supported WITH-VALUE 0x0024 # Pause-Printer-After-Current-Job
62 EXPECT operations-supported WITH-VALUE 0x0025 # Hold-New-Jobs
63 EXPECT operations-supported WITH-VALUE 0x0026 # Release-Held-New-Jobs
64 EXPECT operations-supported WITH-VALUE 0x0029 # Restart-Printer
65 EXPECT operations-supported WITH-VALUE 0x002A # Shutdown-Printer
66 EXPECT operations-supported WITH-VALUE 0x002B # Startup-Printer
67 EXPECT operations-supported WITH-VALUE 0x002C # Reprocess-Job
68 EXPECT operations-supported WITH-VALUE 0x002D # Cancel-Current-Job
69 EXPECT operations-supported WITH-VALUE 0x002E # Suspend-Current-Job
70 EXPECT operations
[all...]
H A Dipp-2.1.test66 EXPECT operations-supported WITH-VALUE 0x0005 # Create-Job
67 EXPECT operations-supported WITH-VALUE 0x0006 # Send-Document
68 EXPECT operations-supported WITH-VALUE 0x000C # Hold-Job
69 EXPECT operations-supported WITH-VALUE 0x000D # Release-Job
70 EXPECT operations-supported WITH-VALUE 0x000E # Restart-Job
71 EXPECT operations-supported WITH-VALUE 0x0010 # Pause-Printer
72 EXPECT operations-supported WITH-VALUE 0x0011 # Resume-Printer
73 EXPECT operations-supported WITH-VALUE 0x0012 # Purge-Jobs
74 EXPECT operations-supported WITH-VALUE 0x0013 # Set-Printer-Attributes
75 EXPECT operations
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSScope.cpp199 template <JSScope::LookupMode mode, JSScope::ReturnValues returnValues> JSObject* JSScope::resolveContainingScopeInternal(CallFrame* callFrame, const Identifier& identifier, PropertySlot& slot, Vector<ResolveOperation>* operations, PutToBaseOperation* putToBaseOperation, bool ) argument
210 ASSERT(operations->isEmpty());
229 ASSERT(operations->size());
259 operations->append(ResolveOperation::checkForDynamicEntriesBeforeGlobalScope());
279 operations->append(ResolveOperation::getAndReturnGlobalVar(&globalObject->registerAt(entry.getIndex()), entry.couldBeWatched()));
283 operations->append(ResolveOperation::returnGlobalObjectAsBase());
287 operations->append(ResolveOperation::setBaseToGlobal());
288 operations->append(ResolveOperation::getAndReturnGlobalVar(&globalObject->registerAt(entry.getIndex()), entry.couldBeWatched()));
292 operations->append(ResolveOperation::setBaseToUndefined());
293 operations
432 resolveContainingScope(CallFrame* callFrame, const Identifier& identifier, PropertySlot& slot, Vector<ResolveOperation>* operations, PutToBaseOperation* putToBaseOperation, bool isStrict) argument
441 resolve(CallFrame* callFrame, const Identifier& identifier, ResolveOperations* operations) argument
464 resolveBase(CallFrame* callFrame, const Identifier& identifier, bool isStrict, ResolveOperations* operations, PutToBaseOperation* putToBaseOperations) argument
490 resolveWithBase(CallFrame* callFrame, const Identifier& identifier, Register* base, ResolveOperations* operations, PutToBaseOperation* putToBaseOperations) argument
521 resolveWithThis(CallFrame* callFrame, const Identifier& identifier, Register* base, ResolveOperations* operations) argument
[all...]
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dipp-private.h57 const ipp_op_t *operations; /* Allowed operations for this attr */ member in struct:__anon7189
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DTransformFunctions.cpp92 TransformOperations operations; local
133 operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, transformOperationType(transformValue->operationType())));
159 operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, transformOperationType(transformValue->operationType())));
182 operations.operations().append(TranslateTransformOperation::create(tx, ty, Length(0, Fixed), transformOperationType(transformValue->operationType())));
211 operations.operations().append(TranslateTransformOperation::create(tx, ty, tz, transformOperationType(transformValue->operationType())));
216 operations
[all...]
H A DWebKitCSSMatrix.cpp68 TransformOperations operations;
69 if (!transformsForValue(0, 0, value.get(), operations)) {
74 // Convert transform operations to a TransformationMatrix. This can fail
77 for (unsigned i = 0; i < operations.operations().size(); ++i) {
78 if (operations.operations()[i].get()->apply(t, IntSize(0, 0))) {
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFilterOperations.h59 Vector<RefPtr<FilterOperation> >& operations() { return m_operations; } function in class:WebCore::FilterOperations
60 const Vector<RefPtr<FilterOperation> >& operations() const { return m_operations; } function in class:WebCore::FilterOperations
H A DCustomFilterTransformParameter.h56 const TransformOperations& from = fromTransformParameter->operations();
57 const TransformOperations& to = operations();
83 const TransformOperations& operations() const { return m_operations; } function in class:WebCore::CustomFilterTransformParameter
H A DFilterOperations.cpp77 size_t numOperations = operations().size();
79 if (numOperations != other.operations().size())
84 if (!operations()[i]->isSameType(*other.operations()[i]))
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderLayerFilterInfo.cpp123 void RenderLayerFilterInfo::updateReferenceFilterClients(const FilterOperations& operations) argument
126 for (size_t i = 0; i < operations.size(); ++i) {
127 RefPtr<FilterOperation> filterOperation = operations.operations().at(i);
174 void RenderLayerFilterInfo::updateCustomFilterClients(const FilterOperations& operations) argument
176 if (!operations.size()) {
181 for (size_t i = 0; i < operations.size(); ++i) {
182 const FilterOperation* filterOperation = operations.at(i);
H A DFilterEffectRenderer.cpp192 bool FilterEffectRenderer::build(RenderObject* renderer, const FilterOperations& operations) argument
197 m_hasFilterThatMovesPixels = operations.hasFilterThatMovesPixels();
199 m_outsets = operations.outsets();
207 for (size_t i = 0; i < operations.operations().size(); ++i) {
209 FilterOperation* filterOperation = operations.operations().at(i).get();
350 // CUSTOM operations are always converted to VALIDATED_CUSTOM before getting here.
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DLayerAnimation.cpp227 // count of shared operations when the WebKit thread and compositing thread are in sync.
231 unsigned fromSize = from->operations().size();
232 unsigned toSize = to->operations().size();
235 TransformOperation* fromOp = (i < fromSize) ? from->operations()[i].get() : 0;
236 TransformOperation* toOp = (i < toSize) ? to->operations()[i].get() : 0;
303 if (val->operations().isEmpty())
307 if (firstVal->operations().size() != val->operations().size())
311 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
312 if (!firstVal->operations()[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DGraphicsLayerAnimation.cpp57 size_t fromSize = from.operations().size();
58 size_t toSize = to.operations().size();
61 RefPtr<FilterOperation> fromOp = (i < fromSize) ? from.operations()[i].get() : 0;
62 RefPtr<FilterOperation> toOp = (i < toSize) ? to.operations()[i].get() : 0;
65 result.operations().append(blendedOp);
69 result.operations().append(toOp ? toOp : identityOp);
71 result.operations().append(fromOp ? fromOp : identityOp);
186 for (size_t i = 0; i < blended.operations().size(); ++i)
187 blended.operations()[i]->blend(0, progress, true)->apply(matrix, boxSize);
194 for (size_t i = 0; i < blended.operations()
[all...]
H A DGraphicsLayer.cpp438 if (!filterOperationsAt(valueList, firstIndex).operations().isEmpty())
451 if (val.operations().isEmpty())
483 if (!operationsAt(valueList, firstIndex).operations().isEmpty())
497 if (val.operations().isEmpty())
508 for (size_t j = 0; j < firstVal.operations().size(); ++j) {
509 TransformOperation::OperationType type = firstVal.operations().at(j)->getOperationType();
516 lastRotAngle = static_cast<RotateTransformOperation*>(firstVal.operations().at(j).get())->angle();
523 double rotAngle = val.operations().isEmpty() ? 0 : (static_cast<RotateTransformOperation*>(val.operations().at(j).get())->angle());
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebAnimation.cpp60 startOperation.operations().append(ScaleTransformOperation::create(from, from, TransformOperation::SCALE));
64 endOperation.operations().append(ScaleTransformOperation::create(to, to, TransformOperation::SCALE));
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DImplicitAnimation.cpp247 if (val->operations().isEmpty())
250 if (val->operations().isEmpty())
254 if (val != toVal && !toVal->operations().isEmpty() && !val->operationsMatch(*toVal))
272 if (val->operations().isEmpty())
275 if (val->operations().isEmpty())
279 if (val != toVal && !toVal->operations().isEmpty() && !val->operationsMatch(*toVal))
/macosx-10.9.5/libdispatch-339.92.1/src/
H A Dio.c247 // Still need to create a barrier queue, since all operations go
1033 // For write operations, op->buf is owned by op->buf_data
1362 // all operations associated with this entry have been freed
1435 // all operations associated with this entry have been freed
1552 TAILQ_INIT(&stream->operations[DISPATCH_IO_RANDOM]);
1553 TAILQ_INIT(&stream->operations[DISPATCH_IO_STREAM]);
1567 dispatch_assert(TAILQ_EMPTY(&stream->operations[DISPATCH_IO_STREAM]));
1568 dispatch_assert(TAILQ_EMPTY(&stream->operations[DISPATCH_IO_RANDOM]));
1605 TAILQ_INIT(&disk->operations);
1606 disk->cur_rq = TAILQ_FIRST(&disk->operations);
[all...]
H A Dio_internal.h73 TAILQ_HEAD(, dispatch_operation_s) operations[2]; member in struct:dispatch_stream_s
97 TAILQ_HEAD(dispatch_disk_operations_s, dispatch_operation_s) operations; member in struct:dispatch_disk_s
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/DBI/
H A DMultiColumnIn.pm18 to dramatically speed up update/delete operations on joined multipk resultsets.
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGCapabilities.h51 inline bool canInlineResolveOperations(ResolveOperations* operations) argument
53 for (unsigned i = 0; i < operations->size(); i++) {
54 switch (operations->data()[i].m_operation) {
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/BTree/
H A DBTreeNodeReserve.c116 BTReserveSpace(FCB *file, int operations, void* data) argument
132 * operations (insert/deletes) and the height of the
138 inserts = operations & 0xffff;
139 deletes = operations >> 16;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/CoordinatedGraphics/
H A DCoordinatedGraphicsArgumentCoders.cpp184 ArgumentCoder<TransformOperations>::encode(encoder, transformParameter->operations());
211 Vector<RefPtr<FilterOperation> >& operations = filters.operations();
319 TransformOperations operations; local
320 if (!ArgumentCoder<TransformOperations>::decode(decoder, operations))
322 transformParameter->setOperations(operations);
350 operations.append(filter);
476 transformOperations.operations().append(ScaleTransformOperation::create(x, y, z, operationType));
491 transformOperations.operations().append(TranslateTransformOperation::create(x, y, z, operationType));
507 transformOperations.operations()
[all...]
/macosx-10.9.5/CPANInternal-140/PathTools/lib/File/Spec/
H A DFunctions.pm51 File::Spec::Functions - portably perform operations on file names

Completed in 312 milliseconds

123456