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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation_unittest.cc 6 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
15 class DummyOperation : public Operation {
20 : Operation(manager, extension_id, storage_unit_id) {};
28 scoped_refptr<Operation> op(new DummyOperation(manager.AsWeakPtr(),
operation_manager.h 16 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
29 class Operation;
45 // Starts a WriteFromUrl operation.
52 const Operation::StartWriteCallback& callback);
54 // Starts a WriteFromFile operation.
58 const Operation::StartWriteCallback& callback);
60 // Cancels the extensions current operation if any.
62 const Operation::CancelWriteCallback& callback);
95 Operation* GetOperation(const ExtensionId& extension_id);
99 typedef std::map<ExtensionId, scoped_refptr<Operation> > OperationMap
    [all...]
operation.cc 9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
29 Operation::Operation(base::WeakPtr<OperationManager> manager,
39 Operation::~Operation() {
42 void Operation::Cancel() {
45 DVLOG(1) << "Cancelling image writing operation for ext: " << extension_id_;
52 void Operation::Abort() {
56 int Operation::GetProgress() {
60 image_writer_api::Stage Operation::GetStage()
    [all...]
  /external/eigen/doc/examples/
tut_matrix_resize_fixed_size.cpp 9 m.resize(4,4); // no operation
  /external/robolectric/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/chromium_org/ppapi/shared_impl/
file_io_state_manager.h 17 // operation could be rejected because of the current pending operation. Also,
25 // There is no pending operation right now.
28 // If there are pending reads, any other kind of async operation is not
32 // If there are pending writes, any other kind of async operation is not
36 // If there is a pending operation that is neither read nor write, no
37 // further async operation is allowed.
45 // Called at the beginning of each operation. It is responsible to make sure
  /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.
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
JFmRxCcmVacResourceOwner.java 63 private JFmRxEcalOperation operation; field in class:JFmRxCcmVacResourceOwner
65 public JFmRxCcmVacResourceOwner(JFmRxEcalResource resource, JFmRxEcalOperation operation) {
67 this.operation = operation;
79 return operation;
82 public void setOperation(JFmRxEcalOperation operation) {
83 this.operation = operation;
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorTestOperations/
SequentialCompositeSensorTestOperation.java 24 * A test operation that groups a set of SensorTestOperations and allows to execute them in a
25 * sequence, each operation executes in the order they are added to the composite container.
37 for(SensorTestOperation operation : operations) {
38 mOperations.add(operation);
46 for(SensorTestOperation operation : mOperations) {
47 operation.execute();
  /external/chromium/net/disk_cache/
in_flight_io.h 18 // This class represents a single asynchronous IO operation while it is being
22 // Other than the actual parameters for the IO operation (including the
26 // operation.
29 // This method signals the controller that this operation is finished, in the
36 // operation to finish it doesn't have to wait for the final task to be
38 // Note that this method is not intended to cancel the actual IO operation or
52 int result_; // Final operation result.
57 // Notifies the controller about the end of the operation, from the background
61 // An event to signal when the operation completes.
68 // of this class is meant to be used to start an asynchronous operation (usin
    [all...]
  /external/chromium_org/net/disk_cache/
in_flight_io.h 18 // This class represents a single asynchronous IO operation while it is being
22 // Other than the actual parameters for the IO operation (including the
26 // operation.
29 // This method signals the controller that this operation is finished, in the
36 // operation to finish it doesn't have to wait for the final task to be
38 // Note that this method is not intended to cancel the actual IO operation or
51 // Notifies the controller about the end of the operation, from the background
55 int result_; // Final operation result.
60 // An event to signal when the operation completes.
69 // of this class is meant to be used to start an asynchronous operation (usin
    [all...]
  /frameworks/base/tools/preload/
Operation.java 22 * An operation with a duration. Could represent a class load or initialization.
24 class Operation implements Serializable {
29 * Type of operation.
35 /** Process this operation occurred in. */
38 /** Start time for this operation. */
41 /** Index of this operation relative to its process. */
44 /** Type of operation. */
47 /** End time for this operation. */
50 /** The class that this operation loaded or initialized. */
54 final List<Operation> subops = new ArrayList<Operation>()
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_runner.cc 47 FileSystemOperation* operation = local
51 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
52 if (!operation) {
57 operation->CreateFile(
70 FileSystemOperation* operation = local
73 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
74 if (!operation) {
79 operation->CreateDirectory(
93 FileSystemOperation* operation = local
96 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr())
120 FileSystemOperation* operation = local
141 FileSystemOperation* operation = local
161 FileSystemOperation* operation = local
181 FileSystemOperation* operation = local
201 FileSystemOperation* operation = local
222 FileSystemOperation* operation = local
245 FileSystemOperation* operation = local
284 FileSystemOperation* operation = local
308 FileSystemOperation* operation = operations_.Lookup(id); local
323 FileSystemOperation* operation = local
344 FileSystemOperation* operation = local
374 FileSystemOperation* operation = local
396 FileSystemOperation* operation = local
415 FileSystemOperation* operation = local
434 FileSystemOperation* operation = local
456 FileSystemOperation* operation = local
477 FileSystemOperation* operation = local
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
UserDataNotification.java 22 private final short operation; field in class:UserDataNotification
32 public UserDataNotification(short operation,
37 this.operation = operation;
45 * Get value of operation parameter
47 * @return value of operation parameter
50 return operation;
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryService.java 57 * Data class which holds into info of the queued operation
59 public static class Operation {
72 * One of the EVENT_ARG_ constants in the class describing the operation
83 case Operation.EVENT_ARG_QUERY:
85 case Operation.EVENT_ARG_INSERT:
87 case Operation.EVENT_ARG_UPDATE:
89 case Operation.EVENT_ARG_DELETE:
91 case Operation.EVENT_ARG_BATCH:
101 builder.append("Operation [op=");
124 * Gets the last delayed operation. It is typically used for canceling
    [all...]
  /external/clang/test/SemaCXX/
expressions.cpp 38 // expected-note {{use '&' for a bitwise operation}} \
48 // expected-note {{use '&' for a bitwise operation}} \
52 // expected-note {{use '|' for a bitwise operation}}
55 // expected-note {{use '|' for a bitwise operation}}
57 // expected-note {{use '|' for a bitwise operation}}
59 // expected-note {{use '|' for a bitwise operation}}
61 // expected-note {{use '|' for a bitwise operation}}
63 // expected-note {{use '&' for a bitwise operation}} \
66 // expected-note {{use '&' for a bitwise operation}} \
69 // expected-note {{use '&' for a bitwise operation}} \
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_LlcpTransport_Connection.h 52 * \retval NFCSTATUS_SUCCESS Operation successful.
56 * a valid type to perform the requsted operation.
59 * \retval NFCSTATUS_FAILED Operation failed.
75 * \retval NFCSTATUS_SUCCESS Operation successful.
79 * a valid type to perform the requsted operation.
82 * \retval NFCSTATUS_FAILED Operation failed.
96 * \retval NFCSTATUS_SUCCESS Operation successful.
99 * \retval NFCSTATUS_FAILED Operation failed.
120 * \retval NFCSTATUS_SUCCESS Operation successful.
125 * \retval NFCSTATUS_FAILED Operation failed
    [all...]
  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 24 * This DoubleValue represents the result of a binary operation on two double
39 private final byte operation; field in class:CompositeDoubleValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeDoubleValue)object).operation &&
79 return "("+doubleValue1+((char)operation)+doubleValue2+")";
CompositeFloatValue.java 24 * This FloatValue represents the result of a binary operation on two float
39 private final byte operation; field in class:CompositeFloatValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeFloatValue)object).operation &&
79 return "("+floatValue1+((char)operation)+floatValue2+")";
CompositeIntegerValue.java 24 * This IntegerValue represents the result of a binary operation on two integer
45 private final byte operation; field in class:CompositeIntegerValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeIntegerValue)object).operation &&
85 return "("+integerValue1+((char)operation)+integerValue2+")";
CompositeLongValue.java 24 * This LongValue represents the result of a binary operation on two long
45 private final byte operation; field in class:CompositeLongValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeLongValue)object).operation &&
85 return "("+longValue1+((char)operation)+longValue2+")";
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
operation.h 4 /* $Id: operation.h 1426 2007-02-13 15:35:19Z ossman $ */
35 /** An asynchronous operation object */
44 /** Cancel the operation. Beware! This will not necessarily cancel the execution of the operation on the server side. */
47 /** Return the current status of the operation */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
operation.h 4 /* $Id: operation.h 1426 2007-02-13 15:35:19Z ossman $ */
35 /** An asynchronous operation object */
44 /** Cancel the operation. Beware! This will not necessarily cancel the execution of the operation on the server side. */
47 /** Return the current status of the operation */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
operation.h 4 /* $Id: operation.h 1426 2007-02-13 15:35:19Z ossman $ */
35 /** An asynchronous operation object */
44 /** Cancel the operation. Beware! This will not necessarily cancel the execution of the operation on the server side. */
47 /** Return the current status of the operation */
  /external/chromium_org/third_party/tlslite/tlslite/integration/
AsyncStateMachine.py 34 #currently active operation. If 0 it indicates that the
35 #operation wants to read, if 1 it indicates that the
36 #operation wants to write. If None, there is no active
37 #operation.
41 #This checks that only one operation, at most, is
67 If an operation is active, this returns whether or not the
68 operation wants to read from the socket. If an operation is
81 If an operation is active, this returns whether or not the
82 operation wants to write to the socket. If an operation i
    [all...]

Completed in 450 milliseconds

12 3 4 5 6 7 8 91011>>