Searched refs:testStr (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | array.d | 1116 void testStr(T, U)(string file = __FILE__, size_t line = __LINE__) in testStr() function 1136 testStr!(T[], U[])(); 2269 new AssertError("testStr failure 1", file, line)); in CheckOutput() 2271 new AssertError("testStr failure 2", file, line)); in CheckOutput() 2273 new AssertError("testStr failure 3", file, line)); in CheckOutput() 2275 new AssertError("testStr failure 4", file, line)); in CheckOutput() 2277 new AssertError("testStr failure 5", file, line)); in CheckOutput() 2496 new AssertError("testStr failure 1", file, line)); in CheckOutput() 2498 new AssertError("testStr failure 2", file, line)); in CheckOutput() 2500 new AssertError("testStr failure 3", file, line)); in CheckOutput() [all …]
|
H A D | utf.d | 3391 enum testStr = " hello ディラン"; variable 3392 char[testStr.length] s; 3394 foreach (c; testStr.byCodeUnit().byCodeUnit()) 3398 assert(s == testStr); 3401 enum testStr = " hello ディラン"w; variable 3402 wchar[testStr.length] s; 3404 foreach (c; testStr.byCodeUnit().byCodeUnit()) 3408 assert(s == testStr); 3411 enum testStr = " hello ディラン"d; variable 3412 dchar[testStr.length] s; [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | array.d | 1615 void testStr(T, U)(string file = __FILE__, size_t line = __LINE__) in testStr() function 1635 testStr!(T[], U[])(); 2885 void testStr(T, U)(string file = __FILE__, size_t line = __LINE__) in testStr() function 2903 testStr!(string, string)(); 2904 testStr!(string, wstring)(); 2905 testStr!(string, dstring)(); 2906 testStr!(wstring, string)(); 2907 testStr!(wstring, wstring)(); 2908 testStr!(wstring, dstring)(); 2909 testStr!(dstring, string)(); [all …]
|
H A D | utf.d | 3722 enum testStr = " hello ディラン"; 3723 char[testStr.length] s; 3725 foreach (c; testStr.byCodeUnit().byCodeUnit()) 3729 assert(s == testStr); 3732 enum testStr = " hello ディラン"w; 3733 wchar[testStr.length] s; 3735 foreach (c; testStr.byCodeUnit().byCodeUnit()) 3739 assert(s == testStr); 3742 enum testStr = " hello ディラン"d; 3743 dchar[testStr.length] s; [all …]
|