Home
last modified time | relevance | path

Searched refs:deferred (Results 1 – 25 of 41) sorted by relevance

12

/llvm-project-15.0.7/libcxx/test/std/thread/futures/futures.overview/
H A Dlaunch.pass.cpp29 … (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), ""); in main()
31 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async | std::launch::deferred), ""); in main()
32 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), ""); in main()
33 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async ^ std::launch::deferred), ""); in main()
34 LIBCPP_STATIC_ASSERT(std::launch::deferred == ~std::launch::async, ""); in main()
36 x &= std::launch::deferred; in main()
39 x |= std::launch::deferred; in main()
41 x ^= std::launch::deferred; in main()
45 static_assert(static_cast<int>(std::launch::deferred) == 2, ""); in main()
H A Dfuture_status.pass.cpp28 static_assert(static_cast<int>(std::future_status::deferred) == 2, ""); in main()
/llvm-project-15.0.7/flang/test/Semantics/
H A Dresolve80.f9017 procedure(subPublic), public, deferred, public :: publicBinding
19 procedure(subPrivate), private, deferred, private :: privateBinding
21 procedure(subDeferred), deferred, public, deferred :: deferredBinding
25 procedure(subNopass), nopass, deferred, nopass :: nopassBinding
27 procedure(subPass), pass, deferred, pass :: passBinding
29 procedure(subPassNopass), pass, deferred, nopass :: passNopassBinding ! C781
H A Dresolve32.f9031 procedure, nopass, deferred :: d => s
48 procedure(foo), nopass, deferred :: e
49 procedure(s), nopass, deferred :: f
51 procedure(foo), nopass, deferred :: f
53 procedure(bar), nopass, deferred :: h
H A Dmodfile10.f9013 procedure(a), deferred, nopass :: q
14 procedure(b), deferred, nopass :: p, r
25 procedure(a), deferred, public, nopass :: e
H A Dbindings01.f9019 procedure(s1), deferred, non_overridable :: ab3
21 procedure, deferred, non_overridable :: ab4 => s1
36 procedure(s4), deferred :: am1
66 procedure(s2), deferred :: bb1
68 procedure, deferred :: bb2 => s2
H A Dresolve20.f9061 procedure(proc), deferred :: p1
/llvm-project-15.0.7/flang/lib/Parser/
H A Dinstrumented-parser.cpp37 if (entry.deferred && !state.deferMessages()) { in Fails()
53 entry.deferred = state.deferMessages(); in Note()
54 if (!entry.deferred) { in Note()
59 if (entry.deferred && !state.deferMessages()) { in Note()
60 entry.deferred = false; in Note()
/llvm-project-15.0.7/libcxx/test/std/thread/futures/futures.async/
H A Dasync.pass.cpp113 std::launch AnyPolicy = std::launch::async | std::launch::deferred; in main()
120 test<int>(checkInt, true, std::launch::deferred, f0); in main()
127 test<int&>(checkIntRef, true, std::launch::deferred, f1); in main()
134 test<void>(checkVoid, true, std::launch::deferred, f2); in main()
150 std::future<void> f = std::async(std::launch::deferred, f5, 3); in main()
H A Dasync_race.pass.cpp59 std::future<int> f = std::async(std::launch::deferred, f_deferred); in test_each()
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Ddistringtype.ll3 ;; dynamic parameter as in a deferred-length CHARACTER. LLVM after
22 ;; sample fortran testcase involving deferred and assumed length string types.
24 ;; character(len=:), allocatable :: deferred
25 ;; allocate(character(10)::deferred)
150 !1 = distinct !DIGlobalVariable(name: "deferred", linkageName: "assumedlength_$DEFERRED", scope: !2…
/llvm-project-15.0.7/libcxx/src/
H A Dfuture.cpp152 if (__state_ & static_cast<unsigned>(deferred)) in __sub_wait()
154 __state_ &= ~static_cast<unsigned>(deferred); in __sub_wait()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/
H A DSymbolIndexManager.h39 auto Strategy = std::launch::deferred; in addSymbolIndex()
/llvm-project-15.0.7/libcxx/include/
H A Dfuture30 deferred = 2,
31 any = async | deferred
38 deferred
81 // setting the result with deferred notification
110 // setting the result with deferred notification
417 deferred = 2,
418 any = async | deferred
489 deferred
555 deferred = 8
608 if (__state_ & deferred)
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/concurrency/
H A Dthread-canceltype-asynchronous.rst9 ``PTHREAD_CANCEL_DEFERRED`` instead which is the default. Even with deferred
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dinstrumented-parser.h42 bool deferred{false};
/llvm-project-15.0.7/llvm/test/DebugInfo/
H A Dfortran-string-type.ll3 ;; when LEN is a dynamic parameter as in a deferred-length CHARACTER. (See
/llvm-project-15.0.7/llvm/test/Bitcode/
H A Ddistringtype-backward.ll37 !1 = distinct !DIGlobalVariable(name: "deferred", linkageName: "assumedlength_$DEFERRED", scope: !2…
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dunused-return-value.cpp9 deferred enumerator
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DThreadPool.h173 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl()
/llvm-project-15.0.7/lld/test/wasm/
H A Dweak-undefined-pic.s74 # With `-pie` or `-shared` the resolution should be deferred to the dynamic
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DMutableBox.cpp139 const auto &deferred = box.getMutableProperties().deferredParams; in readCharacterLength() local
140 if (deferred.empty()) in readCharacterLength()
142 return builder.create<fir::LoadOp>(loc, deferred[0]); in readCharacterLength()
/llvm-project-15.0.7/flang/docs/
H A Df2018-grammar.md152 explicit-shape-spec-list | deferred-shape-spec-list
223 R809 coarray-spec -> deferred-coshape-spec-list | explicit-coshape-spec
224 R810 deferred-coshape-spec -> :
232 deferred-shape-spec-list | assumed-size-spec | implied-shape-spec |
238 R820 deferred-shape-spec -> :
283 object-name [( deferred-shape-spec-list )] | proc-entity-name
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dmod-file.cpp287 bool deferred{symbol.attrs().test(Attr::DEFERRED)}; in PutSymbol() local
289 if (deferred) { in PutSymbol()
299 if (!deferred && x.symbol().name() != symbol.name()) { in PutSymbol()
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx14Issues.csv96 "`2120 <https://wg21.link/lwg2120>`__","What should async do if neither 'async' nor 'deferred' is s…
155 "`2186 <https://wg21.link/lwg2186>`__","Incomplete action on async/launch::deferred","Issaquah","|C…

12