/external/libcxx/test/thread/futures/futures.overview/ |
D | launch.pass.cpp | 26 … (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), ""); in main() 28 static_assert(std::launch::any == (std::launch::async | std::launch::deferred), ""); in main() 29 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), ""); in main() 30 static_assert(std::launch::any == (std::launch::async ^ std::launch::deferred), ""); in main() 31 static_assert(std::launch::deferred == ~std::launch::async, ""); in main() 32 std::launch x = std::launch::async; in main() 35 x = std::launch::async; in main() 39 assert(x == std::launch::async); in main() 41 static_assert(static_cast<int>(std::launch::async) == 1, ""); in main()
|
/external/libcxx/test/thread/futures/futures.async/ |
D | async.pass.cpp | 67 std::future<int> f = std::async(f0); in main() 75 std::future<int> f = std::async(std::launch::async, f0); in main() 83 std::future<int> f = std::async(std::launch::any, f0); in main() 91 std::future<int> f = std::async(std::launch::deferred, f0); in main() 100 std::future<int&> f = std::async(f1); in main() 108 std::future<int&> f = std::async(std::launch::async, f1); in main() 116 std::future<int&> f = std::async(std::launch::any, f1); in main() 124 std::future<int&> f = std::async(std::launch::deferred, f1); in main() 133 std::future<void> f = std::async(f2); in main() 141 std::future<void> f = std::async(std::launch::async, f2); in main() [all …]
|
D | Android.mk | 17 test_makefile := external/libcxx/test/thread/futures/futures.async/Android.mk 19 test_name := thread/futures/futures.async/async 20 test_src := async.pass.cpp
|
/external/chromium_org/third_party/sqlite/src/ext/async/ |
D | sqlite3async.c | 394 } async = { 0,0,0,0,0,1,0,0 }; variable 546 if( async.pQueueLast ){ in addAsyncWrite() 547 assert( async.pQueueFirst ); in addAsyncWrite() 548 async.pQueueLast->pNext = pWrite; in addAsyncWrite() 550 async.pQueueFirst = pWrite; in addAsyncWrite() 552 async.pQueueLast = pWrite; in addAsyncWrite() 557 async.nFile--; in addAsyncWrite() 576 if( async.nFile==0 ){ in incrOpenFileCount() 577 async.ioError = SQLITE_OK; in incrOpenFileCount() 579 async.nFile++; in incrOpenFileCount() [all …]
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | async2.test | 18 # The async logic is not built into this system 85 do_test async-$err-1.1.$n { 92 do_test async-$err-1.2.$n.1 { 97 do_test async-$err-1.2.$n.2 { 104 do_test async-$err-1.3.$n.1 { 109 do_test async-$err-1.3.$n.2 {
|
D | async.test | 9 # $Id: async.test,v 1.21 2009/06/05 17:09:12 drh Exp $ 15 # The async logic is not built into this system 46 # This proc flushes the contents of the async-IO queue through to the 49 # this is required for the tests to work in async mode.
|
/external/lldb/examples/test/tmp/ |
D | lldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dwarf.txt | 11 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0997600, pid = 0) threa… 12 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0997600, pid = 0) liste… 37 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1882000, pid = 55289) G… 38 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1882000, pid = 55289) g… 39 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1882000, pid = 55289) t… 52 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0bed200, pid = 55292) G… 53 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0bed200, pid = 55292) g… 54 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc0bed200, pid = 55292) t…
|
D | lldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dsym.txt | 11 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1883400, pid = 0) threa… 12 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc1883400, pid = 0) liste… 38 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc185e200, pid = 55239) g… 39 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc185e200, pid = 55239) t… 52 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc18f8600, pid = 55243) G… 53 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc18f8600, pid = 55243) g… 54 <lldb.process.gdb-remote.async> ProcessGDBRemote::AsyncThread (arg = 0x7fabc18f8600, pid = 55243) t…
|
/external/chromium_org/remoting/protocol/ |
D | fake_authenticator.cc | 19 FakeChannelAuthenticator::FakeChannelAuthenticator(bool accept, bool async) in FakeChannelAuthenticator() argument 21 async_(async), in FakeChannelAuthenticator() 93 Type type, int round_trips, Action action, bool async) in FakeAuthenticator() argument 97 async_(async), in FakeAuthenticator() 177 FakeAuthenticator::Action action, bool async) in FakeHostAuthenticatorFactory() argument 180 action_(action), async_(async) { in FakeHostAuthenticatorFactory()
|
D | fake_authenticator.h | 18 FakeChannelAuthenticator(bool accept, bool async); 59 FakeAuthenticator(Type type, int round_trips, Action action, bool async); 96 FakeAuthenticator::Action action, bool async);
|
/external/chromium_org/third_party/polymer/components-chromium/paper-input/ |
D | paper-input-extracted.js | 138 this.async(function() { 188 this.async(function() { 212 this.underlineAsync = this.async(function() { 249 this.async(function() { 256 this.async(function() { 277 this.async(function() { 311 this.async(function() {
|
/external/chromium_org/third_party/polymer/components-chromium/core-collapse/ |
D | core-collapse-extracted.js | 68 this.async(function() { 125 this.async('transitionEnd'); 187 this.async(function() { 203 this.async(function() {
|
/external/chromium_org/ui/file_manager/video_player/js/ |
D | test_util.js | 30 test.util.async = {}; 101 if (test.util.async[request.func]) { 102 args[test.util.async[request.func].length - 1] = function() { 107 test.util.async[request.func].apply(null, args);
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
D | input.ime_custom_bindings.js | 26 if (!input_ime.onKeyEvent.async) { 32 input_ime.onKeyEvent.async = false; 36 input_ime.onKeyEvent.async = true;
|
D | downloads_custom_bindings.js | 55 var async = (results && 59 if (suggestable && !async)
|
/external/chromium_org/win8/metro_driver/ |
D | file_picker_ash.h | 105 HRESULT SinglePickerDone(SingleFileAsyncOp* async, AsyncStatus status); 108 HRESULT MultiPickerDone(MultiFileAsyncOp* async, AsyncStatus status); 141 HRESULT FilePickerDone(SaveFileAsyncOp* async, AsyncStatus status); 161 HRESULT FolderPickerDone(FolderPickerAsyncOp* async, AsyncStatus status);
|
D | file_picker.cc | 127 HRESULT SinglePickerDone(SingleFileAsyncOp* async, AsyncStatus status); 130 HRESULT MultiPickerDone(MultiFileAsyncOp* async, AsyncStatus status); 151 HRESULT FilePickerDone(SaveFileAsyncOp* async, AsyncStatus status); 198 HRESULT OpenFilePickerSession::SinglePickerDone(SingleFileAsyncOp* async, in SinglePickerDone() argument 202 HRESULT hr = async->GetResults(file.GetAddressOf()); in SinglePickerDone() 239 HRESULT OpenFilePickerSession::MultiPickerDone(MultiFileAsyncOp* async, in MultiPickerDone() argument 243 HRESULT hr = async->GetResults(files.GetAddressOf()); in MultiPickerDone() 570 HRESULT SaveFilePickerSession::FilePickerDone(SaveFileAsyncOp* async, in FilePickerDone() argument 574 HRESULT hr = async->GetResults(file.GetAddressOf()); in FilePickerDone()
|
/external/chromium_org/net/http/ |
D | http_auth_handler_unittest.cc | 29 bool async = (i == 0); in TEST() local 47 mock_handler.SetGenerateExpectation(async, rv); in TEST() 50 if (async) in TEST()
|
/external/chromium_org/third_party/polymer/components-chromium/core-ajax/ |
D | core-xhr-extracted.js | 25 var async = !options.sync; 33 xhr.open(method, url, async); 43 if (!async) {
|
/external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/ |
D | nacltest.js | 89 this.async = false; 138 if (this_.async) { 146 req.open('GET', url, this_.async); 148 if (!this_.async) { 690 function TestStatus(tester, name, async) { argument 695 this.async = async; 763 if (!this.async) { 880 tests.push({name: name, callback: testFunction, async: false}); 885 tests.push({name: name, callback: testFunction, async: true}); 937 var currentTest = new TestStatus(this, testDecl.name, testDecl.async);
|
/external/chromium_org/third_party/boringssl/src/ssl/test/ |
D | bssl_shim.cc | 385 if (config->async) { in do_exchange() 386 BIO *async = in do_exchange() local 388 BIO_push(async, bio); in do_exchange() 389 bio = async; in do_exchange() 407 } while (config->async && retry_async(ssl, ret, bio)); in do_exchange() 514 } while ((config->async && retry_async(ssl, w, bio)) || in do_exchange() 528 } while (config->async && retry_async(ssl, w, bio)); in do_exchange() 535 } while (config->async && retry_async(ssl, n, bio)); in do_exchange() 549 } while (config->async && retry_async(ssl, w, bio)); in do_exchange()
|
/external/chromium_org/chrome/browser/prefs/ |
D | chrome_pref_service_factory.cc | 401 bool async) { in PrepareFactory() argument 424 factory->set_async(async); in PrepareFactory() 456 bool async) { in CreateLocalState() argument 465 async); in CreateLocalState() 477 bool async) { in CreateProfilePrefs() argument 504 async); in CreateProfilePrefs()
|
/external/chromium_org/third_party/sinonjs/src/ |
D | sinon-qunit.js | 54 QUnit.test = global.test = function (testName, expected, callback, async) { 60 return qTest(testName, expected, sinon.test(callback), async);
|
/external/chromium_org/remoting/webapp/unittests/ |
D | base_unittest.js | 123 function async() { 129 async().then(function(value){ 138 function async() { 144 async().then(function(){
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLScriptElement.cpp | 123 void HTMLScriptElement::setAsync(bool async) in setAsync() argument 125 setBooleanAttribute(asyncAttr, async); in setAsync() 129 bool HTMLScriptElement::async() const in async() function in blink::HTMLScriptElement
|