HomeSort by relevance Sort by last modified time
    Searched refs:operations (Results 51 - 75 of 435) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/undo/
undo_manager.cc 143 const std::vector<UndoOperation*>& operations = local
145 result.insert(result.end(), operations.begin(), operations.end());
148 const std::vector<UndoOperation*>& operations = local
150 result.insert(result.end(), operations.begin(), operations.end());
157 const std::vector<UndoOperation*>& operations = local
159 result.insert(result.end(), operations.begin(), operations.end());
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FilterOperationResolver.cpp 95 FilterOperations operations; local
122 operations.operations().append(operation);
152 operations.operations().append(BasicColorMatrixFilterOperation::create(amount, operationType));
160 operations.operations().append(BasicColorMatrixFilterOperation::create(angle, operationType));
174 operations.operations().append(BasicComponentTransferFilterOperation::create(amount, operationType));
181 operations.operations().append(BlurFilterOperation::create(stdDeviation))
    [all...]
TransformBuilder.cpp 90 TransformOperations operations; local
131 operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType())));
157 operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType())));
177 operations.operations().append(TranslateTransformOperation::create(tx, ty, 0, getTransformOperationType(transformValue->operationType())));
203 operations.operations().append(TranslateTransformOperation::create(tx, ty, tz, getTransformOperationType(transformValue->operationType())));
208 operations.operations().append(RotateTransformOperation::create(0, 0, 1, angle, getTransformOperationType(tra (…)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
provided_file_system.cc 8 #include "chrome/browser/chromeos/file_system_provider/operations/close_file.h"
9 #include "chrome/browser/chromeos/file_system_provider/operations/get_metadata.h"
10 #include "chrome/browser/chromeos/file_system_provider/operations/open_file.h"
11 #include "chrome/browser/chromeos/file_system_provider/operations/read_directory.h"
12 #include "chrome/browser/chromeos/file_system_provider/operations/read_file.h"
13 #include "chrome/browser/chromeos/file_system_provider/operations/unmount.h"
39 scoped_ptr<RequestManager::HandlerInterface>(new operations::Unmount(
51 new operations::GetMetadata(
63 RequestManager::HandlerInterface>(new operations::ReadDirectory(
79 new operations::ReadFile(event_router_
    [all...]
  /art/test/004-ThreadStress/src/
Main.java 58 // operations. The distribution of operations is determined by
60 // for each thread with the operations it is to perform. The
68 // operations. So here we do a quick sanity check in case
83 Operation[] operations = new Operation[operationsPerThread]; local
89 if (o == operations.length) {
92 operations[o] = op;
98 Collections.shuffle(Arrays.asList(operations));
99 threadStresses[t] = new Main(lock, t, operations);
106 Operation[] operations = new Operation[operationsPerThread] local
174 private final Operation[] operations; field in class:Main
    [all...]
  /external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp 91 , operations ((Operation)0)
101 Operation operations; member in struct:deqp::gles31::Functional::__anon24069::AtomicCounterTest::TestSpec
140 if (m_spec.operations & OPERATION_INC)
143 if (m_spec.operations & OPERATION_DEC)
146 if (m_spec.operations == OPERATION_GET)
148 else if (m_spec.operations & OPERATION_GET)
241 if ((spec.operations & OPERATION_GET) != 0 && spec.operations != OPERATION_GET)
244 if ((spec.operations & OPERATION_INC) != 0)
247 if ((spec.operations & OPERATION_DEC) != 0
1318 const AtomicCounterTest::Operation operations[] = local
1386 const AtomicCounterTest::Operation operations[] = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperations.cpp 73 for (size_t i = 0; i < operations().size(); ++i) {
74 if (!FilterOperation::canInterpolate(operations()[i]->type()))
78 for (size_t i = 0; i < other.operations().size(); ++i) {
79 if (!FilterOperation::canInterpolate(other.operations()[i]->type()))
83 size_t commonSize = std::min(operations().size(), other.operations().size());
85 if (!operations()[i]->isSameType(*other.operations()[i]))
FilterOperations.h 58 Vector<RefPtr<FilterOperation> >& operations() { return m_operations; } function in class:WebCore::FilterOperations
59 const Vector<RefPtr<FilterOperation> >& operations() const { return m_operations; } function in class:WebCore::FilterOperations
FilterOperationsTest.cpp 39 ops.operations().append(BlurFilterOperation::create(Length(20.0, WebCore::Fixed)));
51 ops.operations().append(DropShadowFilterOperation::create(IntPoint(3, 8), 20, Color(1, 2, 3)));
  /frameworks/base/core/java/android/net/
NetworkStats.java 77 private long[] operations; field in class:NetworkStats
88 public long operations; field in class:NetworkStats.Entry
94 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
96 operations);
100 long txBytes, long txPackets, long operations) {
109 this.operations = operations;
113 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
118 && operations == 0;
126 this.operations += another.operations
    [all...]
NetworkStatsHistory.java 78 private long[] operations; field in class:NetworkStatsHistory
91 public long operations; field in class:NetworkStatsHistory.Entry
110 if ((fields & FIELD_OPERATIONS) != 0) operations = new long[initialSize];
128 operations = readLongArray(in);
142 writeLongArray(out, operations, bucketCount);
156 operations = new long[bucketStart.length];
171 operations = readVarLongArray(in);
183 || txPackets.length != bucketCount || operations.length != bucketCount) {
197 writeVarLongArray(out, operations, bucketCount);
276 entry.operations = getLong(operations, i, UNKNOWN)
299 long operations = entry.operations; local
536 final long operations = rxBytes \/ 2048; local
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ImportTestResolver.java 36 ArrayList<ContentProviderOperation> operations) {
38 return mProvider.applyBatch(operations);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Gt.java 21 package org.apache.xpath.operations;
Gte.java 21 package org.apache.xpath.operations;
Lt.java 21 package org.apache.xpath.operations;
Lte.java 21 package org.apache.xpath.operations;
NotEquals.java 21 package org.apache.xpath.operations;
Quo.java 21 package org.apache.xpath.operations;
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_drag_drop_views.h 22 // Returns the drag operations for the specified node.
27 // set of drop operations (|operations|). This prefers the following ordering:
29 int GetPreferredBookmarkDropOperation(int source_operations, int operations);
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 28 import org.apache.xpath.operations.Operation;
29 import org.apache.xpath.operations.UnaryOperation;
30 import org.apache.xpath.operations.Variable;
  /external/chromium_org/cc/animation/
transform_operations_unittest.cc 92 void GetIdentityOperations(ScopedVector<TransformOperations>* operations) {
94 operations->push_back(to_add);
98 operations->push_back(to_add);
103 operations->push_back(to_add);
107 operations->push_back(to_add);
112 operations->push_back(to_add);
116 operations->push_back(to_add);
121 operations->push_back(to_add);
125 operations->push_back(to_add);
130 operations->push_back(to_add)
143 ScopedVector<TransformOperations> operations; local
156 TransformOperations operations; local
168 TransformOperations operations; local
179 TransformOperations operations; local
189 TransformOperations operations; local
199 TransformOperations operations; local
226 TransformOperations operations; local
429 TransformOperations operations; local
463 TransformOperations operations; local
497 TransformOperations operations; local
531 TransformOperations operations; local
568 TransformOperations operations; local
586 TransformOperations operations; local
604 TransformOperations operations; local
622 TransformOperations operations; local
640 TransformOperations operations; local
659 TransformOperations operations; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformOperations.cpp 58 size_t numOperations = operations().size();
60 if (numOperations != other.operations().size())
65 if (!operations()[i]->isSameType(*other.operations()[i]))
75 unsigned fromSize = from.operations().size();
76 unsigned toSize = operations().size();
79 RefPtr<TransformOperation> fromOperation = (i < fromSize) ? from.operations()[i].get() : 0;
80 RefPtr<TransformOperation> toOperation = (i < toSize) ? operations()[i].get() : 0;
83 result.operations().append(blendedOperation);
87 result.operations().append(toOperation ? toOperation : identityOperation)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_PinnedPositionsTest.java 83 final ArrayList<ContentProviderOperation> operations = local
85 operations.add(newPinningOperation(i1.mContactId, 1, true));
86 operations.add(newPinningOperation(i3.mContactId, 3, true));
87 operations.add(newPinningOperation(i4.mContactId, 2, false));
88 applyBatch(mResolver, operations);
105 operations.clear();
108 operations.add(newPinningOperation(i3.mContactId, unpinned, false));
109 applyBatch(mResolver, operations);
147 final ArrayList<ContentProviderOperation> operations = local
150 operations.add(newPinningOperation(i1.mContactId, 1, true))
295 final ArrayList<ContentProviderOperation> operations = local
    [all...]
  /frameworks/base/tools/preload/
LoadedClass.java 30 /** Load operations. */
33 /** Static initialization operations. */
83 /** Calculates the median duration for a list of operations. */
84 private static int calculateMedian(List<Operation> operations) {
85 int size = operations.size();
92 times[i] = operations.get(i).exclusiveTimeMicros();
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
VarNameCollector.java 28 import org.apache.xpath.operations.Variable;

Completed in 689 milliseconds

1 23 4 5 6 7 8 91011>>