HomeSort by relevance Sort by last modified time
    Searched refs:async (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/libcxx/test/thread/futures/futures.async/
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
async.pass.cpp 14 // async(F&& f, Args&&... args);
18 // async(launch policy, F&& f, Args&&... args);
67 std::future<int> f = std::async(f0);
75 std::future<int> f = std::async(std::launch::async, f0);
83 std::future<int> f = std::async(std::launch::any, f0);
91 std::future<int> f = std::async(std::launch::deferred, f0);
100 std::future<int&> f = std::async(f1);
108 std::future<int&> f = std::async(std::launch::async, f1)
    [all...]
  /external/libcxx/test/thread/futures/futures.overview/
launch.pass.cpp 14 // async = 1,
16 // any = async | deferred
26 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
28 static_assert(std::launch::any == (std::launch::async | std::launch::deferred), "");
29 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), "");
30 static_assert(std::launch::any == (std::launch::async ^ std::launch::deferred), "");
31 static_assert(std::launch::deferred == ~std::launch::async, "");
32 std::launch x = std::launch::async;
35 x = std::launch::async;
39 assert(x == std::launch::async);
    [all...]
  /external/chromium_org/third_party/sinonjs/src/
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/chrome/renderer/resources/extensions/
input.ime_custom_bindings.js 26 if (!input_ime.onKeyEvent.async) {
32 input_ime.onKeyEvent.async = false;
35 if (opt_extraInfo[i] == "async") {
36 input_ime.onKeyEvent.async = true;
  /external/chromium_org/net/http/
http_auth_handler_unittest.cc 29 bool async = (i == 0); local
47 mock_handler.SetGenerateExpectation(async, rv);
50 if (async)
  /external/chromium_org/remoting/protocol/
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);
fake_authenticator.cc 19 FakeChannelAuthenticator::FakeChannelAuthenticator(bool accept, bool async)
21 async_(async),
93 Type type, int round_trips, Action action, bool async)
97 async_(async),
177 FakeAuthenticator::Action action, bool async)
180 action_(action), async_(async) {
  /external/chromium_org/third_party/sqlite/src/test/
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 {
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 67 ** protected by the async.queueMutex. As are the async.ioError and
68 ** async.nFile variables.
70 ** * The async.pLock list and all AsyncLock and AsyncFileLock
71 ** structures must be protected by the async.lockMutex mutex.
103 ** prepare the entry, acquire the async.queueMutex momentarily while
113 ** write-op queue. So async.queueMutex is held for the duration
128 ** The async.writerMutex is used to make sure only there is only
138 ** The async.queueMutex is always held during the <write-op list is
380 ** State information is held in the static variable "async" define
394 } async = { 0,0,0,0,0,1,0,0 }; variable in typeref:struct:TestAsyncStaticData
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/
default_app_order.h 24 // Constructs an ExternalLoader and starts file loading. |async| is true to
26 explicit ExternalLoader(bool async);
  /external/chromium_org/win8/metro_driver/
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);
  /external/chromium_org/base/prefs/
pref_service_factory.h 64 void set_async(bool async) {
65 async_ = async;
  /external/chromium_org/chrome/browser/extensions/
pack_extension_job.h 50 void set_asynchronous(bool async) { asynchronous_ = async; }
  /external/chromium_org/chrome/browser/prefs/
chrome_pref_service_factory.h 57 // If |async| is true, asynchronous version is used.
68 bool async);
78 bool async);
chrome_pref_service_factory.cc 401 bool async) {
424 factory->set_async(async);
456 bool async) {
465 async);
477 bool async) {
504 async);
  /external/chromium_org/remoting/webapp/
xhr_proxy.js 45 method, url, async, user, password) {
46 if (!async) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLScriptElement.idl 25 attribute boolean async;
HTMLScriptElement.cpp 123 void HTMLScriptElement::setAsync(bool async)
125 setBooleanAttribute(asyncAttr, async);
129 bool HTMLScriptElement::async() const function in class:blink::HTMLScriptElement
  /external/chromium_org/ui/file_manager/video_player/js/
test_util.js 13 * Public functions in the test.util.sync and the test.util.async namespaces are
17 * first argument. The functions in the test.util.async namespace are passed the
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/browser/prerender/
prerender_resource_throttle.h 61 bool async,
  /external/chromium_org/third_party/boringssl/src/ssl/test/
test_config.h 37 bool async; member in struct:TestConfig
bssl_shim.cc 385 if (config->async) {
386 BIO *async = local
388 BIO_push(async, bio);
389 bio = async;
407 } while (config->async && retry_async(ssl, ret, bio));
514 } while ((config->async && retry_async(ssl, w, bio)) ||
528 } while (config->async && retry_async(ssl, w, bio));
535 } while (config->async && retry_async(ssl, n, bio));
549 } while (config->async && retry_async(ssl, w, bio));
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.h 56 static PassRefPtrWillBeRawPtr<XHRReplayData> create(ExecutionContext*, const AtomicString& method, const KURL&, bool async, PassRefPtr<FormData>, bool includeCredentials);
61 bool async() const { return m_async; } function in class:blink::XHRReplayData
69 XHRReplayData(ExecutionContext*, const AtomicString& method, const KURL&, bool async, PassRefPtr<FormData>, bool includeCredentials);
  /external/chromium_org/chrome/common/extensions/docs/static/js/
site.js 8 var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;

Completed in 938 milliseconds

1 2 3 4 5 6 7