Searched refs:operation (Results 76 - 100 of 531) sorted by relevance

1234567891011>>

/external/chromium_org/components/component_updater/
H A Dcomponent_patcher_operation.cc45 const std::string& operation,
47 if (operation == "copy") {
49 } else if (operation == "create") {
51 } else if (operation == "bsdiff" || operation == "courgette") {
52 return new DeltaUpdateOpPatch(operation, out_of_process_patcher);
189 const std::string& operation,
191 : operation_(operation), out_of_process_patcher_(out_of_process_patcher) {
192 DCHECK(operation == kBsdiff || operation
44 CreateDeltaUpdateOp( const std::string& operation, scoped_refptr<OutOfProcessPatcher> out_of_process_patcher) argument
188 DeltaUpdateOpPatch( const std::string& operation, scoped_refptr<OutOfProcessPatcher> out_of_process_patcher) argument
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dfile_ios.cc17 // This class represents a single asynchronous IO operation while it is being
21 // Other than the actual parameters for the IO operation (including the
25 // operation.
42 // The actual parameters for the operation are setup in the constructor of
69 // These methods start an asynchronous operation. The arguments have the same
71 // operation never finishes synchronously.
78 // Invokes the users' completion callback at the end of the IO operation.
82 virtual void OnOperationComplete(disk_cache::BackgroundIO* operation,
113 scoped_refptr<FileBackgroundIO> operation(
118 base::Bind(&FileBackgroundIO::Read, operation
135 OnOperationComplete(disk_cache::BackgroundIO* operation, bool cancel) argument
[all...]
/external/openssl/crypto/evp/
H A Dpmeth_gn.c76 ctx->operation = EVP_PKEY_OP_PARAMGEN;
81 ctx->operation = EVP_PKEY_OP_UNDEFINED;
95 if (ctx->operation != EVP_PKEY_OP_PARAMGEN)
125 ctx->operation = EVP_PKEY_OP_KEYGEN;
130 ctx->operation = EVP_PKEY_OP_UNDEFINED;
144 if (ctx->operation != EVP_PKEY_OP_KEYGEN)
/external/chromium_org/chrome/browser/chromeos/ownership/
H A Downer_settings_service_chromeos.cc197 SignAndStoreSettingsOperation* operation = new SignAndStoreSettingsOperation( local
202 operation->set_owner_settings_service(weak_factory_.GetWeakPtr());
203 pending_operations_.push_back(operation);
204 if (pending_operations_.front() == operation)
297 SessionManagerOperation* operation,
299 DCHECK_EQ(operation, pending_operations_.front());
303 service->set_policy_data(operation->policy_data().Pass());
304 service->set_device_settings(operation->device_settings().Pass());
307 if ((operation->public_key().get() && !public_key_.get()) ||
308 (operation
295 HandleCompletedOperation( const base::Closure& callback, SessionManagerOperation* operation, DeviceSettingsService::Status status) argument
[all...]
/external/chromium_org/content/browser/download/
H A Dbase_file.h55 // indicating the result of the operation.
59 // result of the operation. A return code of NONE indicates that the rename
80 // DownloadInterruptReason indicating the result of the operation.
134 DownloadInterruptReason LogNetError(const char* operation, net::Error error);
138 DownloadInterruptReason LogSystemError(const char* operation,
144 const char* operation, int os_error,
/external/chromium_org/content/browser/fileapi/
H A Drecursive_operation_delegate_unittest.cc117 // To test the Cancel() during operation, calls Cancel() of |operation|
119 void CallCancelLater(storage::RecursiveOperationDelegate* operation, argument
124 base::Bind(&CallCancelLater, base::Unretained(operation), counter - 1));
128 operation->Cancel();
191 scoped_ptr<LoggingRecursiveOperation> operation(
195 operation->RunRecursively();
200 operation->log_entries();
216 scoped_ptr<LoggingRecursiveOperation> operation(
220 operation
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Didl_validator.py59 for operation in interface.operations:
60 self.validate_extended_attributes_node(operation)
61 for argument in operation.arguments:
/external/chromium_org/third_party/boringssl/src/crypto/rsa/
H A Drsa_asn1.c65 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
67 if (operation == ASN1_OP_NEW_PRE) {
73 } else if (operation == ASN1_OP_FREE_PRE) {
/external/openssl/crypto/rsa/
H A Drsa_asn1.c67 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
70 if(operation == ASN1_OP_NEW_PRE) {
74 } else if(operation == ASN1_OP_FREE_PRE) {
/external/chromium_org/chrome/browser/component_updater/
H A Dcomponent_patcher_operation_out_of_process.h30 virtual void Patch(const std::string& operation,
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Doperation_manager.cc9 #include "chrome/browser/extensions/api/image_writer_private/operation.h"
68 // Chrome OS can only support a single operation at a time.
78 scoped_refptr<Operation> operation(
85 operations_[extension_id] = operation;
88 base::Bind(&Operation::Start, operation));
98 // Chrome OS can only support a single operation at a time.
108 scoped_refptr<Operation> operation(new WriteFromFileOperation(
110 operations_[extension_id] = operation;
113 base::Bind(&Operation::Start, operation));
143 scoped_refptr<Operation> operation(ne
[all...]
H A Ddestroy_partitions_operation_unittest.cc26 scoped_refptr<DestroyPartitionsOperation> operation(
48 operation->Start();
/external/chromium_org/third_party/boringssl/src/crypto/dsa/
H A Ddsa_asn1.c65 static int dsa_sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
67 if (operation != ASN1_OP_NEW_PRE) {
90 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
92 switch (operation) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
72 Instruction *mkCvt(operation, DataType, Value *, DataType, Value *);
73 CmpInstruction *mkCmp(operation, CondCod
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_instructions.cpp46 * there is no subtract operation separate from adding the negation.
57 * reciprocal. By breaking the operation down, constant reciprocals
127 ir->operation = ir_binop_add;
145 ir->operation = ir_binop_mul;
190 ir->operation = ir_unop_f2i;
193 ir->operation = ir_unop_i2u;
206 ir->operation = ir_unop_exp2;
219 ir->operation = ir_unop_exp2;
229 ir->operation = ir_binop_mul;
265 ir->operation
[all...]
/external/chromium_org/ui/base/cocoa/
H A Dappkit_utils.h34 NSCompositingOperation operation,
/external/chromium_org/ui/views/
H A Ddrag_utils.h25 // Starts a drag operation. This blocks until the drag operation completes.
29 int operation,
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
72 Instruction *mkCvt(operation, DataType, Value *, DataType, Value *);
73 CmpInstruction *mkCmp(operation, CondCod
[all...]
/external/mesa3d/src/glsl/
H A Dlower_instructions.cpp46 * there is no subtract operation separate from adding the negation.
57 * reciprocal. By breaking the operation down, constant reciprocals
127 ir->operation = ir_binop_add;
145 ir->operation = ir_binop_mul;
190 ir->operation = ir_unop_f2i;
193 ir->operation = ir_unop_i2u;
206 ir->operation = ir_unop_exp2;
219 ir->operation = ir_unop_exp2;
229 ir->operation = ir_binop_mul;
265 ir->operation
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb78 # 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_operatio
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dinstall_verifier.cc279 InstallVerifier::PendingOperation* operation = local
281 operation->ids.insert(ids.begin(), ids.end());
283 operation_queue_.push(linked_ptr<PendingOperation>(operation));
316 InstallVerifier::PendingOperation* operation =
318 operation->ids = ids;
320 operation_queue_.push(linked_ptr<PendingOperation>(operation));
536 // hold (set of ids, list of operation type) pairs.
538 const PendingOperation& operation = *operation_queue_.front(); local
544 if (operation.type == InstallVerifier::REMOVE) {
545 for (ExtensionIdSet::const_iterator i = operation
604 linked_ptr<PendingOperation> operation = operation_queue_.front(); local
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dpepper_graphics_2d_host.cc429 QueuedOperation operation(QueuedOperation::PAINT);
430 operation.paint_image = image_resource;
434 &operation.paint_src_rect))
441 if (x64 + static_cast<int64>(operation.paint_src_rect.x()) < 0 ||
442 x64 + static_cast<int64>(operation.paint_src_rect.right()) >
445 if (y64 + static_cast<int64>(operation.paint_src_rect.y()) < 0 ||
446 y64 + static_cast<int64>(operation.paint_src_rect.bottom()) >
449 operation.paint_x = top_left.x;
450 operation.paint_y = top_left.y;
452 queued_operations_.push_back(operation);
613 QueuedOperation& operation = queued_operations_[i]; local
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
H A Dbasic.rb234 error.to_s.should == %q<operation (replace @ 1..2 : "foo") overlaps with previous operation (replace @ 0..3 : "bar")>
245 error.to_s.should == %q<operation (insert-before @ 4 : "y") overlaps with previous operation (replace @ 2..4 : "x")>
256 error.to_s.should == %q<operation (replace @ 3..5 : "foo") overlaps with previous operation (replace @ 2..4 : "xyz")>
267 error.to_s.should == %q<operation (replace @ 1..3 : "foo") overlaps with previous operation (replace @ 2..4 : "xyz")>
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dtouch_operation_unittest.cc23 TouchOperation operation(blocking_task_runner(),
36 operation.TouchFile(
/external/chromium_org/chrome/browser/undo/
H A Dundo_manager.h20 // make that action. Typically there is only one operation per UndoGroup.
26 void AddOperation(scoped_ptr<UndoOperation> operation);
58 // Perform an undo or redo operation.
68 void AddUndoOperation(scoped_ptr<UndoOperation> operation);

Completed in 2310 milliseconds

1234567891011>>