Searched defs:done (Results 101 - 125 of 582) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/
H A Dmain.c101 int done = 0; local
107 while ( !done ) {
120 done = 1;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/
H A Dmain.c101 int done = 0; local
107 while ( !done ) {
120 done = 1;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/
H A Dmain.c101 int done = 0; local
107 while ( !done ) {
120 done = 1;
/external/qemu/distrib/sdl-1.2.15/src/cpuinfo/
H A DSDL_cpuinfo.c108 jz done ; Processor=80486 local
110 done:
194 jl done ; We dont have the CPUID instruction local
201 done:
272 jl done ; Nope, we dont have function 800000001h
278 done:
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestbitmap.c60 int i, k, done; local
152 done = 0;
153 while ( !done ) {
171 done = 1;
174 done = 1;
/external/skia/src/doc/
H A DSkDocument_PDF.cpp89 SkDocument* SkDocument::CreatePDF(SkWStream* stream, void (*done)(SkWStream*,bool), argument
92 return stream ? SkNEW_ARGS(SkDocument_PDF, (stream, done, enc, dpi)) : NULL;
/external/smack/src/org/jivesoftware/smack/
H A DPacketReader.java51 volatile boolean done; field in class:PacketReader
65 done = false;
126 // Notify connection listeners of the connection closing if done hasn't already been set.
127 if (!done) {
139 done = true;
280 } while (!done && eventType != XmlPullParser.END_DOCUMENT && thread == readerThread);
283 // The exception can be ignored if the the connection is 'done'
285 if (!(done || connection.isSocketClosed())) {
330 boolean done = false;
331 while (!done) {
[all...]
H A DPacketWriter.java47 volatile boolean done; field in class:PacketWriter
66 done = false;
83 if (!done) {
123 done = true;
147 // Wait until there's a packet or we're done.
148 while (!done && (packet = queue.poll()) == null) {
166 while (!done && (writerThread == thisThread)) {
210 // The exception can be ignored if the the connection is 'done'
212 if (!(done || connection.isSocketClosed())) {
213 done
[all...]
/external/chromium/chrome/browser/ui/
H A Dbrowser_list.h200 // for (TabContentsIterator iterator; !iterator.done(); ++iterator) {
211 bool done() const { function in class:TabContentsIterator
/external/chromium/net/base/
H A Dssl_false_start_blacklist_process.cc150 long done = 0; local
151 while (done < input_size) {
152 size_t n = fread(buffer + done, 1, input_size - done, input);
159 done += n;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttprequest.h116 bool done() const { return complete_; } function in class:talk_base::HttpMonitor
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_controller.h60 // done or the query is Stop()ed. It is safe to Start() a new query without
69 // controller is done the notification AUTOCOMPLETE_CONTROLLER_RESULT_READY is
131 bool done() const { return done_; } function in class:AutocompleteController
176 // Calls AutocompleteControllerDelegate::OnResultChanged() and if done sends
/external/chromium_org/chrome/browser/sync/glue/
H A Dnon_frontend_data_type_controller_unittest.cc185 static void SignalDone(WaitableEvent* done) { argument
186 done->Signal();
190 WaitableEvent done(true, false);
192 base::Bind(&SyncNonFrontendDataTypeControllerTest::SignalDone, &done));
193 done.TimedWait(TestTimeouts::action_timeout());
194 if (!done.IsSignaled()) {
H A Dsync_backend_registrar_unittest.cc46 base::WaitableEvent* done) {
56 done->Signal();
251 base::WaitableEvent done(false, false);
258 &done));
259 done.Wait();
45 TestNonUIDataTypeActivationAsync(ChangeProcessor* processor, base::WaitableEvent* done) argument
/external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
H A Ddrive_file_sync_service_unittest.cc27 void DidInitialize(bool* done, SyncStatusCode status, bool created) { argument
29 *done = true;
32 void ExpectEqStatus(bool* done, argument
35 EXPECT_FALSE(*done);
36 *done = true;
61 bool done = false; variable
62 metadata_store_->Initialize(base::Bind(&DidInitialize, &done));
65 EXPECT_TRUE(done); variable
171 bool done = false; local
175 base::Bind(&ExpectEqStatus, &done, SYNC_STATUS_O
201 bool done = false; local
224 bool done = false; local
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dconstrained_window_views_browsertest.cc112 bool done() { function in class:__anon6573::TestConstrainedDialog
192 EXPECT_TRUE(test_dialog1->done());
193 EXPECT_FALSE(test_dialog2->done());
221 EXPECT_TRUE(test_dialog2->done());
258 EXPECT_TRUE(test_dialog->done());
308 EXPECT_TRUE(test_dialog->done());
358 EXPECT_TRUE(test_dialog->done());
/external/chromium_org/remoting/client/
H A Drectangle_update_decoder.cc119 const base::Closure& done) {
122 base::ScopedClosureRunner done_runner(done);
191 // Notify the consumer that painting is done.
198 void RectangleUpdateDecoder::RequestReturnBuffers(const base::Closure& done) { argument
202 this, done));
211 if (!done.is_null())
212 done.Run();
289 const base::Closure& done) {
295 done.Run();
321 &RectangleUpdateDecoder::OnPacketDone, this, decode_start, done);
118 DecodePacket(scoped_ptr<VideoPacket> packet, const base::Closure& done) argument
288 ProcessVideoPacket(scoped_ptr<VideoPacket> packet, const base::Closure& done) argument
328 OnPacketDone(base::Time decode_start, const base::Closure& done) argument
[all...]
/external/chromium_org/remoting/host/policy_hack/
H A Dpolicy_watcher.cc150 void PolicyWatcher::StopWatching(base::WaitableEvent* done) { argument
154 base::Unretained(this), done));
162 done->Signal();
/external/chromium_org/remoting/host/setup/
H A Ddaemon_controller.cc40 void DaemonController::GetConfig(const GetConfigCallback& done) { argument
44 &DaemonController::InvokeConfigCallbackAndScheduleNext, this, done);
53 const CompletionCallback& done) {
57 &DaemonController::InvokeCompletionCallbackAndScheduleNext, this, done);
65 const CompletionCallback& done) {
69 &DaemonController::InvokeCompletionCallbackAndScheduleNext, this, done);
76 void DaemonController::Stop(const CompletionCallback& done) { argument
80 &DaemonController::InvokeCompletionCallbackAndScheduleNext, this, done);
89 base::Closure done = base::Bind(&DaemonController::ScheduleNext, this); local
91 &DaemonController::DoSetWindow, this, window_handle, done);
50 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const CompletionCallback& done) argument
64 UpdateConfig(scoped_ptr<base::DictionaryValue> config, const CompletionCallback& done) argument
95 GetVersion(const GetVersionCallback& done) argument
105 GetUsageStatsConsent( const GetUsageStatsConsentCallback& done) argument
125 DoGetConfig(const GetConfigCallback& done) argument
133 DoSetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const CompletionCallback& done) argument
142 DoUpdateConfig( scoped_ptr<base::DictionaryValue> config, const CompletionCallback& done) argument
150 DoStop(const CompletionCallback& done) argument
156 DoSetWindow(void* window_handle, const base::Closure& done) argument
164 DoGetVersion(const GetVersionCallback& done) argument
171 DoGetUsageStatsConsent( const GetUsageStatsConsentCallback& done) argument
180 InvokeCompletionCallbackAndScheduleNext( const CompletionCallback& done, AsyncResult result) argument
195 InvokeConfigCallbackAndScheduleNext( const GetConfigCallback& done, scoped_ptr<base::DictionaryValue> config) argument
204 InvokeConsentCallbackAndScheduleNext( const GetUsageStatsConsentCallback& done, const UsageStatsConsent& consent) argument
213 InvokeVersionCallbackAndScheduleNext( const GetVersionCallback& done, const std::string& version) argument
[all...]
H A Ddaemon_controller_delegate_linux.cc173 const DaemonController::CompletionCallback& done) {
183 done.Run(DaemonController::RESULT_FAILED);
192 done.Run(DaemonController::RESULT_FAILED);
201 done.Run(DaemonController::RESULT_FAILED);
212 done.Run(result);
217 const DaemonController::CompletionCallback& done) {
223 done.Run(DaemonController::RESULT_FAILED);
234 done.Run(result);
238 const DaemonController::CompletionCallback& done) {
246 done
170 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const DaemonController::CompletionCallback& done) argument
215 UpdateConfig( scoped_ptr<base::DictionaryValue> config, const DaemonController::CompletionCallback& done) argument
237 Stop( const DaemonController::CompletionCallback& done) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DExtensionAuditCategory.js93 done: function()
96 this._progress.done();
127 this.done();
H A DProgressIndicator.js69 done: function()
/external/chromium_org/third_party/WebKit/Source/web/
H A DApplicationCacheHost.cpp159 void ApplicationCacheHost::notifyApplicationCache(EventID id, int total, int done) argument
166 m_deferredEvents.append(DeferredEvent(id, total, done));
169 dispatchDOMEvent(id, total, done);
207 void ApplicationCacheHost::dispatchDOMEvent(EventID id, int total, int done) argument
213 event = ProgressEvent::create(eventType, true, done, total);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dasynchttprequest_unittest.cc77 bool done() const { return done_; } function in class:talk_base::AsyncHttpRequestTest
153 EXPECT_TRUE_WAIT(done(), 5000);
168 EXPECT_TRUE_WAIT(done(), 5000);
184 EXPECT_TRUE_WAIT(done(), 10000);
198 EXPECT_TRUE_WAIT(done(), 5000);
212 EXPECT_TRUE_WAIT(done(), 5000);
240 EXPECT_TRUE_WAIT(done(), 5000);
H A Dhttprequest.h116 bool done() const { return complete_; } function in class:talk_base::HttpMonitor

Completed in 2474 milliseconds

1234567891011>>