/prebuilts/gdb/linux-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...] |
/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...] |
/system/keymaster/ |
operation_table.h | 26 class Operation; 35 operation = NULL; 39 Operation* operation; member in struct:keymaster::OperationTable::Entry 42 keymaster_error_t Add(Operation* operation, keymaster_operation_handle_t* op_handle); 43 Operation* Find(keymaster_operation_handle_t op_handle);
|
/prebuilts/go/darwin-x86/src/cmd/pack/ |
doc.go | 13 Pack applies the operation to the archive, using the names as arguments to the operation. 15 The operation op is given by one of these letters: 28 causes the operation to apply to all files in the archive. 30 In contrast to Unix ar, the r operation always appends to the archive, 32 pack's r operation is more like Unix ar's rq operation. 34 Adding the letter v to an operation, as in pv or rv, enables verbose operation:
|
/prebuilts/go/linux-x86/src/cmd/pack/ |
doc.go | 13 Pack applies the operation to the archive, using the names as arguments to the operation. 15 The operation op is given by one of these letters: 28 causes the operation to apply to all files in the archive. 30 In contrast to Unix ar, the r operation always appends to the archive, 32 pack's r operation is more like Unix ar's rq operation. 34 Adding the letter v to an operation, as in pv or rv, enables verbose operation:
|
/external/autotest/client/site_tests/hardware_TPMTakeOwnership/ |
control | 7 PURPOSE = "Measure delays of TPM_TakeOwnership operation" 8 CRITERIA = "Estimate range of timing requirements for the operation" 16 Module) module and takes timing measurement of the operation.
|
/libcore/ojluni/src/main/java/java/util/function/ |
DoubleConsumer.java | 30 * Represents an operation that accepts a single {@code double}-valued argument and 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 operation [all...] |
IntConsumer.java | 30 * Represents an operation that accepts a single {@code int}-valued argument and 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 operation [all...] |
LongConsumer.java | 30 * Represents an operation that accepts a single {@code long}-valued argument and 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 operation [all...] |
/prebuilts/go/darwin-x86/test/ |
cmp6.go | 38 use(c1 == c2) // ERROR "invalid operation|incompatible" 39 use(c2 == c1) // ERROR "invalid operation|incompatible" 50 use(p1 == p2) // ERROR "invalid operation|incompatible" 51 use(p2 == p1) // ERROR "invalid operation|incompatible" 62 use(a2 == a2) // ERROR "invalid operation|invalid comparison" 63 use(a3 == a3) // ERROR "invalid operation|invalid comparison" 80 use(i == x) // ERROR "invalid operation" 81 use(x == i) // ERROR "invalid operation" 82 use(i == f) // ERROR "invalid operation" 83 use(f == i) // ERROR "invalid operation" [all...] |
/prebuilts/go/linux-x86/test/ |
cmp6.go | 38 use(c1 == c2) // ERROR "invalid operation|incompatible" 39 use(c2 == c1) // ERROR "invalid operation|incompatible" 50 use(p1 == p2) // ERROR "invalid operation|incompatible" 51 use(p2 == p1) // ERROR "invalid operation|incompatible" 62 use(a2 == a2) // ERROR "invalid operation|invalid comparison" 63 use(a3 == a3) // ERROR "invalid operation|invalid comparison" 80 use(i == x) // ERROR "invalid operation" 81 use(x == i) // ERROR "invalid operation" 82 use(i == f) // ERROR "invalid operation" 83 use(f == i) // ERROR "invalid operation" [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...] |
/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...] |
SequentialSensorOperation.java | 38 for (SensorOperation operation : operations) { 39 if (operation == null) { 42 mOperations.add(operation); 48 * in one operation, it is thrown and all subsequent operations will not run. 54 SensorOperation operation = mOperations.get(i); local 56 operation.execute(currentNode); 58 String msg = String.format("Operation %d failed: \"%s\"", i, e.getMessage()); 62 addSensorStats(STATS_TAG, i, operation.getStats()); 72 SequentialSensorOperation operation = new SequentialSensorOperation(); local 74 operation.add(subOperation.clone()) [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/ |
mr_test.py | 10 from mapreduce import operation as op 41 def _ExecOperation(self, operation): 42 """Helper method to run a datastore mutation operation. 44 mapreduce.operation.db.Put and mapreduce.operation.db.Delete objects 52 operation: A Put or Delete datastore operation object. 54 if operation.__class__ == op.db.Put: 55 operation.entity.put() 56 if operation.__class__ == op.db.Delete [all...] |
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/operation/ |
base.py | 17 """Base operation class.""" 21 __all__ = ['Operation'] 24 class Operation(object): 28 called upon operation yield.
|
/external/eigen/doc/examples/ |
tut_matrix_resize_fixed_size.cpp | 9 m.resize(4,4); // no operation
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
reactor_op.hpp | 16 #include "asio/detail/operation.hpp" 24 : public operation 33 // Perform the operation. Returns true if it is finished. 43 : operation(complete_func),
|
operation.hpp | 2 // detail/operation.hpp 22 typedef task_io_service_operation operation; typedef in namespace:asio::detail
|
/frameworks/base/keystore/java/android/security/keystore/ |
KeyStoreCryptoOperation.java | 22 * Cryptographic operation backed by {@link KeyStore}. 28 * Gets the KeyStore operation handle of this crypto operation. 30 * @return handle or {@code 0} if the KeyStore operation is not in progress.
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
ContentProviderOperationTest.java | 26 ContentProviderOperation operation = builder.build(); local 27 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); 28 assertThat(operation.getUri(), equalTo(URI)); 42 ContentProviderOperation operation = builder.build(); local 44 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); 54 ContentProviderOperation operation = builder.build(); local 55 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); 56 assertThat(operation.getUri(), equalTo(URI)); 68 ContentProviderOperation operation = builder.build(); local 69 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); [all...] |
/external/ltrace/testsuite/ltrace.minor/ |
demangle.h | 13 /* Unary operation. */ 17 /* Binary operation. */
|
/frameworks/base/core/java/android/os/storage/ |
StorageResultCode.java | 28 * Operation succeeded. 34 * Operation failed: Internal error. 40 * Operation failed: Missing media. 46 * Operation failed: Media is blank. 52 * Operation failed: Media is corrupt. 58 * Operation failed: Storage not mounted. 64 * Operation failed: Storage is mounted. 70 * Operation failed: Storage is busy.
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue8501.go | 16 _ = complex(1.0) // ERROR "invalid operation|not enough arguments" 17 _ = complex(t.f) // ERROR "invalid operation|not enough arguments"
|