Searched defs:operation (Results 76 - 100 of 231) sorted by relevance

12345678910

/external/chromium_org/third_party/skia/src/utils/
H A DSkSHA1.cpp116 static inline void operation(T operation, argument
119 E += rotate_left(A, 5) + operation(B, C, D) + w + k;
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddecision_logic.cc148 void DecisionLogic::ExpandDecision(Operations operation) { argument
149 if (operation == kExpand) {
/external/chromium_org/ui/views/examples/
H A Dexamples_window.cc126 ExamplesWindowContents(Operation operation, ScopedExamples examples) argument
130 operation_(operation) {
213 void ShowExamplesWindow(Operation operation, argument
222 params.delegate = new ExamplesWindowContents(operation, examples.Pass());
/external/e2fsprogs/intl/
H A Dplural-exp.h47 module, /* Modulo operation. */
60 } operation; member in struct:expression
/external/skia/src/utils/
H A DSkSHA1.cpp116 static inline void operation(T operation, argument
119 E += rotate_left(A, 5) + operation(B, C, D) + w + k;
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/base/
H A Dsync_socket_win.cc111 // on an event that can be used to cancel the operation. If the operation
114 size_t CancelableFileOperation(Function operation, argument
147 const BOOL operation_ok = operation(
185 // Quit the operation if we can't write/read anymore.
/external/chromium_org/cc/layers/
H A Dscrollbar_layer_impl_base.cc60 ScrollbarRegistrationOperation operation) {
75 (current_layer->*operation)(scrollbar);
57 RegisterScrollbarWithLayers(ScrollbarLayerImplBase* scrollbar, LayerImpl* container_layer, LayerImpl* scroll_layer, ScrollbarRegistrationOperation operation) argument
/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/chrome/browser/sync_file_system/local/
H A Dsyncable_file_system_operation.cc37 QueueableTask(base::WeakPtr<SyncableFileSystemOperation> operation, argument
39 : operation_(operation),
41 target_paths_(operation->target_paths_) {}
190 // This is a read operation and there'd be no hard to let it go even if
191 // directory operation is disabled. (And we should allow this if it's made
/external/chromium_org/chrome/installer/setup/
H A Dinstall.cc48 ShellUtil::ShortcutOperation operation,
52 DCHECK(operation != ShellUtil::SHELL_SHORTCUT_UPDATE_EXISTING);
57 (operation == ShellUtil::SHELL_SHORTCUT_CREATE_ALWAYS ||
58 operation == ShellUtil::SHELL_SHORTCUT_CREATE_IF_NO_SYSTEM_LEVEL) ?
60 if (failed && operation == ShellUtil::SHELL_SHORTCUT_REPLACE_EXISTING)
116 ShellUtil::ShortcutOperation operation) {
117 LogShortcutOperation(location, dist, properties, operation, false);
119 operation)) {
120 LogShortcutOperation(location, dist, properties, operation, true);
133 // if the operation fail
45 LogShortcutOperation(ShellUtil::ShortcutLocation location, BrowserDistribution* dist, const ShellUtil::ShortcutProperties& properties, ShellUtil::ShortcutOperation operation, bool failed) argument
112 ExecuteAndLogShortcutOperation( ShellUtil::ShortcutLocation location, BrowserDistribution* dist, const ShellUtil::ShortcutProperties& properties, ShellUtil::ShortcutOperation operation) argument
[all...]
/external/chromium_org/chrome/installer/util/
H A Dinstaller_state.h40 // Encapsulates the state of the current installation operation. Only valid
77 // Initializes this object based on the current operation.
99 // The level (user or system) of this operation.
102 // The package type (single or multi) of this operation.
105 // An identifier of this operation.
106 Operation operation() const { return operation_; } function in class:installer::InstallerState
200 // For a MULTI_INSTALL or MULTI_UPDATE operation, updates the Google Update
/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/components/password_manager/core/browser/
H A Dpassword_syncable_service.cc365 DatabaseOperation operation,
370 PasswordStoreChangeList new_changes = (password_store_->*operation)(**it);
364 WriteEntriesToDatabase( DatabaseOperation operation, const PasswordForms& entries, PasswordStoreChangeList* all_changes) argument
/external/chromium_org/content/browser/download/
H A Dbase_file.cc320 const char* operation,
324 base::Bind(&FileErrorNetLogCallback, operation, error));
329 const char* operation,
334 operation, os_error,
339 const char* operation,
344 base::Bind(&FileInterruptedNetLogCallback, operation, os_error, reason));
319 LogNetError( const char* operation, net::Error error) argument
328 LogSystemError( const char* operation, logging::SystemErrorCode os_error) argument
338 LogInterruptReason( const char* operation, int os_error, DownloadInterruptReason reason) argument
/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/media/audio/pulse/
H A Daudio_manager_pulse.cc103 pa_operation* operation = NULL; local
105 operation = pa_context_get_source_info_list(
108 operation = pa_context_get_sink_info_list(
111 WaitForOperationCompletion(input_mainloop_, operation);
214 pa_operation* operation = pa_context_get_server_info( local
216 WaitForOperationCompletion(input_mainloop_, operation);
H A Dpulse_input.cc86 pa_operation* operation = pa_stream_cork(handle_, 0, NULL, NULL); local
87 WaitForOperationCompletion(pa_mainloop_, operation);
101 pa_operation* operation = pa_stream_flush(handle_, local
104 WaitForOperationCompletion(pa_mainloop_, operation);
108 operation = pa_stream_cork(handle_, 1, &pulse::StreamSuccessCallback,
110 WaitForOperationCompletion(pa_mainloop_, operation);
121 pa_operation* operation = pa_stream_flush( local
123 WaitForOperationCompletion(pa_mainloop_, operation);
149 pa_operation* operation = NULL; local
153 operation
179 pa_operation* operation = pa_context_get_source_info_by_index( local
327 pa_operation* operation = local
[all...]
H A Dpulse_util.cc100 pa_operation* operation) {
101 if (!operation) {
106 while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING)
109 pa_operation_unref(operation);
99 WaitForOperationCompletion(pa_threaded_mainloop* pa_mainloop, pa_operation* operation) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Djspipe_event_emitter.cc25 const char* kDictKeyOperation = "operation";
157 Error JSPipeEventEmitter::SendMessageToJS(PP_Var operation, PP_Var payload) { argument
174 // Set three keys in the dictionary: 'pipe', 'operation', and 'payload'
176 dict_iface_->Set(dict, operation_key_, operation);
/external/chromium_org/net/disk_cache/blockfile/
H A Ddisk_format.h64 CacheAddr transaction; // In-flight operation target.
65 int32 operation; // Actual in-flight operation. member in struct:disk_cache::LruData
66 int32 operation_list; // In-flight operation list.
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/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContextTest.cpp48 Operation operation = { DrawRect, rect }; variable
49 m_recordedOperations.append(operation);
56 Operation operation = { DrawPoint, SkRect::MakeXYWH(pts[0].x(), pts[0].y(), 0, 0) }; variable
57 m_recordedOperations.append(operation);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComposite.cpp57 CompositeOperationType FEComposite::operation() const function in class:blink::FEComposite
434 ts << " operation=\"" << m_type << "\"";
H A DFilterOperation.h92 // True if the alpha channel of any pixel can change under this operation.
94 // True if the the value of one pixel can affect the value of another pixel under this operation, such as blur.
188 inline bool isBasicColorMatrixFilterOperation(const FilterOperation& operation) argument
190 FilterOperation::OperationType type = operation.type();
228 inline bool isBasicComponentTransferFilterOperation(const FilterOperation& operation) argument
230 FilterOperation::OperationType type = operation.type();

Completed in 7884 milliseconds

12345678910