Home
last modified time | relevance | path

Searched refs:co_yield (Results 1 – 24 of 24) sorted by relevance

/external/clang/test/SemaCXX/
Dcoroutines.cpp54co_yield 0; // expected-error {{no member named 'yield_value' in 'std::coroutine_traits<double, in… in bad_promise_type_2()
83 co_yield 0; in yield()
84 co_yield {"foo", 1, 2}; in yield()
85co_yield {1e100}; // expected-error {{cannot be narrowed}} expected-note {{explicit cast}} expecte… in yield()
86co_yield {"foo", __LONG_LONG_MAX__}; // expected-error {{cannot be narrowed}} expected-note {{expl… in yield()
87 co_yield {"foo"}; in yield()
88 co_yield "foo"; // expected-error {{no matching}} in yield()
89 co_yield 1.0; in yield()
90 co_yield yield; // expected-error {{no member named 'await_ready' in 'not_awaitable'}} in yield()
105 co_yield 0; // expected-note {{use of 'co_yield'}} in mixed_yield()
[all …]
/external/llvm-project/clang/test/SemaCXX/
Dcoroutines.cpp12 co_yield a; // expected-error {{include <experimental/coroutine>}} in no_coroutine_traits_bad_arg_yield()
109co_yield 0; // expected-error {{no member named 'yield_value' in 'std::experimental::coroutine_tra… in bad_promise_type_2()
169 co_yield 0; in yield()
170 co_yield {"foo", 1, 2}; in yield()
171co_yield {1e100}; // expected-error {{cannot be narrowed}} expected-note {{explicit cast}} expecte… in yield()
172co_yield {"foo", __LONG_LONG_MAX__}; // expected-error {{cannot be narrowed}} expected-note {{expl… in yield()
173 co_yield {"foo"}; in yield()
174 co_yield "foo"; // expected-error {{no matching}} in yield()
175 co_yield 1.0; in yield()
176 co_yield yield; // expected-error {{no member named 'await_ready' in 'not_awaitable'}} in yield()
[all …]
Dcoroutine-uninitialized-warning-crash.cpp29 co_yield 42; in f()
37 co_yield 42; in g()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DIncrementalSAXSource_Filter.java226 co_yield(true); in characters()
240 co_yield(false); in endDocument()
248 co_yield(true); in endElement()
259 co_yield(true); in endPrefixMapping()
270 co_yield(true); in ignorableWhitespace()
281 co_yield(true); in processingInstruction()
303 co_yield(true); in skippedEntity()
317 co_yield(true); in startDocument()
329 co_yield(true); in startElement()
340 co_yield(true); in startPrefixMapping()
[all …]
/external/llvm-project/clang/test/Parser/
Dcxx1z-coroutines.cpp6 co_yield t; in f()
9 1 + co_yield t; // expected-error {{expected expression}} in f()
12 auto y = co_yield t; in f()
/external/clang/test/Parser/
Dcxx1z-coroutines.cpp6 co_yield t; in f()
9 1 + co_yield t; // expected-error {{expected expression}} in f()
12 auto y = co_yield t; in f()
/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
Dgenerator.pass.cpp61 co_yield i; in mini_count()
67 co_yield i; in count()
72 co_yield i; in range()
Dfullexpr-dtor.pass.cpp89 auto x = co_yield 42; in c()
102 (void)(co_yield 42); in d()
Dmultishot_func.pass.cpp61 co_yield f; in Create()
/external/llvm-project/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
Dgenerator.pass.cpp61 co_yield i; in mini_count()
67 co_yield i; in count()
72 co_yield i; in range()
Dfullexpr-dtor.pass.cpp88 auto x = co_yield 42; in c()
101 (void)(co_yield 42); in d()
Dmultishot_func.pass.cpp62 co_yield f; in Create()
/external/llvm-project/clang/test/CodeGenCoroutines/
Dcoro-await.cpp132 co_yield 42; in f1()
328 RefTag& z = co_yield 42; in AwaitReturnsLValue()
/external/llvm-project/clang/test/Lexer/
Dcxx2a_keyword_as_cxx17.cpp10 int co_yield = 0; // expected-warning {{'co_yield' is a keyword in C++20}} variable
Dcoroutines.cpp12 CORO_KEYWORD(co_yield);
/external/clang/test/Lexer/
Dcoroutines.cpp12 CORO_KEYWORD(co_yield);
/external/llvm-project/lldb/test/API/lang/c/cpp_keyword_identifiers/
Dmain.c27 int co_yield = 1; in main() local
/external/llvm-project/libcxx/test/libcxx/experimental/language.support/support.coroutines/
Ddialect_support.pass.cpp48 co_yield 42; in test_coro()
/external/libcxx/test/libcxx/experimental/language.support/support.coroutines/
Ddialect_support.sh.cpp49 co_yield 42; in test_coro()
/external/llvm-project/clang/test/PCH/
Dcoroutines.cpp59 co_yield 42; // checks coyield_expr in f()
/external/llvm-project/lldb/test/API/lang/objc/cpp_keyword_identifiers/
Dmain.m27 int co_yield = 1;
/external/clang/include/clang/Basic/
DTokenKinds.def367 KEYWORD(co_yield , KEYCOROUTINES)
DDiagnosticSemaKinds.td8421 "'%select{co_await|co_yield|co_return}0' here">;
8436 "that uses neither 'co_await' nor 'co_yield'">,
/external/llvm-project/clang/include/clang/Basic/
DTokenKinds.def397 COROUTINES_KEYWORD(co_yield)