/external/v8/test/mjsunit/harmony/ |
H A D | string-repeat.js | 30 assertEquals("000", String.prototype.repeat.call(0, 3)); 31 assertEquals("-1-1-1", String.prototype.repeat.call(-1, 3)); 32 assertEquals("2.12.12.1", String.prototype.repeat.call(2.1, 3)); 33 assertEquals("", String.prototype.repeat.call([], 3)); 34 assertEquals("1,2,3", String.prototype.repeat.call([1, 2, 3], 1)); 35 assertEquals("true", String.prototype.repeat.call(true, 1)); 36 assertEquals("false", String.prototype.repeat.call(false, 1)); 37 assertEquals("[object Object]", String.prototype.repeat.call({}, 1)); 39 assertEquals("000", String.prototype.repeat.apply(0, [3])); 40 assertEquals("-1-1-1", String.prototype.repeat [all...] |
/external/libyuv/files/unit_test/ |
H A D | unit_test.cc | 24 const char* repeat = getenv("LIBYUV_REPEAT"); local 25 if (repeat) { 26 benchmark_iterations_ = atoi(repeat); // NOLINT
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowVibrator.java | 14 private int repeat; field in class:ShadowVibrator 23 public void vibrate(long[] pattern, int repeat) { argument 26 this.repeat = repeat; 52 return repeat;
|
/external/google-breakpad/src/testing/gtest/test/ |
H A D | gtest_repeat_test.cc | 51 GTEST_DECLARE_int32_(repeat); 57 using testing::GTEST_FLAG(repeat); 172 void TestRepeat(int repeat) { argument 173 GTEST_FLAG(repeat) = repeat; 176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); 177 CheckCounts(repeat); 182 void TestRepeatWithEmptyFilter(int repeat) { argument 183 GTEST_FLAG(repeat) = repeat; 193 TestRepeatWithFilterForSuccessfulTests(int repeat) argument 211 TestRepeatWithFilterForFailedTests(int repeat) argument [all...] |
/external/gtest/test/ |
H A D | gtest_repeat_test.cc | 51 GTEST_DECLARE_int32_(repeat); 57 using testing::GTEST_FLAG(repeat); 172 void TestRepeat(int repeat) { argument 173 GTEST_FLAG(repeat) = repeat; 176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); 177 CheckCounts(repeat); 182 void TestRepeatWithEmptyFilter(int repeat) { argument 183 GTEST_FLAG(repeat) = repeat; 193 TestRepeatWithFilterForSuccessfulTests(int repeat) argument 211 TestRepeatWithFilterForFailedTests(int repeat) argument [all...] |
/external/protobuf/gtest/test/ |
H A D | gtest_repeat_test.cc | 51 GTEST_DECLARE_int32_(repeat); 57 using testing::GTEST_FLAG(repeat); 172 void TestRepeat(int repeat) { argument 173 GTEST_FLAG(repeat) = repeat; 176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); 177 CheckCounts(repeat); 182 void TestRepeatWithEmptyFilter(int repeat) { argument 183 GTEST_FLAG(repeat) = repeat; 193 TestRepeatWithFilterForSuccessfulTests(int repeat) argument 211 TestRepeatWithFilterForFailedTests(int repeat) argument [all...] |
/external/junit/src/junit/extensions/ |
H A D | RepeatedTest.java | 13 public RepeatedTest(Test test, int repeat) { argument 15 if (repeat < 0) 17 fTimesRepeat= repeat;
|
/external/chromium-trace/trace-viewer/tracing/tracing/ui/base/ |
H A D | tool_button.css | 8 background-repeat: no-repeat;
|
/external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/system_stats/ |
H A D | system_stats_snapshot_view.css | 13 background-repeat: no-repeat; 23 background-repeat: no-repeat;
|
/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)); 70 buffer.writeUtf8(repeat('a', Segment.SIZE * 4 - 10)); 93 buffer.writeUtf8(repeat('a', 6144)); 99 buffer.writeUtf8(repeat('a', 1000)); 100 buffer.writeUtf8(repeat('b', 2500)); 101 buffer.writeUtf8(repeat('c', 5000)); 102 buffer.writeUtf8(repeat('d', 10000)); 103 buffer.writeUtf8(repeat('e', 25000)); 104 buffer.writeUtf8(repeat(' [all...] |
H A D | RealBufferedSourceTest.java | 23 import static okio.TestUtil.repeat; 36 source.writeUtf8(repeat('b', Segment.SIZE)); 51 assertEquals(repeat('b', Segment.SIZE - 1), new String(data, 0, Segment.SIZE - 1, UTF_8)); 119 source.writeUtf8(repeat('a', Segment.SIZE)); 120 source.writeUtf8(repeat('b', Segment.SIZE)); 131 source.writeUtf8(repeat('a', Segment.SIZE)); 132 source.writeUtf8(repeat('b', Segment.SIZE)); 198 * should buffer a segment, write it, and repeat. 201 Buffer write1 = new Buffer().writeUtf8(TestUtil.repeat('a', Segment.SIZE)); 202 Buffer write2 = new Buffer().writeUtf8(TestUtil.repeat(' [all...] |
H A D | RealBufferedSinkTest.java | 22 import static okio.TestUtil.repeat; 46 bufferedSink.writeUtf8(repeat('a', Segment.SIZE - 1)); 56 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 4 - 1)); 97 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 3)); 104 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 3 - 1)); 226 Buffer write1 = new Buffer().writeUtf8(TestUtil.repeat('a', Segment.SIZE)); 227 Buffer write2 = new Buffer().writeUtf8(TestUtil.repeat('b', Segment.SIZE)); 228 Buffer write3 = new Buffer().writeUtf8(TestUtil.repeat('c', Segment.SIZE)); 231 + TestUtil.repeat('a', Segment.SIZE) 232 + TestUtil.repeat(' [all...] |
H A D | OkioTest.java | 26 import static okio.TestUtil.repeat; 87 data.writeUtf8(repeat('b', 9998)); 95 assertEquals("a" + repeat('b', 9998) + "c", out.toString("UTF-8")); 100 ("a" + repeat('b', Segment.SIZE * 2) + "c").getBytes(UTF_8)); 112 assertEquals(repeat('b', Segment.SIZE), sink.readUtf8()); 116 assertEquals(repeat('b', Segment.SIZE - 2) + "c", sink.readUtf8());
|
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
H A D | StringsTest.java | 108 assertEquals("", Strings.repeat(input, 0)); 109 assertEquals("20", Strings.repeat(input, 1)); 110 assertEquals("2020", Strings.repeat(input, 2)); 111 assertEquals("202020", Strings.repeat(input, 3)); 113 assertEquals("", Strings.repeat("", 4)); 116 assertEquals(2 * i, Strings.repeat(input, i).length()); 120 Strings.repeat("x", -1); 126 Strings.repeat("12345678", (1 << 30) + 3); 135 Strings.repeat(null, 5);
|
/external/libxml2/ |
H A D | testThreads.c | 99 unsigned int i, repeat; local 105 for (repeat = 0;repeat < 500;repeat++) { 140 unsigned int i, repeat; local 147 for (repeat = 0;repeat < 500;repeat++) { 148 printf("repeat: %d\n",repeat); [all...] |
H A D | testThreadsWin32.c | 88 unsigned int i, repeat; local 94 for (repeat = 0;repeat < TEST_REPEAT_COUNT;repeat++)
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_split_prim.h | 47 int repeat = 0; local 70 repeat = 1; 89 repeat = 2; 93 repeat = 1; 100 repeat = 2; 110 s->p_start += (max_verts - repeat);
|
/external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/tcmalloc/ |
H A D | tcmalloc_snapshot_view.css | 13 background-repeat: no-repeat; 23 background-repeat: no-repeat;
|
/external/sonivox/jet_tools/JetCreator/ |
H A D | JetDebug.py | 39 print("repeat: %d" % queueSeg.repeat)
52 print("repeat: %d" % segment.repeat)
|
/external/v8/tools/ |
H A D | shell-utils.h | 41 const byte* ReadFileAndRepeat(const char* name, int* size, int repeat) { argument 50 *size = file_size * repeat;
|
H A D | lexer-shell.cc | 57 int repeat) 60 source_ = ReadFileAndRepeat(fname, &length, repeat); 134 int repeat) { 136 BaselineScanner scanner(fname, isolate, encoding, &timer, repeat); 165 int repeat) { 174 &baseline_tokens, repeat); 192 int repeat = 1; local 204 } else if (strncmp(argv[i], "--repeat=", 9) == 0) { 206 repeat = atoi(repeat_str.c_str()); 225 repeat); 53 BaselineScanner(const char* fname, Isolate* isolate, Encoding encoding, v8::base::ElapsedTimer* timer, int repeat) argument 131 RunBaselineScanner(const char* fname, Isolate* isolate, Encoding encoding, bool dump_tokens, std::vector<TokenWithLocation>* tokens, int repeat) argument 160 ProcessFile( const char* fname, Encoding encoding, Isolate* isolate, bool print_tokens, int repeat) argument [all...] |
/external/eigen/test/ |
H A D | prec_inverse_4x4.cpp | 29 template<typename MatrixType> void inverse_general_4x4(int repeat) argument 35 for(int i = 0; i < repeat; ++i) 49 double error_avg = error_sum / repeat;
|
/external/guava/guava-tests/test/com/google/common/base/ |
H A D | StringsTest.java | 110 assertEquals("", Strings.repeat(input, 0)); 111 assertEquals("20", Strings.repeat(input, 1)); 112 assertEquals("2020", Strings.repeat(input, 2)); 113 assertEquals("202020", Strings.repeat(input, 3)); 115 assertEquals("", Strings.repeat("", 4)); 118 assertEquals(2 * i, Strings.repeat(input, i).length()); 122 Strings.repeat("x", -1); 128 Strings.repeat("12345678", (1 << 30) + 3); 137 Strings.repeat(null, 5);
|
/external/valgrind/exp-bbv/tests/amd64-linux/ |
H A D | clone_test.S | 15 dec %rcx # repeat count times 63 dec %rcx # repeat count times 72 dec %rcx # repeat count times 87 dec %rcx # repeat count times
|
H A D | million.S | 12 dec %rcx # repeat count times
|