Home
last modified time | relevance | path

Searched refs:repeat (Results 1 – 25 of 922) sorted by relevance

12345678910>>...37

/external/googletest/googletest/test/
Dgtest_repeat_test.cc42 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 …]
/external/okhttp/okio/okio/src/test/java/okio/
DBufferTest.java28 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 …]
DBufferedSourceTest.java31 import static okio.TestUtil.repeat;
148 sink.writeUtf8(repeat('a', Segment.SIZE - 1)); in readShortSplitAcrossMultipleSegments()
176 sink.writeUtf8(repeat('a', Segment.SIZE - 3)); in readIntSplitAcrossMultipleSegments()
208 sink.writeUtf8(repeat('a', Segment.SIZE - 7)); in readLongSplitAcrossMultipleSegments()
237 sink.writeUtf8(repeat('a', 10)); in readExhaustedSource()
245 sink.writeUtf8(repeat('a', 10)); in readZeroBytesFromSource()
255 sink.writeUtf8(repeat('a', 10000)); in readFully()
258 assertEquals(repeat('a', 9999), sink.readUtf8()); in readFully()
277 data.writeUtf8("Hello").writeUtf8(repeat('e', Segment.SIZE)); in readFullyByteArray()
350 String string = "abcd" + repeat('e', Segment.SIZE); in readByteArray()
[all …]
DRealBufferedSourceTest.java23 import static okio.TestUtil.repeat;
36 source.writeUtf8(repeat('b', Segment.SIZE)); in inputStreamTracksSegments()
51 assertEquals(repeat('b', Segment.SIZE - 1), new String(data, 0, Segment.SIZE - 1, UTF_8)); in inputStreamTracksSegments()
119 source.writeUtf8(repeat('a', Segment.SIZE)); in requireReadsOneSegmentAtATime()
120 source.writeUtf8(repeat('b', Segment.SIZE)); in requireReadsOneSegmentAtATime()
131 source.writeUtf8(repeat('a', Segment.SIZE)); in skipReadsOneSegmentAtATime()
132 source.writeUtf8(repeat('b', Segment.SIZE)); in skipReadsOneSegmentAtATime()
201 Buffer write1 = new Buffer().writeUtf8(TestUtil.repeat('a', Segment.SIZE)); in readAllReadsOneSegmentAtATime()
202 Buffer write2 = new Buffer().writeUtf8(TestUtil.repeat('b', Segment.SIZE)); in readAllReadsOneSegmentAtATime()
203 Buffer write3 = new Buffer().writeUtf8(TestUtil.repeat('c', Segment.SIZE)); in readAllReadsOneSegmentAtATime()
[all …]
DRealBufferedSinkTest.java22 import static okio.TestUtil.repeat;
46 bufferedSink.writeUtf8(repeat('a', Segment.SIZE - 1)); in bufferedSinkEmitsTailWhenItIsComplete()
56 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 4 - 1)); in bufferedSinkEmitMultipleSegments()
97 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 3)); in completeSegmentsEmitted()
104 bufferedSink.writeUtf8(repeat('a', Segment.SIZE * 3 - 1)); in incompleteSegmentsNotEmitted()
226 Buffer write1 = new Buffer().writeUtf8(TestUtil.repeat('a', Segment.SIZE)); in writeAllWritesOneSegmentAtATime()
227 Buffer write2 = new Buffer().writeUtf8(TestUtil.repeat('b', Segment.SIZE)); in writeAllWritesOneSegmentAtATime()
228 Buffer write3 = new Buffer().writeUtf8(TestUtil.repeat('c', Segment.SIZE)); in writeAllWritesOneSegmentAtATime()
231 + TestUtil.repeat('a', Segment.SIZE) in writeAllWritesOneSegmentAtATime()
232 + TestUtil.repeat('b', Segment.SIZE) in writeAllWritesOneSegmentAtATime()
[all …]
/external/google-breakpad/src/testing/gtest/test/
Dgtest_repeat_test.cc51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
172 void TestRepeat(int repeat) { in TestRepeat() argument
173 GTEST_FLAG(repeat) = repeat; in TestRepeat()
176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); in TestRepeat()
177 CheckCounts(repeat); in TestRepeat()
182 void TestRepeatWithEmptyFilter(int repeat) { in TestRepeatWithEmptyFilter() argument
183 GTEST_FLAG(repeat) = repeat; in TestRepeatWithEmptyFilter()
193 void TestRepeatWithFilterForSuccessfulTests(int repeat) { in TestRepeatWithFilterForSuccessfulTests() argument
194 GTEST_FLAG(repeat) = repeat; in TestRepeatWithFilterForSuccessfulTests()
[all …]
/external/python/cpython3/Tools/importbench/
Dimportbench.py20 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 …]
/external/jacoco/org.jacoco.doc/docroot/doc/resources/
Ddoc.css5 background-repeat:no-repeat;
12 background-repeat:no-repeat;
19 background-repeat:no-repeat;
43 background:transparent url(extern.gif) center left no-repeat;
68 background-repeat:no-repeat;
75 background-repeat:no-repeat;
82 background-repeat:no-repeat;
89 background-repeat:no-repeat;
96 background-repeat:no-repeat;
103 background-repeat:no-repeat;
[all …]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Dreport.css28 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 …]
/external/python/cpython2/Lib/
Dtimeit.py196 it = itertools.repeat(None, number)
208 def repeat(self, repeat=default_repeat, number=default_number): argument
229 for i in range(repeat):
239 def repeat(stmt="pass", setup="pass", timer=default_timer, argument
240 repeat=default_repeat, number=default_number):
242 return Timer(stmt, setup, timer).repeat(repeat, number)
276 repeat = default_repeat
285 repeat = int(a)
286 if repeat <= 0:
287 repeat = 1
[all …]
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/
Dcardinality_test.py42 ("Batch4", lambda: dataset_ops.Dataset.range(5).repeat().batch(2),
51 ("Concatenate3", lambda: dataset_ops.Dataset.range(5).repeat().
60 ("Concatenate6", lambda: dataset_ops.Dataset.range(5).repeat().
64 dataset_ops.Dataset.range(5).repeat()), cardinality.INFINITE),
67 dataset_ops.Dataset.range(5).repeat()), cardinality.INFINITE),
69 lambda: dataset_ops.Dataset.range(5).repeat().concatenate(
70 dataset_ops.Dataset.range(5).repeat()), cardinality.INFINITE),
99 lambda: dataset_ops.Dataset.range(5).repeat().padded_batch(2, []),
109 ("Repeat1", lambda: dataset_ops.Dataset.range(0).repeat(0), 0),
110 ("Repeat2", lambda: dataset_ops.Dataset.range(1).repeat(0), 0),
[all …]
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Dir3.c76 uint32_t repeat, uint32_t valid_flags) in reg() argument
86 repeat = 0; in reg()
97 max = (reg->array.offset + repeat + components - 1) >> 2; in reg()
102 max = (reg->num + repeat + components - 1) >> 2; in reg()
133 cat0->repeat = instr->repeat; in emit_cat0()
166 cat1->off = reg(src, info, instr->repeat, in emit_cat1()
171 cat1->src = reg(src, info, instr->repeat, in emit_cat1()
176 cat1->dst = reg(dst, info, instr->repeat, in emit_cat1()
179 cat1->repeat = instr->repeat; in emit_cat1()
208 cat2->rel1.src1 = reg(src1, info, instr->repeat, in emit_cat2()
[all …]
/external/libyuv/files/unit_test/
Dunit_test.cc54 const char* repeat = getenv("LIBYUV_REPEAT"); in LibYUVConvertTest() local
55 if (repeat) { in LibYUVConvertTest()
56 benchmark_iterations_ = atoi(repeat); // NOLINT in LibYUVConvertTest()
113 const char* repeat = getenv("LIBYUV_REPEAT"); in LibYUVColorTest() local
114 if (repeat) { in LibYUVColorTest()
115 benchmark_iterations_ = atoi(repeat); // NOLINT in LibYUVColorTest()
172 const char* repeat = getenv("LIBYUV_REPEAT"); in LibYUVScaleTest() local
173 if (repeat) { in LibYUVScaleTest()
174 benchmark_iterations_ = atoi(repeat); // NOLINT in LibYUVScaleTest()
231 const char* repeat = getenv("LIBYUV_REPEAT"); in LibYUVRotateTest() local
[all …]
/external/python/cpython2/Lib/test/
Dtest_timeit.py141 def repeat(self, stmt, setup, repeat=None, number=None): argument
145 if repeat is None:
146 repeat = DEFAULT_REPEAT
148 kwargs['repeat'] = repeat
153 delta_times = t.repeat(**kwargs)
154 self.assertEqual(self.fake_timer.setup_calls, repeat)
155 self.assertEqual(self.fake_timer.count, repeat * number)
156 self.assertEqual(delta_times, repeat * [float(number)])
163 self.repeat(self.fake_stmt, self.fake_setup, repeat=0)
166 self.repeat(self.fake_stmt, self.fake_setup, number=0)
[all …]
/external/u-boot/fs/jffs2/
Dcompr_rtime.c66 int repeat; in rtime_decompress() local
70 repeat = data_in[pos++]; in rtime_decompress()
74 if (repeat) { in rtime_decompress()
75 if (backoffs + repeat >= outpos) { in rtime_decompress()
76 while(repeat) { in rtime_decompress()
78 repeat--; in rtime_decompress()
81 for (i = 0; i < repeat; i++) in rtime_decompress()
83 outpos+=repeat; in rtime_decompress()
/external/python/cpython3/Lib/
Dtimeit.py172 it = itertools.repeat(None, number)
182 def repeat(self, repeat=default_repeat, number=default_number): argument
203 for i in range(repeat):
234 def repeat(stmt="pass", setup="pass", timer=default_timer, function
235 repeat=default_repeat, number=default_number, globals=None):
237 return Timer(stmt, setup, timer, globals).repeat(repeat, number)
273 repeat = default_repeat
291 repeat = int(a)
292 if repeat <= 0:
293 repeat = 1
[all …]
/external/python/cpython3/Lib/test/
Dtest_timeit.py155 def repeat(self, stmt, setup, repeat=None, number=None): argument
159 if repeat is None:
160 repeat = DEFAULT_REPEAT
162 kwargs['repeat'] = repeat
167 delta_times = t.repeat(**kwargs)
168 self.assertEqual(self.fake_timer.setup_calls, repeat)
169 self.assertEqual(self.fake_timer.count, repeat * number)
170 self.assertEqual(delta_times, repeat * [float(number)])
177 self.repeat(self.fake_stmt, self.fake_setup, repeat=0)
180 self.repeat(self.fake_stmt, self.fake_setup, number=0)
[all …]
/external/libxkbcommon/xkbcommon/test/data/keymaps/
Dno-types.xkb305 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 …]
Dquartz.xkb307 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 …]
/external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
Dvgg.py104 net = layers_lib.repeat(
107 net = layers_lib.repeat(net, 1, layers.conv2d, 128, [3, 3], scope='conv2')
109 net = layers_lib.repeat(net, 2, layers.conv2d, 256, [3, 3], scope='conv3')
111 net = layers_lib.repeat(net, 2, layers.conv2d, 512, [3, 3], scope='conv4')
113 net = layers_lib.repeat(net, 2, layers.conv2d, 512, [3, 3], scope='conv5')
169 net = layers_lib.repeat(
172 net = layers_lib.repeat(net, 2, layers.conv2d, 128, [3, 3], scope='conv2')
174 net = layers_lib.repeat(net, 3, layers.conv2d, 256, [3, 3], scope='conv3')
176 net = layers_lib.repeat(net, 3, layers.conv2d, 512, [3, 3], scope='conv4')
178 net = layers_lib.repeat(net, 3, layers.conv2d, 512, [3, 3], scope='conv5')
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dppc-vaarg-agg.ll9 br i1 undef, label %repeat, label %maxlen_reached
11 repeat: ; preds = %entry
20 sw.bb72: ; preds = %repeat
23 sw.bb309: ; preds = %repeat
26 sw.bb313: ; preds = %repeat
29 sw.bb321: ; preds = %repeat
32 sw.bb323: ; preds = %repeat
36 sw.bb326: ; preds = %repeat
/external/llvm/test/CodeGen/PowerPC/
Dppc-vaarg-agg.ll9 br i1 undef, label %repeat, label %maxlen_reached
11 repeat: ; preds = %entry
20 sw.bb72: ; preds = %repeat
23 sw.bb309: ; preds = %repeat
26 sw.bb313: ; preds = %repeat
29 sw.bb321: ; preds = %repeat
32 sw.bb323: ; preds = %repeat
36 sw.bb326: ; preds = %repeat
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowSystemVibrator.java39 protected void vibrate(long[] pattern, int repeat) { in vibrate() argument
40 recordVibratePattern(pattern, repeat); in vibrate()
44 protected void vibrate(int owningUid, String owningPackage, long[] pattern, int repeat) { in vibrate() argument
45 recordVibratePattern(pattern, repeat); in vibrate()
49 …protected void vibrate(int uid, String opPkg, long[] pattern, int repeat, AudioAttributes attribut… in vibrate() argument
50 recordVibratePattern(pattern, repeat); in vibrate()
102 private void recordVibratePattern(long[] pattern, int repeat) { in recordVibratePattern() argument
105 this.repeat = repeat; in recordVibratePattern()
107 if (repeat < 0) { in recordVibratePattern()
/external/testng/doc/samplereport/css/
Dmaven-classic.css104 background: url(../images/external-classic.png) left top no-repeat;
108 background: url(../images/external-classic.png) right center no-repeat;
113 background: url(../images/newwindow-classic.png) left top no-repeat;
117 background: url(../images/newwindow-classic.png) right center no-repeat;
133 background-repeat: no-repeat;
146 background-repeat: no-repeat;
156 background-repeat: no-repeat;
176 background-repeat: no-repeat;
241 background-repeat: no-repeat;
246 background: #eee url(../images/help_logo.gif) top right no-repeat !important;
[all …]
/external/libxml2/
DtestThreads.c103 unsigned int i, repeat; in main() local
109 for (repeat = 0;repeat < 500;repeat++) { in main()
144 unsigned int i, repeat; in main() local
151 for (repeat = 0;repeat < 500;repeat++) { in main()
152 printf("repeat: %d\n",repeat); in main()

12345678910>>...37