HomeSort by relevance Sort by last modified time
    Searched refs:repeat (Results 1 - 25 of 883) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/repeat/
OnlyUsedInChild.java 1 package test.subcomponent.repeat;
OnlyUsedInParent.java 1 package test.subcomponent.repeat;
SubcomponentWithoutRepeatedModule.java 16 package test.subcomponent.repeat;
SubcomponentWithRepeatedModule.java 16 package test.subcomponent.repeat;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mri/
repeat.s 1 ; Test MRI structured repeat pseudo-op.
5 repeat
9 repeat
repeat.d 2 #name: MRI structured repeat
5 # Test MRI structured repeat pseudo-op.
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowVibrator.java 14 private int repeat; field in class:ShadowVibrator
23 public void vibrate(long[] pattern, int repeat) {
26 this.repeat = repeat;
52 return repeat;
  /external/google-breakpad/src/testing/gtest/test/
gtest_repeat_test.cc 51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
172 void TestRepeat(int repeat) {
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) {
183 GTEST_FLAG(repeat) = repeat;
    [all...]
  /external/googletest/googletest/test/
gtest_repeat_test.cc 51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
172 void TestRepeat(int repeat) {
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) {
183 GTEST_FLAG(repeat) = repeat;
    [all...]
  /external/protobuf/gtest/test/
gtest_repeat_test.cc 51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
172 void TestRepeat(int repeat) {
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) {
183 GTEST_FLAG(repeat) = repeat;
    [all...]
  /external/v8/testing/gtest/test/
gtest_repeat_test.cc 51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
172 void TestRepeat(int repeat) {
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) {
183 GTEST_FLAG(repeat) = repeat;
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_repeat_test.cc 51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
172 void TestRepeat(int repeat) {
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) {
183 GTEST_FLAG(repeat) = repeat;
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest_repeat_test.cc 51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
172 void TestRepeat(int repeat) {
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) {
183 GTEST_FLAG(repeat) = repeat;
    [all...]
  /external/junit/src/main/java/junit/extensions/
RepeatedTest.java 12 public RepeatedTest(Test test, int repeat) {
14 if (repeat < 0) {
17 fTimesRepeat = repeat;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowVibrator.java 12 int repeat; field in class:ShadowVibrator
59 * Returns the last vibration repeat times.
62 return repeat;
ShadowSystemVibrator.java 38 protected void vibrate(long[] pattern, int repeat) {
39 recordVibratePattern(pattern, repeat);
43 protected void vibrate(int owningUid, String owningPackage, long[] pattern, int repeat) {
44 recordVibratePattern(pattern, repeat);
48 protected void vibrate(int uid, String opPkg, long[] pattern, int repeat, AudioAttributes attributes) {
49 recordVibratePattern(pattern, repeat);
98 private void recordVibratePattern(long[] pattern, int repeat) {
101 this.repeat = repeat;
103 if (repeat < 0)
    [all...]
  /external/okhttp/okio/okio/src/test/java/okio/
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('f', 50000))
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
RoboVibrator.java 19 private int repeat; field in class:RoboVibrator
38 public void vibrate(long[] pattern, int repeat) {
41 this.repeat = repeat;
43 if (repeat < 0) {
96 return repeat;
  /external/libyuv/files/unit_test/
unit_test.cc 30 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/vulkan-validation-layers/libs/glm/gtx/
wrap.hpp 61 GLM_FUNC_DECL genType repeat(genType const & Texcoord);
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
wrap.hpp 61 GLM_FUNC_DECL genType repeat(genType const & Texcoord);
  /art/tools/dexfuzz/src/dexfuzz/
DexFuzz.java 64 if (Options.repeat > 1 && Options.execute) {
90 if ((Options.repeat > 1) && Options.execute) {
92 } else if ((Options.repeat > 1) && !Options.execute) {
94 } else if ((Options.repeat == 1) && Options.execute) {
96 } else if ((Options.repeat == 1) && !Options.execute) {
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
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/
testThreads.c 103 unsigned int i, repeat; local
109 for (repeat = 0;repeat < 500;repeat++) {
144 unsigned int i, repeat; local
151 for (repeat = 0;repeat < 500;repeat++) {
152 printf("repeat: %d\n",repeat);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
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);

Completed in 1116 milliseconds

1 2 3 4 5 6 7 8 91011>>