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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/services/core/java/com/android/server/location/
GpsStatusListenerHelper.java 30 Operation nullOperation = new Operation() {
52 Operation operation; local
54 operation = new Operation() {
61 operation = new Operation() {
68 foreach(operation);
72 Operation operation = new Operation() local
90 Operation operation = new Operation() { local
108 Operation operation = new Operation() { local
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
devicestatuscodes.js 12 * Device operation succeeded.
18 * Device operation wrong length status.
24 * Device operation wait touch status.
30 * Device operation invalid data status.
36 * Device operation wrong data status.
42 * Device operation timeout status.
48 * Device operation busy status.
  /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/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/chromeos/file_system_provider/operations/
operation.cc 5 #include "chrome/browser/chromeos/file_system_provider/operations/operation.h"
16 // tests by Operation::SetDispatchEventImplForTest().
29 Operation::Operation(extensions::EventRouter* event_router,
37 Operation::~Operation() {
40 void Operation::SetDispatchEventImplForTesting(
45 bool Operation::SendEvent(int request_id,
  /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/chromium_org/content/common/service_worker/
service_worker_status_code.cc 14 return "Operation has succeeded";
16 return "Operation has failed (unknown reason)";
18 return "Operation has been aborted";
34 return "Operation failed by network issue";
36 return "Operation failed by security issue";
  /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]'}}
  /art/test/004-ThreadStress/src/
Main.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/chrome/browser/extensions/api/image_writer_private/
operation.cc 5 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
33 Operation::Operation(base::WeakPtr<OperationManager> manager,
47 Operation::~Operation() {}
49 void Operation::Cancel() {
57 void Operation::Abort() {
61 int Operation::GetProgress() {
65 image_writer_api::Stage Operation::GetStage() {
71 void Operation::SetUtilityClientForTesting
    [all...]
operation_nonchromeos.cc 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
18 void Operation::Write(const base::Closure& continuation) {
39 base::Bind(&Operation::WriteImageProgress, this, file_size),
40 base::Bind(&Operation::CompleteAndContinue, this, continuation),
41 base::Bind(&Operation::Error, this),
46 void Operation::VerifyWrite(const base::Closure& continuation) {
68 base::Bind(&Operation::WriteImageProgress, this, file_size),
69 base::Bind(&Operation::CompleteAndContinue, this, continuation),
70 base::Bind(&Operation::Error, this),
  /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/chromium_org/net/disk_cache/blockfile/
in_flight_backend_io.cc 274 NOTREACHED() << "Invalid Operation";
317 NOTREACHED() << "Invalid Operation";
337 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
338 operation->Init();
339 PostOperation(operation.get());
344 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
345 operation->OpenEntry(key, entry);
346 PostOperation(operation.get());
351 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
352 operation->CreateEntry(key, entry)
    [all...]
in_flight_io.cc 66 BackgroundIO* operation = it->get(); local
67 operation->Cancel();
68 DCHECK(io_list_.find(operation) != io_list_.end());
69 io_list_.erase(make_scoped_refptr(operation));
74 void InFlightIO::OnIOComplete(BackgroundIO* operation) {
83 FROM_HERE, base::Bind(&BackgroundIO::OnIOSignalled, operation));
84 operation->io_completed()->Signal();
88 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) {
92 operation->io_completed()->Wait();
97 operation->Cancel()
    [all...]
  /external/chromium_org/ui/views/examples/
examples_window_with_content.cc 13 void ShowExamplesWindowWithContent(Operation operation,
19 ShowExamplesWindow(operation, window_context, extra_examples.Pass());
  /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...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
AlarmOperation.java 33 * after a specified period of time and waits for the child operation to complete.
35 * This operation can be used to allow the device to go to sleep and wake it up after a specified
36 * period of time. After the device wakes up, this operation will hold a wake lock until the child
37 * operation finishes. This operation will not force the device into suspend, so if another
38 * operation is holding a wake lock, the device will stay awake. Also, if the child operation
39 * finishes before the specified period, this operation return when the child operation finishes
58 * @param operation the child {@link SensorOperation} to perform after the dela
    [all...]
  /development/samples/browseable/BasicRenderScript/
_index.jd 8 In the sample, it performs graphical filter operation on a image with renderScript.

Completed in 572 milliseconds

1 2 3 4 5 6 7 8 91011>>