Searched defs:done (Results 176 - 200 of 631) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/views/download/
H A Ddownload_danger_prompt_views.cc41 const OnDone& done);
83 const OnDone& done)
86 done_(done),
334 OnDone done = done_; local
340 if (!done.is_null())
341 done.Run(action);
350 const OnDone& done) {
352 new DownloadDangerPromptViews(item, show_context, done);
80 DownloadDangerPromptViews( content::DownloadItem* item, bool show_context, const OnDone& done) argument
346 Create( content::DownloadItem* item, content::WebContents* web_contents, bool show_context, const OnDone& done) argument
/external/chromium_org/components/metrics/profiler/
H A Dtracking_synchronizer.cc22 // negative number that is "so negative" that even when we add one (as is done
57 void SetReceivedProcessGroupCount(bool done) { argument
59 received_process_group_count_ = done;
/external/chromium_org/components/storage_monitor/
H A Dmedia_storage_util.cc124 const base::Closure& done) {
127 done.Run();
134 done);
123 FilterAttachedDevices(DeviceIdSet* devices, const base::Closure& done) argument
/external/chromium_org/components/sync_driver/
H A Dnon_ui_data_type_controller_unittest.cc208 WaitableEvent done(true, false);
212 &done));
213 done.TimedWait(TestTimeouts::action_timeout());
214 if (!done.IsSignaled()) {
263 static void SignalDone(WaitableEvent* done) { argument
264 done->Signal();
/external/chromium_org/content/browser/
H A Dbrowser_context.cc102 const base::Closure& done) {
104 active_paths.Pass(), done);
99 GarbageCollectStoragePartitions( BrowserContext* browser_context, scoped_ptr<base::hash_set<base::FilePath> > active_paths, const base::Closure& done) argument
H A Dhistogram_synchronizer.cc27 // negative number that is "so negative" that even when we add one (as is done
52 void SetReceivedProcessGroupCount(bool done) { argument
54 received_process_group_count_ = done;
/external/chromium_org/content/browser/quota/
H A Dquota_reservation_manager_unittest.cc163 void ExpectSuccess(bool* done, base::File::Error error) { argument
164 EXPECT_FALSE(*done);
165 *done = true;
172 bool done = false; local
173 reservation->RefreshReservation(size, base::Bind(&ExpectSuccess, &done));
175 EXPECT_TRUE(done);
H A Dusage_tracker_unittest.cc24 void DidGetGlobalUsage(bool* done, argument
29 EXPECT_FALSE(*done);
30 *done = true;
35 void DidGetUsage(bool* done, argument
38 EXPECT_FALSE(*done);
39 *done = true;
152 bool done = false; local
154 &DidGetUsage, &done, limited_usage));
157 EXPECT_TRUE(done);
161 bool done local
171 bool done = false; local
[all...]
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_readback_unittest.cc33 unsigned int done = 0; local
34 glGetQueryObjectuivEXT(q, GL_QUERY_RESULT_AVAILABLE_EXT, &done);
35 if (done) {
/external/chromium_org/net/disk_cache/blockfile/
H A Deviction.cc329 bool done = false; local
331 if (done)
336 done = true;
H A Deviction_v3.cc316 bool done = false; local
318 if (done)
323 done = true;
/external/chromium_org/remoting/client/plugin/
H A Dmedia_source_video_renderer.cc174 const base::Closure& done) {
175 base::ScopedClosureRunner done_runner(done);
172 ProcessVideoPacket( scoped_ptr<VideoPacket> packet, const base::Closure& done) argument
/external/chromium_org/remoting/client/
H A Dsoftware_video_renderer.cc91 void RequestReturnBuffers(const base::Closure& done);
97 // |packet| so the |packet| must remain alive and valid until |done| is
99 void DecodePacket(scoped_ptr<VideoPacket> packet, const base::Closure& done);
170 const base::Closure& done) {
198 main_task_runner_->PostTask(FROM_HERE, base::Bind(done));
213 main_task_runner_->PostTask(FROM_HERE, base::Bind(done));
245 // Notify the consumer that painting is done.
254 const base::Closure& done) {
262 if (!done.is_null())
263 done
169 DecodePacket(scoped_ptr<VideoPacket> packet, const base::Closure& done) argument
253 RequestReturnBuffers( const base::Closure& done) argument
348 ProcessVideoPacket(scoped_ptr<VideoPacket> packet, const base::Closure& done) argument
402 RequestReturnBuffers(const base::Closure& done) argument
418 OnPacketDone(base::Time decode_start, const base::Closure& done) argument
[all...]
/external/chromium_org/remoting/host/policy_hack/
H A Dpolicy_watcher.cc168 void PolicyWatcher::StopWatching(base::WaitableEvent* done) { argument
172 base::Unretained(this), done));
180 done->Signal();
/external/chromium_org/remoting/host/setup/
H A Ddaemon_controller_delegate_linux.cc202 const DaemonController::CompletionCallback& done) {
209 const DaemonController::CompletionCallback& done) {
219 done.Run(DaemonController::RESULT_FAILED);
228 done.Run(DaemonController::RESULT_FAILED);
237 done.Run(DaemonController::RESULT_FAILED);
248 done.Run(result);
253 const DaemonController::CompletionCallback& done) {
259 done.Run(DaemonController::RESULT_FAILED);
270 done.Run(result);
274 const DaemonController::CompletionCallback& done) {
201 InstallHost( const DaemonController::CompletionCallback& done) argument
206 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done) argument
251 UpdateConfig( scoped_ptr<base::DictionaryValue> config, const DaemonController::CompletionCallback& done) argument
273 Stop( const DaemonController::CompletionCallback& done) argument
[all...]
H A Ddaemon_controller_delegate_win.cc130 const DaemonController::CompletionCallback& done, HRESULT hr) {
131 done.Run(HResultToAsyncResult(hr));
199 const DaemonController::CompletionCallback& done) {
200 DoInstallHost(base::Bind(&InvokeCompletionCallback, done));
206 const DaemonController::CompletionCallback& done) {
209 base::Unretained(this), base::Passed(&config), consent, done));
213 const DaemonInstallerWin::CompletionCallback& done) {
217 done.Run(S_OK);
226 GetTopLevelWindow(window_handle_), done);
233 done
129 InvokeCompletionCallback( const DaemonController::CompletionCallback& done, HRESULT hr) argument
198 InstallHost( const DaemonController::CompletionCallback& done) argument
203 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done) argument
212 DoInstallHost( const DaemonInstallerWin::CompletionCallback& done) argument
236 UpdateConfig( scoped_ptr<base::DictionaryValue> config, const DaemonController::CompletionCallback& done) argument
265 Stop( const DaemonController::CompletionCallback& done) argument
406 StartHostWithConfig( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done, HRESULT hr) argument
[all...]
H A Ddaemon_installer_win.cc70 const CompletionCallback& done);
94 DaemonCommandLineInstallerWin(const CompletionCallback& done);
113 const CompletionCallback& done)
114 : DaemonInstallerWin(done),
269 const CompletionCallback& done) : DaemonInstallerWin(done) {
326 DaemonInstallerWin::DaemonInstallerWin(const CompletionCallback& done) argument
327 : done_(done) {
334 CompletionCallback done = done_; local
336 done
111 DaemonComInstallerWin( const ScopedComPtr<IDispatch>& update3, const CompletionCallback& done) argument
268 DaemonCommandLineInstallerWin( const CompletionCallback& done) argument
340 Create( HWND window_handle, CompletionCallback done) argument
[all...]
H A Dme2me_native_messaging_host_unittest.cc144 const DaemonController::CompletionCallback& done) OVERRIDE;
148 const DaemonController::CompletionCallback& done) OVERRIDE;
151 const DaemonController::CompletionCallback& done) OVERRIDE;
152 virtual void Stop(const DaemonController::CompletionCallback& done) OVERRIDE;
174 const DaemonController::CompletionCallback& done) {
175 done.Run(DaemonController::RESULT_OK);
181 const DaemonController::CompletionCallback& done) {
185 done.Run(DaemonController::RESULT_OK);
187 done.Run(DaemonController::RESULT_FAILED);
193 const DaemonController::CompletionCallback& done) {
173 InstallHost( const DaemonController::CompletionCallback& done) argument
178 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done) argument
191 UpdateConfig( scoped_ptr<base::DictionaryValue> config, const DaemonController::CompletionCallback& done) argument
201 Stop( const DaemonController::CompletionCallback& done) argument
[all...]
/external/chromium_org/storage/browser/fileapi/
H A Dfile_writer_delegate.cc126 if (!bytes_read_) { // We're done.
186 void FileWriterDelegate::OnProgress(int bytes_written, bool done) { argument
190 if (done || last_progress_event_time_.is_null() ||
197 if (done) {
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DMediaQueryParser.cpp39 const MediaQueryParser::State MediaQueryParser::Done = &MediaQueryParser::done;
169 void MediaQueryParser::done(MediaQueryTokenType type, const MediaQueryToken& token) { } function in class:blink::MediaQueryParser
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGGraphicsElement.cpp77 bool done = false; local
79 for (const Element* currentElement = this; currentElement && !done;
89 done = currentElement != this && isViewportElement(*currentElement);
93 done = currentElement == ancestor;
258 // FIXME: How do we know the element has done a layout?
/external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
H A Dqunit.js655 // done: { failed, passed, total, runtime }
656 done: function() {},
743 function done() { function
787 QUnit.done( {
872 done();
1083 callers.pop(); // unstack, we are done
/external/chromium_org/third_party/boringssl/mac-x86_64/crypto/modes/
H A Dghash-x86_64.S1071 jz L$done
1206 jnz L$done
1249 L$done:
/external/chromium_org/third_party/boringssl/src/tool/
H A Dspeed.cc45 // num_calls is the number of function calls done in the time period.
94 unsigned done = 0, iterations_between_time_checks; local
119 done++;
129 results->num_calls = done;
/external/chromium_org/third_party/icu/source/test/threadtest/
H A Dthreadtest.cpp479 UBool done = gRunInfo.runningThreads == 0; local
481 if (done) { break;}
502 // Time's up, we are done. (We only get here if this was a timed run)
508 UBool done = gRunInfo.runningThreads == 0; local
510 if (done) { break;}

Completed in 9275 milliseconds

1234567891011>>