Searched defs:repeat (Results 1 - 25 of 165) sorted by relevance

1234567

/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 DRepeatedModule.java16 package test.subcomponent.repeat;
H A DParentComponent.java16 package test.subcomponent.repeat;
H A DSubcomponentWithRepeatedModule.java16 package test.subcomponent.repeat;
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/subcomponent/repeat/
H A DRepeatedModuleTest.java16 package test.subcomponent.repeat;
61 "test.subcomponent.repeat.RepeatedModule cannot be set "
78 "test.subcomponent.repeat.RepeatedModule cannot be set "
/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/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DTestUtil.java31 public static String repeat(char c, int count) { method in class:TestUtil
/external/vixl/examples/aarch32/
H A Dpi.cc100 uint32_t repeat = 10000000; local
101 double output_value = (*pi_function)(repeat);
102 printf("native: pi_approx(%u) = %3.10f\n", repeat, output_value);
/external/clang/test/SemaCXX/
H A Dblocks.cpp25 int repeat(int value, int (^block)(int), unsigned n) { function in namespace:test2
36 return repeat(1, ^(int v) { return v * base; }, n);
/external/eigen/test/
H A Dprec_inverse_4x4.cpp29 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/libyuv/files/unit_test/
H A Dunit_test.cc27 DEFINE_int32(libyuv_repeat, 0, "number of times to repeat test.");
43 const char* repeat = getenv("LIBYUV_REPEAT"); local
44 if (repeat) {
45 benchmark_iterations_ = atoi(repeat); // NOLINT
102 const char* repeat = getenv("LIBYUV_REPEAT"); local
103 if (repeat) {
104 benchmark_iterations_ = atoi(repeat); // NOLINT
161 const char* repeat = getenv("LIBYUV_REPEAT"); local
162 if (repeat) {
163 benchmark_iterations_ = atoi(repeat); // NOLIN
220 const char* repeat = getenv("LIBYUV_REPEAT"); local
279 const char* repeat = getenv("LIBYUV_REPEAT"); local
338 const char* repeat = getenv("LIBYUV_REPEAT"); local
[all...]
/external/v8/tools/
H A Dshell-utils.h43 const byte* ReadFileAndRepeat(const char* name, int* size, int repeat) { argument
52 *size = file_size * repeat;
/external/webrtc/webrtc/base/
H A Dsigslotrepeater.h18 // to the originating signal using the 'repeat' method. When the repeated
37 void repeat(base_type &s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater0
53 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater1
69 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater2
88 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater3
/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...]
H A DtestThreadsWin32.c88 unsigned int i, repeat; local
94 for (repeat = 0;repeat < TEST_REPEAT_COUNT;repeat++)
/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/okhttp/okio/okio/src/test/java/okio/
H A DTestUtil.java47 static String repeat(char c, int count) { method in class:TestUtil
/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/guava/guava/src/com/google/common/base/
H A DStrings.java145 * an input string. For example, {@code repeat("hey", 3)} returns the string
149 * @param count the number of times to repeat it; a nonnegative integer
154 public static String repeat(String string, int count) { method in class:Strings
/external/ltp/testcases/kernel/syscalls/remap_file_pages/
H A Dremap_file_pages01.c150 int i, j, repeat = 2; local
214 if (--repeat)
/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...]

Completed in 800 milliseconds

1234567