/external/lzma/CPP/7zip/UI/Common/ |
ExitCode.h | 10 kSuccess = 0, // Successful operation
18 kMemoryError = 8, // Not enough memory for operation
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue4545.go | 16 fmt.Println(1.0 + 1<<s) // ERROR "invalid operation|non-integer type|incompatible type" 17 x := 1.0 + 1<<s // ERROR "invalid operation|non-integer type"
|
bug161.go | 16 bug161.go:8: operation LITERAL not allowed in assignment context
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue4545.go | 16 fmt.Println(1.0 + 1<<s) // ERROR "invalid operation|non-integer type|incompatible type" 17 x := 1.0 + 1<<s // ERROR "invalid operation|non-integer type"
|
bug161.go | 16 bug161.go:8: operation LITERAL not allowed in assignment context
|
/external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/Common/ |
OpQueue.h | 4 // Async operation queue. 26 To perform an operation asynchronously in Media Foundation, an object 37 from a work-queue thread. The object can then complete the operation 42 guarantee that one operation will complete before the next one starts, 47 use a queue. While one operation is pending, subsequent operations are 48 put on the queue, and only dispatched after the previous operation is 51 The granularity of a single "operation" depends on the requirements of 52 that particular object. A single operation might involve several 53 asynchronous calls before the object dispatches the next operation on 64 // Base class for an async operation queue [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
rewrite.rb | 78 # run the rewrite operation represented by this object and append the output to +buffer+ 82 # return the name of this operation as set by its class 88 # return a compact, readable representation of this operation 97 Represents rewrite operation: 120 Represents rewrite operation: 158 Represents rewrite operation: 216 operation = operations.shift 217 location = operation.location 219 case operation 231 conflict!( operation, prior_operation [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/ |
MockXmlNode.java | 191 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 219 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 224 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 229 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 234 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 239 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 244 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 249 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 255 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1$ 260 throw new UnsupportedOperationException("Operation not implemented."); //$NON-NLS-1 [all...] |
/art/runtime/interpreter/mterp/x86_64/ |
binopWide.S | 2 * Generic 64-bit binary operation.
|
binopWide2addr.S | 2 * Generic 64-bit binary operation.
|
/dalvik/dx/tests/076-dex-synch-and-stack/ |
info.txt | 3 operation unwinding.
|
/external/autotest/client/tests/ddtest/ |
control | 5 the entire operation. Intended to detect basic performance regressions
|
/external/chromium-trace/catapult/firefighter/base/ |
exceptions.py | 11 """Raised when an operation takes longer than its specified timeout."""
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/operation/ |
counters.py | 25 from mapreduce.operation import base 30 class Increment(base.Operation): 31 """Increment counter operation.""" 44 """Execute operation.
|
/external/llvm/test/Transforms/InstCombine/ |
2006-10-19-SignedToUnsignedCastAndConst-2.ll | 1 ; The optimizer should be able to remove cast operation here.
|
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/ |
MapObexTestServer.java | 7 import javax.obex.Operation; 78 /* OBEX operation handlers */ 132 public int onPut(Operation operation) { 136 HeaderSet reqHeaders = operation.getReceivedHeader(); 142 step.mServerPreAction.execute(step, reqHeaders, operation); 144 super.onPut(operation); 151 Log.i(TAG, "OBEX-HANDLER: operation complete success"); 153 Log.e(TAG, "OBEX-HANDLER: operation complete FAILED!"); 159 public int onGet(Operation operation) [all...] |
/packages/experimental/procstatlog/ |
README | 5 of time during system operation.
|
/toolchain/binutils/binutils-2.25/config/ |
mh-pa | 3 # and ada files need to be compiled with this option for correct operation.
|
mh-pa-hpux10 | 3 # and ada files need to be compiled with this option for correct operation.
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/ |
WakeLockOperation.java | 38 * @param operation the child {@link SensorOperation} to perform after the delay 42 public WakeLockOperation(SensorOperation operation, Context context, int wakeLockFlags) { 43 super(operation.getStats()); 44 mOperation = operation; 52 * @param operation the child {@link SensorOperation} to perform after the delay 55 public WakeLockOperation(SensorOperation operation, Context context) { 56 this(operation, context, PowerManager.PARTIAL_WAKE_LOCK);
|
/external/e2fsprogs/e2fsck/ |
ehandler.c | 20 static const char *operation; variable 53 if (operation) 55 error_message(error), operation); local 102 if (operation) 104 error_message(error), operation); local 117 const char *ret = operation; 119 operation = op;
|
/system/keymaster/ |
ecdsa_operation.h | 25 #include "operation.h" 29 class EcdsaOperation : public Operation { 32 : Operation(purpose), digest_(digest), ecdsa_key_(key) { 81 Operation* CreateOperation(const Key& key, const AuthorizationSet& begin_params, 86 virtual Operation* InstantiateOperation(keymaster_digest_t digest, EVP_PKEY* key) = 0; 92 Operation* InstantiateOperation(keymaster_digest_t digest, EVP_PKEY* key) { 100 Operation* InstantiateOperation(keymaster_digest_t digest, EVP_PKEY* key) {
|
/external/autotest/client/common_lib/cros/fake_device_server/ |
common_util.py | 65 and finally an optional operation if supported_operations is provided 75 operation = args.pop(0) if args else None 76 if operation: 79 400, 'Received operation when operation was not ' 80 'expected: %s!' % operation) 81 elif not operation in supported_operations: 83 400, 'Unsupported operation: %s' % operation) 90 return id, api_key, operation [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
resolve_endpoint_op.hpp | 24 #include "asio/detail/operation.hpp" 33 class resolve_endpoint_op : public operation 43 : operation(&resolve_endpoint_op::do_complete), 51 static void do_complete(io_service_impl* owner, operation* base, 55 // Take ownership of the operation object. 61 // The operation is being run on the worker io_service. Time to perform 62 // the resolver operation. 64 // Perform the blocking endpoint resolution operation. 72 // Pass operation back to main io_service for completion. 78 // The operation has been returned to the main io_service. The completio [all...] |
resolve_op.hpp | 25 #include "asio/detail/operation.hpp" 34 class resolve_op : public operation 44 : operation(&resolve_op::do_complete), 59 static void do_complete(io_service_impl* owner, operation* base, 63 // Take ownership of the operation object. 69 // The operation is being run on the worker io_service. Time to perform 70 // the resolver operation. 72 // Perform the blocking host resolution operation. 77 // Pass operation back to main io_service for completion. 83 // The operation has been returned to the main io_service. The completio [all...] |