/external/libcxx/test/std/containers/views/span.cons/ |
D | ptr_ptr.fail.cpp | 27 const int carr[] = {4,5,6}; variable 44 …std::span< int> s1{ carr, carr + 3}; // expected-error {{no matching constructor fo… in main() 49 …std::span< volatile int> s6{ carr, carr + 3}; // expected-error {{no matching constructor fo… in main() 55 …std::span< int,3> s1{ carr, carr + 3}; // expected-error {{no matching constructo… in main() 60 …std::span< volatile int,3> s6{ carr, carr + 3}; // expected-error {{no matching constructo… in main()
|
D | ptr_ptr.pass.cpp | 28 const int carr[] = {4,5,6}; in checkCV() local 35 …std::span<const int> s2{ carr, carr + 3}; // a span<const int> pointing at cons… in checkCV() 44 …std::span<const int,3> s2{ carr, carr + 3}; // a span<const int> pointing at … in checkCV() 57 …std::span<const volatile int> s5{carr, carr + 3}; // a span<const volatile int> pointing at … in checkCV() 68 …std::span<const volatile int,3> s5{carr, carr + 3}; // a span<const volatile int> pointing at cons… in checkCV()
|
D | ptr_len.fail.cpp | 27 const int carr[] = {4,5,6}; variable 44 …std::span< int> s1{ carr, 3}; // expected-error {{no matching constructor for initia… in main() 49 …std::span< volatile int> s6{ carr, 3}; // expected-error {{no matching constructor for initia… in main() 55 …std::span< int,3> s1{ carr, 3}; // expected-error {{no matching constructor for in… in main() 60 …std::span< volatile int,3> s6{ carr, 3}; // expected-error {{no matching constructor for in… in main()
|
D | array.fail.cpp | 34 const int carr[] = {4,5,6}; variable 53 …std::span< int> s1{ carr}; // expected-error {{no matching constructor for initia… in main() 58 …std::span< volatile int> s6{ carr}; // expected-error {{no matching constructor for initia… in main() 64 …std::span< int,3> s1{ carr}; // expected-error {{no matching constructor for initia… in main() 69 …std::span< volatile int,3> s6{ carr}; // expected-error {{no matching constructor for initia… in main()
|
D | copy.pass.cpp | 48 constexpr int carr[] = {1,2,3}; in main() local 52 static_assert(doCopy(std::span<const int> (&carr[0], 1)), ""); in main() 53 static_assert(doCopy(std::span<const int,1>(&carr[0], 1)), ""); in main() 54 static_assert(doCopy(std::span<const int> (&carr[0], 2)), ""); in main() 55 static_assert(doCopy(std::span<const int,2>(&carr[0], 2)), ""); in main()
|
D | ptr_len.pass.cpp | 28 const int carr[] = {4,5,6}; in checkCV() local 35 std::span<const int> s2{ carr, 3}; // a span<const int> pointing at const int. in checkCV() 44 …std::span<const int,3> s2{ carr, 3}; // a span<const int> pointing at const in… in checkCV() 57 …std::span<const volatile int> s5{carr, 3}; // a span<const volatile int> pointing at const in… in checkCV() 68 …std::span<const volatile int,3> s5{carr, 3}; // a span<const volatile int> pointing at const in… in checkCV()
|
D | array.pass.cpp | 33 const int carr[] = {4,5,6}; in checkCV() local 40 std::span<const int> s2{ carr}; // a span<const int> pointing at const int. in checkCV() 49 std::span<const int,3> s2{ carr}; // a span<const int> pointing at const int. in checkCV() 62 std::span<const volatile int> s5{carr}; // a span<const volatile int> pointing at const int. in checkCV() 73 std::span<const volatile int,3> s5{carr}; // a span<const volatile int> pointing at const int. in checkCV()
|
/external/icu/icu4c/source/data/unit/ |
D | fr_CA.txt | 13 one{"{0} mètre par seconde carrée"} 14 other{"{0} mètres par seconde carrée"} 46 one{"{0} centimètre carré"} 47 other{"{0} centimètres carrés"} 50 one{"{0} pied carré"} 51 other{"{0} pieds carrés"} 54 one{"{0} pouce carré"} 55 other{"{0} pouces carrés"} 58 one{"{0} kilomètre carré"} 59 other{"{0} kilomètres carrés"} [all …]
|
D | fr.txt | 18 dnam{"mètres par seconde carrée"} 19 one{"{0} mètre par seconde carrée"} 20 other{"{0} mètres par seconde carrée"} 62 dnam{"centimètres carrés"} 63 one{"{0} centimètre carré"} 64 other{"{0} centimètres carrés"} 65 per{"{0} par centimètre carré"} 68 dnam{"pieds carrés"} 69 one{"{0} pied carré"} 70 other{"{0} pieds carrés"} [all …]
|
/external/webrtc/webrtc/base/ |
D | array_view_unittest.cc | 29 const char carr[] = "Carrr!"; in TEST() local 31 Call<const char>(carr); in TEST()
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ucbuf.cpp | 167 char carr[MAX_IN_BUF] = {'\0'}; in ucbuf_fillucbuf() local 168 char* cbuf = carr; in ucbuf_fillucbuf() 315 if(cbuf!=carr){ in ucbuf_fillucbuf()
|
/external/icu/icu4c/source/test/intltest/ |
D | ustrtest.cpp | 2192 static const uint16_t carr[] = { 0x61, 0x62, 0x63, 0 }; in TestUInt16Pointers() local 2196 assertEquals("abc from pointer", expected, UnicodeString(carr)); in TestUInt16Pointers() 2197 assertEquals("abc from pointer+length", expected, UnicodeString(carr, 3)); in TestUInt16Pointers() 2198 assertEquals("abc from read-only-alias pointer", expected, UnicodeString(TRUE, carr, 3)); in TestUInt16Pointers() 2214 static const wchar_t carr[] = { 0x61, 0x62, 0x63, 0 }; in TestWCharPointers() local 2218 assertEquals("abc from pointer", expected, UnicodeString(carr)); in TestWCharPointers() 2219 assertEquals("abc from pointer+length", expected, UnicodeString(carr, 3)); in TestWCharPointers() 2220 assertEquals("abc from read-only-alias pointer", expected, UnicodeString(TRUE, carr, 3)); in TestWCharPointers()
|
/external/Microsoft-GSL/tests/ |
D | strided_span_tests.cpp | 89 const int carr[] = {1, 2, 3, 4, 5, 6, 7, 8, 9}; variable 96 strided_span<const int, 1> sav2{carr, {{4}, {2}}}; // const T -> const T
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_raw_IPA-old.txt | 31305 carr %30173 kɑr, ˈæntwɑn 31306 carr's kɑrz 31421 carrà %8777 31422 carré %15782
|
D | internal_raw_IPA.txt | 26515 carr %38635 kɑr, ˈæntwɑn 26516 carr's %36224 kɑrz
|