/aosp_15_r20/external/truth/core/src/test/java/com/google/common/truth/ |
H A D | ComparisonFailureWithFactsTest.java | 19 import static com.google.common.base.Strings.repeat; 53 repeat("b", 100) + "aa", in formatLongOverlapStart() 54 repeat("b", 100) + "oo", in formatLongOverlapStart() 55 "…" + repeat("b", 20) + "aa", in formatLongOverlapStart() 56 "…" + repeat("b", 20) + "oo"); in formatLongOverlapStart() 62 "ba" + repeat("r", 100), in formatLongOverlapEnd() 63 "fu" + repeat("r", 100), in formatLongOverlapEnd() 64 "ba" + repeat("r", 20) + "…", in formatLongOverlapEnd() 65 "fu" + repeat("r", 20) + "…"); in formatLongOverlapEnd() 71 repeat("b", 100) + "aa" + repeat("t", 7), in formatLongOverlapStartAlsoSmallAtEnd() [all …]
|
/aosp_15_r20/external/deqp/external/vulkancts/mustpass/main/vksc-default/ |
H A D | texture.txt | 519 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.clamp_to_border.repeat 524 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.clamp_to_edge.repeat 529 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.mirror_clamp_to_edge.repeat 534 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.mirrored_repeat.repeat 535 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.repeat.clamp_to_border 536 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.repeat.clamp_to_edge 537 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.repeat.mirror_clamp_to_edge 538 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.repeat.mirrored_repeat 539 dEQP-VKSC.texture.filtering.2d.combinations.cubic.cubic.repeat.repeat 544 dEQP-VKSC.texture.filtering.2d.combinations.cubic.linear.clamp_to_border.repeat [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/test/qi/ |
D | repeat.cpp | 57 using boost::spirit::qi::repeat; in main() 65 BOOST_TEST(test("aaaaaaaa", repeat[char_])); // kleene synonym in main() 66 BOOST_TEST(test("aaaaaaaa", repeat(8)[char_])); in main() 67 BOOST_TEST(!test("aa", repeat(3)[char_])); in main() 69 BOOST_TEST(test("aaa", repeat(3, 5)[char_])); in main() 70 BOOST_TEST(test("aaaaa", repeat(3, 5)[char_])); in main() 71 BOOST_TEST(!test("aaaaaa", repeat(3, 5)[char_])); in main() 72 BOOST_TEST(!test("aa", repeat(3, 5)[char_])); in main() 74 BOOST_TEST(test("aaa", repeat(3, inf)[char_])); in main() 75 BOOST_TEST(test("aaaaa", repeat(3, inf)[char_])); in main() [all …]
|
/aosp_15_r20/external/deqp/android/cts/main/vk-main-2019-03-01/ |
H A D | texture.txt | 221 dEQP-VK.texture.filtering.2d.combinations.linear.linear.clamp_to_border.repeat 226 dEQP-VK.texture.filtering.2d.combinations.linear.linear.clamp_to_edge.repeat 231 dEQP-VK.texture.filtering.2d.combinations.linear.linear.mirror_clamp_to_edge.repeat 236 dEQP-VK.texture.filtering.2d.combinations.linear.linear.mirrored_repeat.repeat 237 dEQP-VK.texture.filtering.2d.combinations.linear.linear.repeat.clamp_to_border 238 dEQP-VK.texture.filtering.2d.combinations.linear.linear.repeat.clamp_to_edge 239 dEQP-VK.texture.filtering.2d.combinations.linear.linear.repeat.mirror_clamp_to_edge 240 dEQP-VK.texture.filtering.2d.combinations.linear.linear.repeat.mirrored_repeat 241 dEQP-VK.texture.filtering.2d.combinations.linear.linear.repeat.repeat 246 dEQP-VK.texture.filtering.2d.combinations.linear.nearest.clamp_to_border.repeat [all …]
|
/aosp_15_r20/libcore/ojluni/src/test/java/lang/String/ |
H A D | StringRepeat.java | 26 * @summary This exercises String#repeat patterns and limits. 44 * Varitions of repeat count. 62 * Repeat String function tests. 67 for (int repeat : REPEATS) { in test1() 69 long limit = (long)string.length() * (long)repeat; in test1() 77 // Android-changed: call wrappered repeat() to avoid d8 backport (b/191859202). in test1() 78 // verify(string.repeat(repeat), string, repeat); in test1() 79 verify(String_repeat(string, repeat), string, repeat); in test1() local 85 * Repeat String exception tests. 90 // Android-changed: call wrappered repeat() to avoid d8 backport (b/191859202). in test2() [all …]
|
/aosp_15_r20/external/okio/okio/src/jvmTest/kotlin/okio/ |
H A D | BufferTest.kt | 88 buffer.writeUtf8("a".repeat(1000)) in multipleSegmentBuffers() 89 buffer.writeUtf8("b".repeat(2500)) in multipleSegmentBuffers() 90 buffer.writeUtf8("c".repeat(5000)) in multipleSegmentBuffers() 91 buffer.writeUtf8("d".repeat(10000)) in multipleSegmentBuffers() 92 buffer.writeUtf8("e".repeat(25000)) in multipleSegmentBuffers() 93 buffer.writeUtf8("f".repeat(50000)) in multipleSegmentBuffers() 94 assertEquals("a".repeat(999), buffer.readUtf8(999)) // a...a in multipleSegmentBuffers() 95 assertEquals("a" + "b".repeat(2500) + "c", buffer.readUtf8(2502)) // ab...bc in multipleSegmentBuffers() 96 assertEquals("c".repeat(4998), buffer.readUtf8(4998)) // c...c in multipleSegmentBuffers() 97 assertEquals("c" + "d".repeat(10000) + "e", buffer.readUtf8(10002)) // cd...de in multipleSegmentBuffers() [all …]
|
/aosp_15_r20/external/okhttp/okio/okio/src/test/java/okio/ |
H A D | BufferTest.java | 28 import static okio.TestUtil.repeat; 64 buffer.writeUtf8(repeat('a', Segment.SIZE * 4)); in completeSegmentByteCountOnBufferWithFullSegments() 70 buffer.writeUtf8(repeat('a', Segment.SIZE * 4 - 10)); in completeSegmentByteCountOnBufferWithIncompleteTailSegment() 93 buffer.writeUtf8(repeat('a', 6144)); in toStringOnMultipleSegmentBuffer() 99 buffer.writeUtf8(repeat('a', 1000)); in multipleSegmentBuffers() 100 buffer.writeUtf8(repeat('b', 2500)); in multipleSegmentBuffers() 101 buffer.writeUtf8(repeat('c', 5000)); in multipleSegmentBuffers() 102 buffer.writeUtf8(repeat('d', 10000)); in multipleSegmentBuffers() 103 buffer.writeUtf8(repeat('e', 25000)); in multipleSegmentBuffers() 104 buffer.writeUtf8(repeat('f', 50000)); in multipleSegmentBuffers() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/ring/tests/ |
D | digest_tests.txt | 5 Repeat = 1 10 Repeat = 1 15 Repeat = 1000000 20 Repeat = 10 27 Repeat = 1 32 Repeat = 1 39 Repeat = 1 44 Repeat = 1 51 Repeat = 1 56 Repeat = 1 [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/test/x3/ |
D | repeat.cpp | 30 using boost::spirit::x3::repeat; in main() 37 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(repeat['x']); in main() 38 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(repeat(3)['x']); in main() 39 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(repeat(3, 5)['x']); in main() 40 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(repeat(3, inf)['x']); in main() 43 BOOST_TEST(test("aaaaaaaa", repeat[char_])); // kleene synonym in main() 44 BOOST_TEST(test("aaaaaaaa", repeat(8)[char_])); in main() 45 BOOST_TEST(!test("aa", repeat(3)[char_])); in main() 46 BOOST_TEST(test("aaa", repeat(3, 5)[char_])); in main() 47 BOOST_TEST(test("aaaaa", repeat(3, 5)[char_])); in main() [all …]
|
/aosp_15_r20/external/okio/okio/src/commonTest/kotlin/okio/ |
H A D | CommonBufferTest.kt | 72 buffer.writeUtf8('a'.repeat(1000)) in multipleSegmentBuffers() 73 buffer.writeUtf8('b'.repeat(2500)) in multipleSegmentBuffers() 74 buffer.writeUtf8('c'.repeat(5000)) in multipleSegmentBuffers() 75 buffer.writeUtf8('d'.repeat(10000)) in multipleSegmentBuffers() 76 buffer.writeUtf8('e'.repeat(25000)) in multipleSegmentBuffers() 77 buffer.writeUtf8('f'.repeat(50000)) in multipleSegmentBuffers() 79 assertEquals('a'.repeat(999), buffer.readUtf8(999)) // a...a in multipleSegmentBuffers() 80 assertEquals("a" + 'b'.repeat(2500) + "c", buffer.readUtf8(2502)) // ab...bc in multipleSegmentBuffers() 81 assertEquals('c'.repeat(4998), buffer.readUtf8(4998)) // c...c in multipleSegmentBuffers() 82 assertEquals("c" + 'd'.repeat(10000) + "e", buffer.readUtf8(10002)) // cd...de in multipleSegmentBuffers() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/test/karma/ |
D | repeat2.cpp | 39 using boost::spirit::karma::repeat; in main() 47 BOOST_TEST(test("abcdefgh", lower[repeat(8)[char_]], str)); in main() 48 BOOST_TEST(test_delimited("A B C D E F G H ", upper[repeat(8)[char_]], str, space)); in main() 53 BOOST_TEST(test("aaaaa", char_ << repeat(2)[char_ << char_], s1)); in main() 55 BOOST_TEST(test("aaa", char_ << repeat(1, 2)[char_ << char_], s1)); in main() 57 BOOST_TEST(!test("", char_ << repeat(1)[char_ << char_], s1)); in main() 68 BOOST_TEST(test("aaaa", repeat(4)[char_][_1 = phx::ref(v)])); in main() 78 BOOST_TEST(test_delimited("123 456 789 ", repeat(3)[int_][_1 = phx::ref(v)], space)); in main() 106 BOOST_TEST(test("d", repeat[r], v2)); in main() 107 BOOST_TEST(test("d", relaxed[repeat[r]], v2)); in main() [all …]
|
D | repeat1.cpp | 57 using boost::spirit::karma::repeat; in main() 67 BOOST_TEST(test("aaaaaaaa", repeat[char_], str8)); // kleene synonym in main() 68 BOOST_TEST(test("aaaaaaaa", repeat(val(8))[char_], str8)); in main() 69 BOOST_TEST(test("aaa", repeat(val(3))[char_], str8)); in main() 70 BOOST_TEST(!test("aaaaaaaa", repeat(val(9))[char_], str8)); in main() 73 BOOST_TEST(test("aaaaa", repeat(val(3), val(5))[char_], str8)); in main() 74 BOOST_TEST(test("aaa", repeat(val(3), val(5))[char_], str3)); in main() 75 BOOST_TEST(!test("aaa", repeat(val(4), val(5))[char_], str3)); in main() 77 BOOST_TEST(test("aaa", repeat(val(3), val(inf))[char_], str3)); in main() 78 BOOST_TEST(test("aaaaaaaa", repeat(val(3), val(inf))[char_], str8)); in main() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/PowerPC/ |
H A D | PPCScheduleE5500.td | 74 [30, 2, 2], // Latency= 4..26, Repeat rate= 4..26 80 [20, 2, 2], // Latency= 4..16, Repeat rate= 4..16 85 [11], // Latency = 7, Repeat rate = 1 89 [11, 2, 2], // Latency = 7, Repeat rate = 7 94 [9, 2, 2], // Latency = 4..7, Repeat rate = 2..4 100 [8, 2, 2], // Latency = 4, Repeat rate = 1 106 [8, 2, 2], // Latency = 4, Repeat rate = 1 112 [8, 2, 2], // Latency = 4 or 5, Repeat = 2 122 [6, 2, 2], // Latency = 2, Repeat rate = 2 127 [5, 2, 2], // Latency = 1, Repeat rate = 1 [all …]
|
/aosp_15_r20/external/llvm/lib/Target/PowerPC/ |
H A D | PPCScheduleE5500.td | 75 [30, 2, 2], // Latency= 4..26, Repeat rate= 4..26 81 [20, 2, 2], // Latency= 4..16, Repeat rate= 4..16 86 [11], // Latency = 7, Repeat rate = 1 90 [11, 2, 2], // Latency = 7, Repeat rate = 7 95 [9, 2, 2], // Latency = 4..7, Repeat rate = 2..4 101 [8, 2, 2], // Latency = 4, Repeat rate = 1 107 [8, 2, 2], // Latency = 4, Repeat rate = 1 113 [8, 2, 2], // Latency = 4 or 5, Repeat = 2 123 [6, 2, 2], // Latency = 2, Repeat rate = 2 128 [5, 2, 2], // Latency = 1, Repeat rate = 1 [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCScheduleE5500.td | 74 [30, 2, 2], // Latency= 4..26, Repeat rate= 4..26 80 [20, 2, 2], // Latency= 4..16, Repeat rate= 4..16 85 [11], // Latency = 7, Repeat rate = 1 89 [11, 2, 2], // Latency = 7, Repeat rate = 7 94 [9, 2, 2], // Latency = 4..7, Repeat rate = 2..4 100 [8, 2, 2], // Latency = 4, Repeat rate = 1 106 [8, 2, 2], // Latency = 4, Repeat rate = 1 112 [8, 2, 2], // Latency = 4 or 5, Repeat = 2 122 [6, 2, 2], // Latency = 2, Repeat rate = 2 127 [5, 2, 2], // Latency = 1, Repeat rate = 1 [all …]
|
/aosp_15_r20/external/swiftshader/tests/regres/testlists/vk-default/ |
H A D | texture.txt | 1038 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.clamp_to_border.repeat 1043 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.clamp_to_edge.repeat 1048 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.mirror_clamp_to_edge.repeat 1053 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.mirrored_repeat.repeat 1054 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.clamp_to_border 1055 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.clamp_to_edge 1056 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.mirror_clamp_to_edge 1057 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.mirrored_repeat 1058 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.repeat 1063 dEQP-VK.texture.filtering.2d.combinations.cubic.linear.clamp_to_border.repeat [all …]
|
/aosp_15_r20/external/deqp/external/vulkancts/mustpass/main/vk-default/ |
H A D | texture.txt | 870 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.clamp_to_border.repeat 875 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.clamp_to_edge.repeat 880 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.mirror_clamp_to_edge.repeat 885 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.mirrored_repeat.repeat 886 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.clamp_to_border 887 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.clamp_to_edge 888 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.mirror_clamp_to_edge 889 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.mirrored_repeat 890 dEQP-VK.texture.filtering.2d.combinations.cubic.cubic.repeat.repeat 895 dEQP-VK.texture.filtering.2d.combinations.cubic.linear.clamp_to_border.repeat [all …]
|
/aosp_15_r20/test/dittosuite/test/ |
H A D | read_file_test.cpp | 65 int repeat = 2; in TEST_F() local 66 EXPECT_CALL(syscall_, Read(fd_, _, MockSyscall::kDefaultFileSize, 0)).Times(repeat); in TEST_F() 69 (Instruction::Params){syscall_, repeat}, -1, MockSyscall::kDefaultFileSize, 0, in TEST_F() 84 int repeat = 2; in TEST_F() local 85 EXPECT_CALL(syscall_, Read(fd_, _, MockSyscall::kDefaultFileSize, 0)).Times(repeat); in TEST_F() 88 (Instruction::Params){syscall_, repeat}, -1, MockSyscall::kDefaultFileSize, 0, in TEST_F() 119 int repeat = 2; in TEST_F() local 126 .Times(repeat * 2) in TEST_F() 134 for (int i = 0; i < repeat; ++i) { in TEST_F() 142 auto read_file = dittosuite::ReadFile((Instruction::Params){syscall_, repeat}, size, block_size, in TEST_F() [all …]
|
H A D | write_file_test.cpp | 63 int repeat = 2; in TEST_F() local 64 EXPECT_CALL(syscall_, Write(fd_, _, MockSyscall::kDefaultFileSize, 0)).Times(repeat); in TEST_F() 67 (Instruction::Params){syscall_, repeat}, -1, MockSyscall::kDefaultFileSize, 0, in TEST_F() 82 int repeat = 2; in TEST_F() local 83 EXPECT_CALL(syscall_, Write(fd_, _, MockSyscall::kDefaultFileSize, 0)).Times(repeat); in TEST_F() 86 (Instruction::Params){syscall_, repeat}, -1, MockSyscall::kDefaultFileSize, 0, in TEST_F() 117 int repeat = 2; in TEST_F() local 124 .Times(repeat) in TEST_F() 132 for (int i = 0; i < repeat; ++i) { in TEST_F() 140 auto write_file = dittosuite::WriteFile((Instruction::Params){syscall_, repeat}, size, block_size, in TEST_F() [all …]
|
/aosp_15_r20/external/libcups/examples/ |
H A D | ipp-everywhere.test | 194 STATUS server-error-busy REPEAT-MATCH 217 STATUS server-error-busy REPEAT-MATCH 240 STATUS server-error-busy REPEAT-MATCH 260 STATUS server-error-busy REPEAT-MATCH 283 STATUS server-error-busy REPEAT-MATCH 306 STATUS server-error-busy REPEAT-MATCH 326 STATUS server-error-busy REPEAT-MATCH 349 STATUS server-error-busy REPEAT-MATCH 372 STATUS server-error-busy REPEAT-MATCH 392 STATUS server-error-busy REPEAT-MATCH [all …]
|
/aosp_15_r20/external/python/cpython3/Tools/importbench/ |
D | importbench.py | 20 def bench(name, cleanup=lambda: None, *, seconds=1, repeat=3): argument 25 for x in range(repeat): 40 def from_cache(seconds, repeat): argument 48 yield from bench(name, repeat=repeat, seconds=seconds) 51 def builtin_mod(seconds, repeat): argument 57 yield from bench(name, lambda: sys.modules.pop(name), repeat=repeat, 61 def source_wo_bytecode(seconds, repeat): argument 73 yield from bench(name, lambda: sys.modules.pop(name), repeat=repeat, 81 def benchmark_wo_bytecode(seconds, repeat): argument 89 repeat=repeat, seconds=seconds) [all …]
|
/aosp_15_r20/external/libxkbcommon/test/data/keymaps/ |
H A D | no-types.xkb | 305 interpret.repeat= false; 421 repeat= true; 425 repeat= true; 429 repeat= true; 433 repeat= true; 437 repeat= true; 441 repeat= true; 445 repeat= true; 449 repeat= true; 453 repeat= true; [all …]
|
H A D | quartz.xkb | 307 interpret.repeat= False; 423 repeat= True; 427 repeat= True; 431 repeat= True; 435 repeat= True; 439 repeat= True; 443 repeat= True; 447 repeat= True; 451 repeat= True; 455 repeat= True; [all …]
|
/aosp_15_r20/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/ |
H A D | report.css | 28 background-repeat:no-repeat; 35 background-repeat:no-repeat; 42 background-repeat:no-repeat; 49 background-repeat:no-repeat; 56 background-repeat:no-repeat; 63 background-repeat:no-repeat; 70 background-repeat:no-repeat; 77 background-repeat:no-repeat; 110 background-repeat: no-repeat; 120 background-repeat: no-repeat; [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/third_party/googletest/test/ |
D | gtest_repeat_test.cc | 42 GTEST_DECLARE_int32_(repeat); 48 using testing::GTEST_FLAG(repeat); 155 void TestRepeat(int repeat) { in TestRepeat() argument 156 GTEST_FLAG(repeat) = repeat; in TestRepeat() 159 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); in TestRepeat() 160 CheckCounts(repeat); in TestRepeat() 165 void TestRepeatWithEmptyFilter(int repeat) { in TestRepeatWithEmptyFilter() argument 166 GTEST_FLAG(repeat) = repeat; in TestRepeatWithEmptyFilter() 176 void TestRepeatWithFilterForSuccessfulTests(int repeat) { in TestRepeatWithFilterForSuccessfulTests() argument 177 GTEST_FLAG(repeat) = repeat; in TestRepeatWithFilterForSuccessfulTests() [all …]
|