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

1 2 3 4 5 6 7 8 91011>>

  /art/test/417-optimizing-arith-div/
info.txt 1 Tests for division operation.
  /art/test/428-optimizing-arith-rem/
info.txt 1 Tests for modulo (rem) operation.
  /art/test/436-rem-float/
info.txt 1 Tests for floating point modulo (rem) operation.
  /art/test/575-checker-isnan/
info.txt 1 Unit test for float/double isNaN() operation.
  /art/test/564-checker-bitcount/
info.txt 1 Unit test for 32-bit and 64-bit bit count operation.
  /frameworks/base/services/core/java/com/android/server/location/
GnssStatusListenerHelper.java 46 Operation operation; local
48 operation = new Operation() {
55 operation = new Operation() {
62 foreach(operation);
66 Operation operation = new Operation() { local
81 Operation operation = new Operation() { local
96 Operation operation = new Operation() { local
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
op_queue.hpp 22 template <typename Operation>
28 template <typename Operation>
29 static Operation* next(Operation* o)
31 return static_cast<Operation*>(o->next_);
40 template <typename Operation>
41 static void destroy(Operation* o)
46 template <typename Operation>
47 static Operation*& front(op_queue<Operation>& q
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
ISeqStepAction.java 6 import javax.obex.Operation;
10 void execute(SeqStep step, HeaderSet request, Operation op)
ISeqStepValidator.java 6 import javax.obex.Operation;
12 boolean validate(SeqStep step, HeaderSet response, Operation op)
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9370.go 36 _ = e >= c // ERROR "invalid operation.*not defined"
39 _ = c >= e // ERROR "invalid operation.*not defined"
43 _ = i >= c // ERROR "invalid operation.*not defined"
46 _ = c >= i // ERROR "invalid operation.*not defined"
50 _ = e >= n // ERROR "invalid operation.*not defined"
53 _ = n >= e // ERROR "invalid operation.*not defined"
56 _ = i == n // ERROR "invalid operation.*mismatched types"
57 _ = i != n // ERROR "invalid operation.*mismatched types"
58 _ = i >= n // ERROR "invalid operation.*mismatched types"
59 _ = n == i // ERROR "invalid operation.*mismatched types
    [all...]
bug330.go 11 x = +"hello" // ERROR "invalid operation.*string|expected numeric"
12 x = +x // ERROR "invalid operation.*string|expected numeric"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9370.go 36 _ = e >= c // ERROR "invalid operation.*not defined"
39 _ = c >= e // ERROR "invalid operation.*not defined"
43 _ = i >= c // ERROR "invalid operation.*not defined"
46 _ = c >= i // ERROR "invalid operation.*not defined"
50 _ = e >= n // ERROR "invalid operation.*not defined"
53 _ = n >= e // ERROR "invalid operation.*not defined"
56 _ = i == n // ERROR "invalid operation.*mismatched types"
57 _ = i != n // ERROR "invalid operation.*mismatched types"
58 _ = i >= n // ERROR "invalid operation.*mismatched types"
59 _ = n == i // ERROR "invalid operation.*mismatched types
    [all...]
bug330.go 11 x = +"hello" // ERROR "invalid operation.*string|expected numeric"
12 x = +x // ERROR "invalid operation.*string|expected numeric"
  /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...]
  /external/zlib/src/contrib/delphi/
ZLibConst.pas 7 sInvalidStreamOp = 'Invalid stream operation';
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
arm-no-rel-plt.out 2 .*: final link failed: Invalid 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/v1/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/v8/test/message/
new-target-postfix-op.out 1 *%(basename)s:5: ReferenceError: Invalid left-hand side expression in postfix operation
4 ReferenceError: Invalid left-hand side expression in postfix operation
new-target-prefix-op.out 1 *%(basename)s:5: ReferenceError: Invalid left-hand side expression in prefix operation
4 ReferenceError: Invalid left-hand side expression in prefix operation
  /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]'}}
  /libcore/ojluni/src/main/java/java/util/function/
Consumer.java 30 * Represents an operation that accepts a single input argument and returns no
37 * @param <T> the type of the input to the operation
45 * Performs this operation on the given argument.
53 * operation followed by the {@code after} operation. If performing either
54 * operation throws an exception, it is relayed to the caller of the
55 * composed operation. If performing this operation throws an exception,
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operatio
    [all...]
  /system/keymaster/
operation_table.cpp 24 #include "operation.h"
29 delete operation;
30 operation = NULL;
34 keymaster_error_t OperationTable::Add(Operation* operation,
42 UniquePtr<Operation> op(operation);
52 if (table_[i].operation == NULL) {
53 table_[i].operation = op.release();
61 Operation* OperationTable::Find(keymaster_operation_handle_t op_handle)
    [all...]
  /prebuilts/gdb/darwin-x86/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...]

Completed in 667 milliseconds

1 2 3 4 5 6 7 8 91011>>