| /external/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/ |
| D | size_pointer_size.pass.cpp | 72 test(S(""), 1, "", 0, S("can't happen")); in main() 73 test(S(""), 1, "12345", 0, S("can't happen")); in main() 74 test(S(""), 1, "12345", 1, S("can't happen")); in main() 75 test(S(""), 1, "12345", 2, S("can't happen")); in main() 76 test(S(""), 1, "12345", 4, S("can't happen")); in main() 77 test(S(""), 1, "12345", 5, S("can't happen")); in main() 78 test(S(""), 1, "1234567890", 0, S("can't happen")); in main() 79 test(S(""), 1, "1234567890", 1, S("can't happen")); in main() 80 test(S(""), 1, "1234567890", 5, S("can't happen")); in main() 81 test(S(""), 1, "1234567890", 9, S("can't happen")); in main() [all …]
|
| D | size_T_size_size.pass.cpp | 91 test(S(""), 0, SV(""), 1, 0, S("can't happen")); in test0() 114 test(S(""), 0, SV("12345"), 6, 0, S("can't happen")); in test0() 138 test(S(""), 0, SV("1234567890"), 11, 0, S("can't happen")); in test0() 167 test(S(""), 0, SV("12345678901234567890"), 21, 0, S("can't happen")); in test1() 168 test(S(""), 1, SV(""), 0, 0, S("can't happen")); in test1() 169 test(S(""), 1, SV(""), 0, 1, S("can't happen")); in test1() 170 test(S(""), 1, SV(""), 1, 0, S("can't happen")); in test1() 171 test(S(""), 1, SV("12345"), 0, 0, S("can't happen")); in test1() 172 test(S(""), 1, SV("12345"), 0, 1, S("can't happen")); in test1() 173 test(S(""), 1, SV("12345"), 0, 2, S("can't happen")); in test1() [all …]
|
| D | size_string_size_size.pass.cpp | 89 test(S(""), 0, S(""), 1, 0, S("can't happen")); in test0() 112 test(S(""), 0, S("12345"), 6, 0, S("can't happen")); in test0() 136 test(S(""), 0, S("1234567890"), 11, 0, S("can't happen")); in test0() 165 test(S(""), 0, S("12345678901234567890"), 21, 0, S("can't happen")); in test1() 166 test(S(""), 1, S(""), 0, 0, S("can't happen")); in test1() 167 test(S(""), 1, S(""), 0, 1, S("can't happen")); in test1() 168 test(S(""), 1, S(""), 1, 0, S("can't happen")); in test1() 169 test(S(""), 1, S("12345"), 0, 0, S("can't happen")); in test1() 170 test(S(""), 1, S("12345"), 0, 1, S("can't happen")); in test1() 171 test(S(""), 1, S("12345"), 0, 2, S("can't happen")); in test1() [all …]
|
| D | size_pointer.pass.cpp | 59 test(S(""), 1, "", S("can't happen")); in main() 60 test(S(""), 1, "12345", S("can't happen")); in main() 61 test(S(""), 1, "1234567890", S("can't happen")); in main() 62 test(S(""), 1, "12345678901234567890", S("can't happen")); in main() 83 test(S("abcde"), 6, "", S("can't happen")); in main() 84 test(S("abcde"), 6, "12345", S("can't happen")); in main() 85 test(S("abcde"), 6, "1234567890", S("can't happen")); in main() 86 test(S("abcde"), 6, "12345678901234567890", S("can't happen")); in main() 107 test(S("abcdefghij"), 11, "", S("can't happen")); in main() 108 test(S("abcdefghij"), 11, "12345", S("can't happen")); in main() [all …]
|
| D | size_size_char.pass.cpp | 60 test(S(""), 1, 0, '1', S("can't happen")); in main() 61 test(S(""), 1, 5, '1', S("can't happen")); in main() 62 test(S(""), 1, 10, '1', S("can't happen")); in main() 63 test(S(""), 1, 20, '1', S("can't happen")); in main() 84 test(S("abcde"), 6, 0, '1', S("can't happen")); in main() 85 test(S("abcde"), 6, 5, '1', S("can't happen")); in main() 86 test(S("abcde"), 6, 10, '1', S("can't happen")); in main() 87 test(S("abcde"), 6, 20, '1', S("can't happen")); in main() 108 test(S("abcdefghij"), 11, 0, '1', S("can't happen")); in main() 109 test(S("abcdefghij"), 11, 5, '1', S("can't happen")); in main() [all …]
|
| D | string_view.pass.cpp | 60 test(S(""), 1, SV(""), S("can't happen")); in main() 61 test(S(""), 1, SV("12345"), S("can't happen")); in main() 62 test(S(""), 1, SV("1234567890"), S("can't happen")); in main() 63 test(S(""), 1, SV("12345678901234567890"), S("can't happen")); in main() 84 test(S("abcde"), 6, SV(""), S("can't happen")); in main() 85 test(S("abcde"), 6, SV("12345"), S("can't happen")); in main() 86 test(S("abcde"), 6, SV("1234567890"), S("can't happen")); in main() 87 test(S("abcde"), 6, SV("12345678901234567890"), S("can't happen")); in main() 108 test(S("abcdefghij"), 11, SV(""), S("can't happen")); in main() 109 test(S("abcdefghij"), 11, SV("12345"), S("can't happen")); in main() [all …]
|
| D | size_string.pass.cpp | 59 test(S(""), 1, S(""), S("can't happen")); in main() 60 test(S(""), 1, S("12345"), S("can't happen")); in main() 61 test(S(""), 1, S("1234567890"), S("can't happen")); in main() 62 test(S(""), 1, S("12345678901234567890"), S("can't happen")); in main() 83 test(S("abcde"), 6, S(""), S("can't happen")); in main() 84 test(S("abcde"), 6, S("12345"), S("can't happen")); in main() 85 test(S("abcde"), 6, S("1234567890"), S("can't happen")); in main() 86 test(S("abcde"), 6, S("12345678901234567890"), S("can't happen")); in main() 107 test(S("abcdefghij"), 11, S(""), S("can't happen")); in main() 108 test(S("abcdefghij"), 11, S("12345"), S("can't happen")); in main() [all …]
|
| /external/cronet/tot/third_party/libc++/src/test/std/strings/basic.string/string.modifiers/string_insert/ |
| D | size_T_size_size.pass.cpp | 74 test(S(""), 0, SV(""), 1, 0, S("can't happen")); in test0() 97 test(S(""), 0, SV("12345"), 6, 0, S("can't happen")); in test0() 121 test(S(""), 0, SV("1234567890"), 11, 0, S("can't happen")); in test0() 151 test(S(""), 0, SV("12345678901234567890"), 21, 0, S("can't happen")); in test1() 152 test(S(""), 1, SV(""), 0, 0, S("can't happen")); in test1() 153 test(S(""), 1, SV(""), 0, 1, S("can't happen")); in test1() 154 test(S(""), 1, SV(""), 1, 0, S("can't happen")); in test1() 155 test(S(""), 1, SV("12345"), 0, 0, S("can't happen")); in test1() 156 test(S(""), 1, SV("12345"), 0, 1, S("can't happen")); in test1() 157 test(S(""), 1, SV("12345"), 0, 2, S("can't happen")); in test1() [all …]
|
| D | size_string_size_size.pass.cpp | 74 test(S(""), 0, S(""), 1, 0, S("can't happen")); in test0() 97 test(S(""), 0, S("12345"), 6, 0, S("can't happen")); in test0() 121 test(S(""), 0, S("1234567890"), 11, 0, S("can't happen")); in test0() 151 test(S(""), 0, S("12345678901234567890"), 21, 0, S("can't happen")); in test1() 152 test(S(""), 1, S(""), 0, 0, S("can't happen")); in test1() 153 test(S(""), 1, S(""), 0, 1, S("can't happen")); in test1() 154 test(S(""), 1, S(""), 1, 0, S("can't happen")); in test1() 155 test(S(""), 1, S("12345"), 0, 0, S("can't happen")); in test1() 156 test(S(""), 1, S("12345"), 0, 1, S("can't happen")); in test1() 157 test(S(""), 1, S("12345"), 0, 2, S("can't happen")); in test1() [all …]
|
| D | size_pointer_size.pass.cpp | 65 test(S(""), 1, "", 0, S("can't happen")); in test() 66 test(S(""), 1, "12345", 0, S("can't happen")); in test() 67 test(S(""), 1, "12345", 1, S("can't happen")); in test() 68 test(S(""), 1, "12345", 2, S("can't happen")); in test() 69 test(S(""), 1, "12345", 4, S("can't happen")); in test() 70 test(S(""), 1, "12345", 5, S("can't happen")); in test() 71 test(S(""), 1, "1234567890", 0, S("can't happen")); in test() 72 test(S(""), 1, "1234567890", 1, S("can't happen")); in test() 73 test(S(""), 1, "1234567890", 5, S("can't happen")); in test() 74 test(S(""), 1, "1234567890", 9, S("can't happen")); in test() [all …]
|
| D | size_string.pass.cpp | 51 test(S(""), 1, S(""), S("can't happen")); in test_string() 52 test(S(""), 1, S("12345"), S("can't happen")); in test_string() 53 test(S(""), 1, S("1234567890"), S("can't happen")); in test_string() 54 test(S(""), 1, S("12345678901234567890"), S("can't happen")); in test_string() 75 test(S("abcde"), 6, S(""), S("can't happen")); in test_string() 76 test(S("abcde"), 6, S("12345"), S("can't happen")); in test_string() 77 test(S("abcde"), 6, S("1234567890"), S("can't happen")); in test_string() 78 test(S("abcde"), 6, S("12345678901234567890"), S("can't happen")); in test_string() 99 test(S("abcdefghij"), 11, S(""), S("can't happen")); in test_string() 100 test(S("abcdefghij"), 11, S("12345"), S("can't happen")); in test_string() [all …]
|
| D | size_size_char.pass.cpp | 52 test(S(""), 1, 0, '1', S("can't happen")); in test_string() 53 test(S(""), 1, 5, '1', S("can't happen")); in test_string() 54 test(S(""), 1, 10, '1', S("can't happen")); in test_string() 55 test(S(""), 1, 20, '1', S("can't happen")); in test_string() 76 test(S("abcde"), 6, 0, '1', S("can't happen")); in test_string() 77 test(S("abcde"), 6, 5, '1', S("can't happen")); in test_string() 78 test(S("abcde"), 6, 10, '1', S("can't happen")); in test_string() 79 test(S("abcde"), 6, 20, '1', S("can't happen")); in test_string() 100 test(S("abcdefghij"), 11, 0, '1', S("can't happen")); in test_string() 101 test(S("abcdefghij"), 11, 5, '1', S("can't happen")); in test_string() [all …]
|
| D | string_view.pass.cpp | 50 test(S(""), 1, SV(""), S("can't happen")); in test_string() 51 test(S(""), 1, SV("12345"), S("can't happen")); in test_string() 52 test(S(""), 1, SV("1234567890"), S("can't happen")); in test_string() 53 test(S(""), 1, SV("12345678901234567890"), S("can't happen")); in test_string() 74 test(S("abcde"), 6, SV(""), S("can't happen")); in test_string() 75 test(S("abcde"), 6, SV("12345"), S("can't happen")); in test_string() 76 test(S("abcde"), 6, SV("1234567890"), S("can't happen")); in test_string() 77 test(S("abcde"), 6, SV("12345678901234567890"), S("can't happen")); in test_string() 98 test(S("abcdefghij"), 11, SV(""), S("can't happen")); in test_string() 99 test(S("abcdefghij"), 11, SV("12345"), S("can't happen")); in test_string() [all …]
|
| D | size_pointer.pass.cpp | 51 test(S(""), 1, "", S("can't happen")); in test_string() 52 test(S(""), 1, "12345", S("can't happen")); in test_string() 53 test(S(""), 1, "1234567890", S("can't happen")); in test_string() 54 test(S(""), 1, "12345678901234567890", S("can't happen")); in test_string() 75 test(S("abcde"), 6, "", S("can't happen")); in test_string() 76 test(S("abcde"), 6, "12345", S("can't happen")); in test_string() 77 test(S("abcde"), 6, "1234567890", S("can't happen")); in test_string() 78 test(S("abcde"), 6, "12345678901234567890", S("can't happen")); in test_string() 99 test(S("abcdefghij"), 11, "", S("can't happen")); in test_string() 100 test(S("abcdefghij"), 11, "12345", S("can't happen")); in test_string() [all …]
|
| /external/cronet/stable/third_party/libc++/src/test/std/strings/basic.string/string.modifiers/string_insert/ |
| D | size_T_size_size.pass.cpp | 74 test(S(""), 0, SV(""), 1, 0, S("can't happen")); in test0() 97 test(S(""), 0, SV("12345"), 6, 0, S("can't happen")); in test0() 121 test(S(""), 0, SV("1234567890"), 11, 0, S("can't happen")); in test0() 151 test(S(""), 0, SV("12345678901234567890"), 21, 0, S("can't happen")); in test1() 152 test(S(""), 1, SV(""), 0, 0, S("can't happen")); in test1() 153 test(S(""), 1, SV(""), 0, 1, S("can't happen")); in test1() 154 test(S(""), 1, SV(""), 1, 0, S("can't happen")); in test1() 155 test(S(""), 1, SV("12345"), 0, 0, S("can't happen")); in test1() 156 test(S(""), 1, SV("12345"), 0, 1, S("can't happen")); in test1() 157 test(S(""), 1, SV("12345"), 0, 2, S("can't happen")); in test1() [all …]
|
| D | size_string_size_size.pass.cpp | 74 test(S(""), 0, S(""), 1, 0, S("can't happen")); in test0() 97 test(S(""), 0, S("12345"), 6, 0, S("can't happen")); in test0() 121 test(S(""), 0, S("1234567890"), 11, 0, S("can't happen")); in test0() 151 test(S(""), 0, S("12345678901234567890"), 21, 0, S("can't happen")); in test1() 152 test(S(""), 1, S(""), 0, 0, S("can't happen")); in test1() 153 test(S(""), 1, S(""), 0, 1, S("can't happen")); in test1() 154 test(S(""), 1, S(""), 1, 0, S("can't happen")); in test1() 155 test(S(""), 1, S("12345"), 0, 0, S("can't happen")); in test1() 156 test(S(""), 1, S("12345"), 0, 1, S("can't happen")); in test1() 157 test(S(""), 1, S("12345"), 0, 2, S("can't happen")); in test1() [all …]
|
| D | size_pointer_size.pass.cpp | 65 test(S(""), 1, "", 0, S("can't happen")); in test() 66 test(S(""), 1, "12345", 0, S("can't happen")); in test() 67 test(S(""), 1, "12345", 1, S("can't happen")); in test() 68 test(S(""), 1, "12345", 2, S("can't happen")); in test() 69 test(S(""), 1, "12345", 4, S("can't happen")); in test() 70 test(S(""), 1, "12345", 5, S("can't happen")); in test() 71 test(S(""), 1, "1234567890", 0, S("can't happen")); in test() 72 test(S(""), 1, "1234567890", 1, S("can't happen")); in test() 73 test(S(""), 1, "1234567890", 5, S("can't happen")); in test() 74 test(S(""), 1, "1234567890", 9, S("can't happen")); in test() [all …]
|
| D | string_view.pass.cpp | 50 test(S(""), 1, SV(""), S("can't happen")); in test_string() 51 test(S(""), 1, SV("12345"), S("can't happen")); in test_string() 52 test(S(""), 1, SV("1234567890"), S("can't happen")); in test_string() 53 test(S(""), 1, SV("12345678901234567890"), S("can't happen")); in test_string() 74 test(S("abcde"), 6, SV(""), S("can't happen")); in test_string() 75 test(S("abcde"), 6, SV("12345"), S("can't happen")); in test_string() 76 test(S("abcde"), 6, SV("1234567890"), S("can't happen")); in test_string() 77 test(S("abcde"), 6, SV("12345678901234567890"), S("can't happen")); in test_string() 98 test(S("abcdefghij"), 11, SV(""), S("can't happen")); in test_string() 99 test(S("abcdefghij"), 11, SV("12345"), S("can't happen")); in test_string() [all …]
|
| D | size_string.pass.cpp | 51 test(S(""), 1, S(""), S("can't happen")); in test_string() 52 test(S(""), 1, S("12345"), S("can't happen")); in test_string() 53 test(S(""), 1, S("1234567890"), S("can't happen")); in test_string() 54 test(S(""), 1, S("12345678901234567890"), S("can't happen")); in test_string() 75 test(S("abcde"), 6, S(""), S("can't happen")); in test_string() 76 test(S("abcde"), 6, S("12345"), S("can't happen")); in test_string() 77 test(S("abcde"), 6, S("1234567890"), S("can't happen")); in test_string() 78 test(S("abcde"), 6, S("12345678901234567890"), S("can't happen")); in test_string() 99 test(S("abcdefghij"), 11, S(""), S("can't happen")); in test_string() 100 test(S("abcdefghij"), 11, S("12345"), S("can't happen")); in test_string() [all …]
|
| D | size_size_char.pass.cpp | 52 test(S(""), 1, 0, '1', S("can't happen")); in test_string() 53 test(S(""), 1, 5, '1', S("can't happen")); in test_string() 54 test(S(""), 1, 10, '1', S("can't happen")); in test_string() 55 test(S(""), 1, 20, '1', S("can't happen")); in test_string() 76 test(S("abcde"), 6, 0, '1', S("can't happen")); in test_string() 77 test(S("abcde"), 6, 5, '1', S("can't happen")); in test_string() 78 test(S("abcde"), 6, 10, '1', S("can't happen")); in test_string() 79 test(S("abcde"), 6, 20, '1', S("can't happen")); in test_string() 100 test(S("abcdefghij"), 11, 0, '1', S("can't happen")); in test_string() 101 test(S("abcdefghij"), 11, 5, '1', S("can't happen")); in test_string() [all …]
|
| D | size_pointer.pass.cpp | 51 test(S(""), 1, "", S("can't happen")); in test_string() 52 test(S(""), 1, "12345", S("can't happen")); in test_string() 53 test(S(""), 1, "1234567890", S("can't happen")); in test_string() 54 test(S(""), 1, "12345678901234567890", S("can't happen")); in test_string() 75 test(S("abcde"), 6, "", S("can't happen")); in test_string() 76 test(S("abcde"), 6, "12345", S("can't happen")); in test_string() 77 test(S("abcde"), 6, "1234567890", S("can't happen")); in test_string() 78 test(S("abcde"), 6, "12345678901234567890", S("can't happen")); in test_string() 99 test(S("abcdefghij"), 11, "", S("can't happen")); in test_string() 100 test(S("abcdefghij"), 11, "12345", S("can't happen")); in test_string() [all …]
|
| /external/pytorch/torch/csrc/inductor/aoti_runtime/ |
| D | thread_local.h | 14 throw std::runtime_error("can't happen"); 18 throw std::runtime_error("can't happen"); 26 throw std::runtime_error("can't happen"); 30 throw std::runtime_error("can't happen"); 38 throw std::runtime_error("can't happen"); 42 throw std::runtime_error("can't happen"); 93 throw std::runtime_error("can't happen"); 99 throw std::runtime_error("can't happen"); 104 throw std::runtime_error("can't happen"); 112 throw std::runtime_error("can't happen"); [all …]
|
| /external/accompanist/permissions-lint/src/test/java/com/google/accompanist/permissions/lint/ |
| D | PermissionsLaunchDetectorTest.kt | 101 …src/test.kt:7: Error: Calls to launchPermissionRequest should happen inside a regular lambda or a… in errors() 104 …src/test.kt:8: Error: Calls to launchMultiplePermissionRequest should happen inside a regular lamb… in errors() 107 …src/test.kt:12: Error: Calls to launchPermissionRequest should happen inside a regular lambda or … in errors() 110 …src/test.kt:13: Error: Calls to launchMultiplePermissionRequest should happen inside a regular lam… in errors() 113 …src/test.kt:17: Error: Calls to launchPermissionRequest should happen inside a regular lambda or … in errors() 116 …src/test.kt:18: Error: Calls to launchMultiplePermissionRequest should happen inside a regular lam… in errors() 119 …src/test.kt:27: Error: Calls to launchPermissionRequest should happen inside a regular lambda or … in errors() 122 …src/test.kt:28: Error: Calls to launchMultiplePermissionRequest should happen inside a regular lam… in errors() 125 …src/test.kt:31: Error: Calls to launchPermissionRequest should happen inside a regular lambda or … in errors() 128 …src/test.kt:32: Error: Calls to launchMultiplePermissionRequest should happen inside a regular lam… in errors() [all …]
|
| /external/cronet/stable/third_party/libc++/src/test/std/strings/basic.string/string.modifiers/string_replace/ |
| D | size_size_T_size_size.pass.cpp | 100 test(S(""), 0, 0, SV(""), 1, 0, S("can't happen")); in test0() 123 test(S(""), 0, 0, SV("12345"), 6, 0, S("can't happen")); in test0() 147 test(S(""), 0, 0, SV("1234567890"), 11, 0, S("can't happen")); in test0() 171 test(S(""), 0, 0, SV("12345678901234567890"), 21, 0, S("can't happen")); in test0() 174 test(S(""), 0, 1, SV(""), 1, 0, S("can't happen")); in test0() 197 test(S(""), 0, 1, SV("12345"), 6, 0, S("can't happen")); in test0() 227 test(S(""), 0, 1, SV("1234567890"), 11, 0, S("can't happen")); in test1() 251 test(S(""), 0, 1, SV("12345678901234567890"), 21, 0, S("can't happen")); in test1() 252 test(S(""), 1, 0, SV(""), 0, 0, S("can't happen")); in test1() 253 test(S(""), 1, 0, SV(""), 0, 1, S("can't happen")); in test1() [all …]
|
| /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/ |
| D | size_size_string_size_size.pass.cpp | 99 test(S(""), 0, 0, S(""), 1, 0, S("can't happen")); in test0() 122 test(S(""), 0, 0, S("12345"), 6, 0, S("can't happen")); in test0() 146 test(S(""), 0, 0, S("1234567890"), 11, 0, S("can't happen")); in test0() 170 test(S(""), 0, 0, S("12345678901234567890"), 21, 0, S("can't happen")); in test0() 173 test(S(""), 0, 1, S(""), 1, 0, S("can't happen")); in test0() 196 test(S(""), 0, 1, S("12345"), 6, 0, S("can't happen")); in test0() 225 test(S(""), 0, 1, S("1234567890"), 11, 0, S("can't happen")); in test1() 249 test(S(""), 0, 1, S("12345678901234567890"), 21, 0, S("can't happen")); in test1() 250 test(S(""), 1, 0, S(""), 0, 0, S("can't happen")); in test1() 251 test(S(""), 1, 0, S(""), 0, 1, S("can't happen")); in test1() [all …]
|