HomeSort by relevance Sort by last modified time
    Searched refs:cvarr (Results 1 - 6 of 6) sorted by null

  /external/libcxx/test/std/containers/views/span.cons/
ptr_ptr.fail.cpp 29 const volatile int cvarr[] = {1,3,5}; variable
46 std::span< int> s3{cvarr, cvarr + 3}; // expected-error {{no matching constructor for initialization of 'std::span<int>'}}
48 std::span<const int> s5{cvarr, cvarr + 3}; // expected-error {{no matching constructor for initialization of 'std::span<const int>'}}
50 std::span< volatile int> s7{cvarr, cvarr + 3}; // expected-error {{no matching constructor for initialization of 'std::span<volatile int>'}}
57 std::span< int,3> s3{cvarr, cvarr + 3}; // expected-error {{no matching constructor for initialization of 'std::span<int, 3>'}}
59 std::span<const int,3> s5{cvarr, cvarr + 3}; // expected-error {{no matching constructor for initialization of 'std::span<const (…)
    [all...]
array.fail.cpp 36 const volatile int cvarr[] = {1,3,5}; variable
55 std::span< int> s3{cvarr}; // expected-error {{no matching constructor for initialization of 'std::span<int>'}}
57 std::span<const int> s5{cvarr}; // expected-error {{no matching constructor for initialization of 'std::span<const int>'}}
59 std::span< volatile int> s7{cvarr}; // expected-error {{no matching constructor for initialization of 'std::span<volatile int>'}}
66 std::span< int,3> s3{cvarr}; // expected-error {{no matching constructor for initialization of 'std::span<int, 3>'}}
68 std::span<const int,3> s5{cvarr}; // expected-error {{no matching constructor for initialization of 'std::span<const int, 3>'}}
70 std::span< volatile int,3> s7{cvarr}; // expected-error {{no matching constructor for initialization of 'std::span<volatile int, 3>'}}
ptr_len.fail.cpp 29 const volatile int cvarr[] = {1,3,5}; variable
46 std::span< int> s3{cvarr, 3}; // expected-error {{no matching constructor for initialization of 'std::span<int>'}}
48 std::span<const int> s5{cvarr, 3}; // expected-error {{no matching constructor for initialization of 'std::span<const int>'}}
50 std::span< volatile int> s7{cvarr, 3}; // expected-error {{no matching constructor for initialization of 'std::span<volatile int>'}}
57 std::span< int,3> s3{cvarr, 3}; // expected-error {{no matching constructor for initialization of 'std::span<int, 3>'}}
59 std::span<const int,3> s5{cvarr, 3}; // expected-error {{no matching constructor for initialization of 'std::span<const int, 3>'}}
61 std::span< volatile int,3> s7{cvarr, 3}; // expected-error {{no matching constructor for initialization of 'std::span<volatile int, 3>'}}
ptr_ptr.pass.cpp 30 const volatile int cvarr[] = {1,3,5}; local
37 std::span<const volatile int> s4{cvarr, cvarr + 3}; // a span<const volatile int> pointing at const volatile int.
46 std::span<const volatile int,3> s4{cvarr, cvarr + 3}; // a span<const volatile int> pointing at const volatile int.
array.pass.cpp 35 const volatile int cvarr[] = {1,3,5}; local
42 std::span<const volatile int> s4{cvarr}; // a span<const volatile int> pointing at const volatile int.
51 std::span<const volatile int,3> s4{cvarr}; // a span<const volatile int> pointing at const volatile int.
ptr_len.pass.cpp 30 const volatile int cvarr[] = {1,3,5}; local
37 std::span<const volatile int> s4{cvarr, 3}; // a span<const volatile int> pointing at const volatile int.
46 std::span<const volatile int,3> s4{cvarr, 3}; // a span<const volatile int> pointing at const volatile int.

Completed in 853 milliseconds