Searched refs:repeat (Results 1 - 25 of 354) sorted by relevance

1234567891011>>

/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/repeat/
H A DOnlyUsedInChild.java1 package test.subcomponent.repeat;
H A DOnlyUsedInParent.java1 package test.subcomponent.repeat;
H A DSubcomponentWithoutRepeatedModule.java16 package test.subcomponent.repeat;
H A DSubcomponentWithRepeatedModule.java16 package test.subcomponent.repeat;
H A DParentComponent.java16 package test.subcomponent.repeat;
H A DRepeatedModule.java16 package test.subcomponent.repeat;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowVibrator.java14 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 Dgtest_repeat_test.cc51 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/googletest/googletest/test/
H A Dgtest_repeat_test.cc51 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 Dgtest_repeat_test.cc51 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/v8/testing/gtest/test/
H A Dgtest_repeat_test.cc51 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/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest_repeat_test.cc51 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/main/java/junit/extensions/
H A DRepeatedTest.java12 public RepeatedTest(Test test, int repeat) { argument
14 if (repeat < 0) {
17 fTimesRepeat = repeat;
/external/okhttp/okio/okio/src/test/java/okio/
H A DBufferTest.java28 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 DRealBufferedSourceTest.java23 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...]
/external/libyuv/files/unit_test/
H A Dunit_test.cc30 DEFINE_int32(libyuv_repeat, 0, "number of times to repeat test.");
54 const char* repeat = getenv("LIBYUV_REPEAT"); local
55 if (repeat) {
56 benchmark_iterations_ = atoi(repeat); // NOLINT
113 const char* repeat = getenv("LIBYUV_REPEAT"); local
114 if (repeat) {
115 benchmark_iterations_ = atoi(repeat); // NOLINT
172 const char* repeat = getenv("LIBYUV_REPEAT"); local
173 if (repeat) {
174 benchmark_iterations_ = atoi(repeat); // NOLIN
231 const char* repeat = getenv("LIBYUV_REPEAT"); local
290 const char* repeat = getenv("LIBYUV_REPEAT"); local
349 const char* repeat = getenv("LIBYUV_REPEAT"); local
[all...]
/external/python/cpython2/Lib/
H A Dtimeit.py16 -r/--repeat N: how many times to repeat the timer (default 3)
20 -v/--verbose: print raw timing results; repeat for more digits precision
40 repeat the timing a few times and use the best time. The -r option is
114 timeit() method. The repeat() method is a convenience to call
165 t.timeit(...) # or t.repeat(...)
196 it = itertools.repeat(None, number)
208 def repeat(self, repeat=default_repeat, number=default_number): member in class:Timer
229 for i in range(repeat)
239 def repeat(stmt="pass", setup="pass", timer=default_timer, function
[all...]
/external/vulkan-validation-layers/libs/glm/gtx/
H A Dwrap.hpp61 GLM_FUNC_DECL genType repeat(genType const & Texcoord);
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DStringsTest.java108 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 DtestThreads.c99 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...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_split_prim.h47 int repeat = 0; local
70 repeat = 1;
89 repeat = 2;
93 repeat = 1;
100 repeat = 2;
110 s->p_start += (max_verts - repeat);
/external/python/cpython2/Lib/test/
H A Dtest_timeit.py141 def repeat(self, stmt, setup, repeat=None, number=None): member in class:TestTimeit
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 * [floa
[all...]
/external/autotest/client/tests/fsx/
H A Dfsx.py31 def run_once(self, dir=None, repeat=100000):
32 args = '-N %s' % repeat
/external/sonivox/jet_tools/JetCreator/
H A DJetDebug.py39 print("repeat: %d" % queueSeg.repeat)
52 print("repeat: %d" % segment.repeat)
/external/v8/tools/
H A Dshell-utils.h43 const byte* ReadFileAndRepeat(const char* name, int* size, int repeat) { argument
52 *size = file_size * repeat;

Completed in 1288 milliseconds

1234567891011>>