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

1 2 3 4 5 6 7 8 91011

  /external/libyuv/files/unit_test/
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/
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/chromium/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/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/libvpx/libvpx/third_party/googletest/src/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/junit/src/junit/extensions/
RepeatedTest.java 13 public RepeatedTest(Test test, int repeat) {
15 if (repeat < 0)
17 fTimesRepeat= repeat;
  /frameworks/base/core/java/android/os/
NullVibrator.java 46 public void vibrate(long[] pattern, int repeat) {
47 if (repeat >= pattern.length) {
64 public void vibrate(int owningUid, String owningPackage, long[] pattern, int repeat) {
65 vibrate(pattern, repeat);
Vibrator.java 63 * To cause the pattern to repeat, pass the index into the pattern array at which
64 * to start the repeat, or -1 to disable repeating.
70 * @param repeat the index into pattern at which to repeat, or -1 if
71 * you don't want to repeat.
73 public abstract void vibrate(long[] pattern, int repeat);
87 public abstract void vibrate(int owningUid, String owningPackage, long[] pattern, int repeat);
IVibratorService.aidl 24 void vibratePattern(int uid, String packageName, in long[] pattern, int repeat, IBinder token);
SystemVibrator.java 66 public void vibrate(long[] pattern, int repeat) {
67 vibrate(Process.myUid(), mPackageName, pattern, repeat); local
90 public void vibrate(int owningUid, String owningPackage, long[] pattern, int repeat) {
98 if (repeat < pattern.length) {
100 mService.vibratePattern(owningUid, owningPackage, pattern, repeat, mToken);
  /external/webkit/Source/WebCore/css/
CSSGradientValue.h 70 CSSGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false)
73 , m_repeating(repeat == Repeating)
104 static PassRefPtr<CSSLinearGradientValue> create(CSSGradientRepeat repeat, bool deprecatedType = false)
106 return adoptRef(new CSSLinearGradientValue(repeat, deprecatedType));
114 CSSLinearGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false)
115 : CSSGradientValue(repeat, deprecatedType)
129 static PassRefPtr<CSSRadialGradientValue> create(CSSGradientRepeat repeat, bool deprecatedType = false)
131 return adoptRef(new CSSRadialGradientValue(repeat, deprecatedType));
146 CSSRadialGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false)
147 : CSSGradientValue(repeat, deprecatedType
    [all...]
  /external/webkit/Source/WebKit/android/plugins/
PluginTimer.cpp 35 PluginTimer::PluginTimer(PluginTimer** list, NPP instance, bool repeat,
40 m_repeat(repeat),
109 uint32_t PluginTimerList::schedule(NPP instance, uint32_t interval, bool repeat,
112 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc);
115 if (repeat) {
PluginTimer.h 42 PluginTimer(PluginTimer** list, NPP instance, bool repeat,
74 uint32_t schedule(NPP instance, uint32_t interval, bool repeat,
  /system/core/toolbox/
hd.c 25 int repeat = 0; local
39 repeat = strtol(optarg, NULL, 0);
94 if(repeat)
95 sleep(repeat);
96 } while(repeat);
  /external/clang/test/SemaCXX/
blocks.cpp 26 int repeat(int value, int (^block)(int), unsigned n) { function in namespace:test2
37 return repeat(1, ^(int v) { return v * base; }, n);
  /external/eigen/test/
prec_inverse_4x4.cpp 30 template<typename MatrixType> void inverse_general_4x4(int repeat)
35 for(int i = 0; i < repeat; ++i)
49 double error_avg = error_sum / repeat;
  /external/chromium/third_party/libjingle/source/talk/base/
sigslotrepeater.h 35 // to the originating signal using the 'repeat' method. When the repeated
54 void repeat(base_type &s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater0
69 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater1
84 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater2
102 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } function in class:sigslot::repeater3
  /external/guava/guava-tests/test/com/google/common/base/
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/skia/legacy/src/animator/
SkAnimateField.cpp 46 if (repeat != SK_Scalar1)
47 SkDebugf("repeat=\"%g\" ", SkScalarToFloat(repeat));
50 if (repeat != SK_Scalar1)
51 SkDebugf("repeat=\"%x\" ", repeat);
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
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
million.S 12 dec %rcx # repeat count times
  /external/valgrind/main/exp-bbv/tests/arm-linux/
million.S 17 bne big_loop @ repeat till zero
  /external/valgrind/main/exp-bbv/tests/x86-linux/
clone_test.S 15 dec %ecx # repeat count times
63 dec %ecx # repeat count times
72 dec %ecx # repeat count times
87 dec %ecx # repeat count times
  /external/webkit/Source/WebCore/xml/
XMLViewer.css 63 background-repeat: no-repeat;

Completed in 1441 milliseconds

1 2 3 4 5 6 7 8 91011