HomeSort by relevance Sort by last modified time
    Searched full:operation (Results 1 - 25 of 9314) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/net/disk_cache/
in_flight_backend_io.cc 238 NOTREACHED() << "Invalid Operation";
275 NOTREACHED() << "Invalid Operation";
294 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
295 operation->Init();
296 PostOperation(operation);
301 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
302 operation->OpenEntry(key, entry);
303 PostOperation(operation);
308 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
309 operation->CreateEntry(key, entry)
    [all...]
in_flight_io.cc 52 void InFlightIO::OnIOComplete(BackgroundIO* operation) {
62 NewRunnableMethod(operation,
64 operation->io_completed()->Signal();
68 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) {
69 operation->io_completed()->Wait();
72 operation->Cancel();
74 // Make sure that we remove the operation from the list before invoking the
76 DCHECK(io_list_.find(operation) != io_list_.end());
77 io_list_.erase(make_scoped_refptr(operation));
78 OnOperationComplete(operation, cancel_task)
    [all...]
  /art/test/ThreadStress/
ThreadStress.java 31 enum Operation {
43 Operation(int frequency) {
54 // Lock used to notify threads performing Operation.WAIT
59 // the Operation.frequency values. We fill out an Operation[]
61 // Operation[] is shuffled so that there is more random
64 // The simple-minded filling in of Operation[] based on
65 // Operation.frequency below won't have even have close to a
66 // reasonable distribution if the count of Operation
71 for (Operation op : Operation.values())
192 Operation operation = operations[nextOperation]; local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkMD5.cpp 115 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, function
117 a = b + rotate_left(a + operation(b, c, d) + x + t, s);
127 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1
128 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2
129 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3
130 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4
131 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5
132 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6
133 operation(F(), c, d, a, b, X[ 6], 17, 0xa8304613); //
    [all...]
SkSHA1.cpp 116 static inline void operation(T operation, function
119 E += rotate_left(A, 5) + operation(B, C, D) + w + k;
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F1(), E, A, B, C, D, W[ 6], K[0])
    [all...]
  /external/skia/src/utils/
SkMD5.cpp 115 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, function
117 a = b + rotate_left(a + operation(b, c, d) + x + t, s);
127 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1
128 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2
129 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3
130 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4
131 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5
132 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6
133 operation(F(), c, d, a, b, X[ 6], 17, 0xa8304613); //
    [all...]
SkSHA1.cpp 116 static inline void operation(T operation, function
119 E += rotate_left(A, 5) + operation(B, C, D) + w + k;
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F1(), E, A, B, C, D, W[ 6], K[0])
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation_mac.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
11 void Operation::WriteStart() {
15 void Operation::VerifyWriteStart() {
operation_win.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
11 void Operation::WriteStart() {
15 void Operation::VerifyWriteStart() {
operation_chromeos.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
34 void Operation::WriteStart() {
40 base::Bind(&Operation::StartWriteOnUIThread, this));
45 void Operation::StartWriteOnUIThread() {
53 base::Bind(&Operation::OnBurnFinished, this),
54 base::Bind(&Operation::OnBurnProgress, this));
58 base::Bind(&Operation::OnBurnError, this));
61 void Operation::OnBurnFinished(const std::string& target_path,
74 void Operation::OnBurnProgress(const std::string& target_path,
81 void Operation::OnBurnError()
    [all...]
  /external/chromium_org/ui/views/examples/
examples_window.h 13 enum Operation {
19 VIEWS_EXAMPLES_EXPORT void ShowExamplesWindow(Operation operation);
examples_window_with_content.h 18 enum Operation {
25 Operation operation,
  /external/zlib/src/contrib/delphi/
ZLibConst.pas 7 sInvalidStreamOp = 'Invalid stream operation';
  /frameworks/base/tools/preload/
Proc.java 46 /** Maps thread ID to operation stack. */
47 transient final Map<Integer, LinkedList<Operation>> stacks
48 = new HashMap<Integer, LinkedList<Operation>>();
54 final List<Operation> operations = new ArrayList<Operation>();
84 * Starts an operation.
86 * @param threadId thread the operation started in
87 * @param loadedClass class operation happened to
88 * @param time the operation started
91 Operation.Type type)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAlarmManager.java 24 public void set(int type, long triggerAtTime, PendingIntent operation) {
25 internalSet(type, triggerAtTime, 0L, operation);
29 public void setRepeating (int type, long triggerAtTime, long interval, PendingIntent operation){
30 internalSet(type, triggerAtTime, interval, operation);
33 private void internalSet(int type, long triggerAtTime, long interval, PendingIntent operation) {
34 Intent intent = shadowOf(operation).getSavedIntent();
36 Intent scheduledIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
42 scheduledAlarms.add(new ScheduledAlarm(type, triggerAtTime, interval, operation));
83 final Intent alarmIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
98 public PendingIntent operation; field in class:ShadowAlarmManager.ScheduledAlarm
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderOperations.java 43 private final Map<String, Operation> mOperations;
61 * Adds an operation to the list of folder operations to be applied. The last
62 * operation for a folder will be retained in the list of operations.
67 Operation operation = new Operation(folder, add); local
69 mOperations.put(folder.name, operation);
73 * Returns true if there is an operation for the specified folder
75 * @return Returns true if there is a add or remove operation for
83 * Returns true if there is an operation for the specified folde
108 Operation operation = mOperations.get(canonicalName); local
130 Operation operation = mOperations.get(canonicalName); local
    [all...]
  /external/chromium_org/chrome/browser/resources/options/chromeos/
display_overscan.html 5 <tr id="display-overscan-operation-images-row">
6 <td class="display-overscan-operation-image">
7 <div id="display-overscan-operation-arrows"></div></td>
8 <td class="display-overscan-operation-image">
9 <div id="display-overscan-operation-shift"></div></td>
19 <button id="display-overscan-operation-reset"
23 <button id="display-overscan-operation-ok"
26 <button id="display-overscan-operation-cancel"
  /external/clang/test/Sema/
warn-sizeof-array-decay.c 8 (void)sizeof(bar + 10); // expected-warning{{sizeof on pointer operation will return size of 'int *' instead of 'int [20]'}}
9 (void)sizeof(foo - 20); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
10 (void)sizeof(bar - x); // expected-warning{{sizeof on pointer operation will return size of 'int *' instead of 'int [20]'}}
11 (void)sizeof(foo + x); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
17 (void)sizeof(x, foo); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
  /external/chromium_org/net/disk_cache/
in_flight_backend_io.cc 279 NOTREACHED() << "Invalid Operation";
322 NOTREACHED() << "Invalid Operation";
341 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
342 operation->Init();
343 PostOperation(operation.get());
348 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
349 operation->OpenEntry(key, entry);
350 PostOperation(operation.get());
355 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
356 operation->CreateEntry(key, entry)
    [all...]
in_flight_io.cc 62 BackgroundIO* operation = it->get(); local
63 operation->Cancel();
64 DCHECK(io_list_.find(operation) != io_list_.end());
65 io_list_.erase(make_scoped_refptr(operation));
70 void InFlightIO::OnIOComplete(BackgroundIO* operation) {
80 operation));
81 operation->io_completed()->Signal();
85 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) {
89 operation->io_completed()->Wait();
94 operation->Cancel()
    [all...]
  /frameworks/base/services/java/com/android/server/content/
SyncQueue.java 84 public boolean add(SyncOperation operation) {
85 return add(operation, null /* this is not coming from the database */);
90 * If an operation is added that already exists, the existing operation is updated if the newly
91 * added operation occurs before (or the interval overlaps).
93 private boolean add(SyncOperation operation,
95 // If an operation with the same key exists and this one should run sooner/overlaps,
96 // replace the run interval of the existing operation with this new one.
97 // Complications: what if the existing operation is expedited but the new operation has a
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorTestOperations/
ParallelCompositeSensorTestOperation.java 24 * A test operation that groups a set of SensorTestOperations and allows to execute them all in
37 for(SensorTestOperation operation : operations) {
38 mOperations.add(operation);
46 for(SensorTestOperation operation : mOperations) {
47 operation.start();
49 for(SensorTestOperation operation : mOperations) {
50 operation.waitForCompletion();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 9 binding to the widget's 'insert' operation is activated, and the Tk library
13 to do is to hook the Tk 'insert' operation itself.
19 operation.
23 Tk widget operation.
35 # whose action is to dispatch on the operation passed to the widget:
43 for operation in list(self._operations):
44 self.unregister(operation)
53 def register(self, operation, function):
54 self._operations[operation] = function
55 setattr(self.widget, operation, function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
WidgetRedirector.py 9 binding to the widget's 'insert' operation is activated, and the Tk library
13 to do is to hook the Tk 'insert' operation itself.
19 operation.
23 Tk widget operation.
35 # whose action is to dispatch on the operation passed to the widget:
43 for operation in list(self._operations):
44 self.unregister(operation)
53 def register(self, operation, function):
54 self._operations[operation] = function
55 setattr(self.widget, operation, function
    [all...]
  /external/clang/test/SemaCXX/
null_in_arithmetic_ops.cpp 14 a = 0 ? NULL + a : a + NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
15 a = 0 ? NULL - a : a - NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
16 a = 0 ? NULL / a : a / NULL; // expected-warning 2{{use of NULL in arithmetic operation}} \
18 a = 0 ? NULL * a : a * NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
19 a = 0 ? NULL >> a : a >> NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
20 a = 0 ? NULL << a : a << NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
21 a = 0 ? NULL % a : a % NULL; // expected-warning 2{{use of NULL in arithmetic operation}} \
23 a = 0 ? NULL & a : a & NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
24 a = 0 ? NULL | a : a | NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
25 a = 0 ? NULL ^ a : a ^ NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
    [all...]

Completed in 645 milliseconds

1 2 3 4 5 6 7 8 91011>>