Home
last modified time | relevance | path

Searched refs:varr (Results 1 – 8 of 8) sorted by relevance

/external/libcxx/test/std/containers/views/span.cons/
Dptr_ptr.fail.cpp28 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()
Dptr_ptr.pass.cpp29 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()
Dptr_len.fail.cpp28 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()
Darray.fail.cpp35 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()
Dptr_len.pass.cpp29 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()
Darray.pass.cpp34 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/
Des3fLifetimeTests.cpp272 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/
Dast-print.c33 int varr(int n, int a[static n]) { in varr() function