Searched refs:varr (Results 1 – 8 of 8) sorted by relevance
/external/libcxx/test/std/containers/views/span.cons/ |
D | ptr_ptr.fail.cpp | 28 volatile int varr[] = {7,8,9}; variable 45 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main() 47 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main() 56 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main() 58 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
|
D | ptr_ptr.pass.cpp | 29 volatile int varr[] = {7,8,9}; in checkCV() local 36 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV() 45 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV() 58 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV() 69 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
|
D | ptr_len.fail.cpp | 28 volatile int varr[] = {7,8,9}; variable 45 …std::span< int> s2{ varr, 3}; // expected-error {{no matching constructor for initia… in main() 47 …std::span<const int> s4{ varr, 3}; // expected-error {{no matching constructor for initia… in main() 56 …std::span< int,3> s2{ varr, 3}; // expected-error {{no matching constructor for in… in main() 58 …std::span<const int,3> s4{ varr, 3}; // expected-error {{no matching constructor for in… in main()
|
D | array.fail.cpp | 35 volatile int varr[] = {7,8,9}; variable 54 …std::span< int> s2{ varr}; // expected-error {{no matching constructor for initia… in main() 56 …std::span<const int> s4{ varr}; // expected-error {{no matching constructor for initia… in main() 65 …std::span< int,3> s2{ varr}; // expected-error {{no matching constructor for initia… in main() 67 …std::span<const int,3> s4{ varr}; // expected-error {{no matching constructor for initia… in main()
|
D | ptr_len.pass.cpp | 29 volatile int varr[] = {7,8,9}; in checkCV() local 36 …std::span< volatile int> s3{ varr, 3}; // a span< volatile int> pointing at volatile int. in checkCV() 45 …std::span< volatile int,3> s3{ varr, 3}; // a span< volatile int> pointing at volatile… in checkCV() 58 …std::span<const volatile int> s6{varr, 3}; // a span<const volatile int> pointing at volatile… in checkCV() 69 …std::span<const volatile int,3> s6{varr, 3}; // a span<const volatile int> pointing at volatile… in checkCV()
|
D | array.pass.cpp | 34 volatile int varr[] = {7,8,9}; in checkCV() local 41 …std::span< volatile int> s3{ varr}; // a span< volatile int> pointing at volatile int. in checkCV() 50 …std::span< volatile int,3> s3{ varr}; // a span< volatile int> pointing at volatile int. in checkCV() 63 …std::span<const volatile int> s6{varr}; // a span<const volatile int> pointing at volatile int. in checkCV() 74 …std::span<const volatile int,3> s6{varr}; // a span<const volatile int> pointing at volatile int. in checkCV()
|
/external/deqp/modules/gles3/functional/ |
D | es3fLifetimeTests.cpp | 272 void BufferVAOAttacher::detach (GLuint buffer, GLuint varr) in detach() argument 275 attach(0, varr); in detach() 278 GLuint BufferVAOAttacher::getAttachment (GLuint varr) in getAttachment() argument 281 gl().bindVertexArray(varr); in getAttachment()
|
/external/clang/test/Sema/ |
D | ast-print.c | 33 int varr(int n, int a[static n]) { in varr() function
|