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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
str-to-num.js 32 function repeat(s, num) { function
43 assertEquals('0000000000', repeat('0', 10));
150 assertEquals(0, toNumber("0x000" + repeat('0', 1000)));
157 assertEquals(Infinity, toNumber("0x" + repeat('0', 1000) + '1'
158 + repeat('0', 1000)));
203 assertTrue(isNaN(toNumber("1" + repeat('0', 1000) + 'junk')), "1e1000 junk");
206 assertEquals(toNumber('1' + repeat('0', i)), Math.pow(10.0, i));
  /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;
RepeatedModule.java 16 package test.subcomponent.repeat;
ParentComponent.java 16 package test.subcomponent.repeat;
SubcomponentWithRepeatedModule.java 16 package test.subcomponent.repeat;
  /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/v8/test/mjsunit/es6/
string-repeat.js 28 assertEquals("000", String.prototype.repeat.call(0, 3));
29 assertEquals("-1-1-1", String.prototype.repeat.call(-1, 3));
30 assertEquals("2.12.12.1", String.prototype.repeat.call(2.1, 3));
31 assertEquals("", String.prototype.repeat.call([], 3));
32 assertEquals("1,2,3", String.prototype.repeat.call([1, 2, 3], 1));
33 assertEquals("true", String.prototype.repeat.call(true, 1));
34 assertEquals("false", String.prototype.repeat.call(false, 1));
35 assertEquals("[object Object]", String.prototype.repeat.call({}, 1));
37 assertEquals("000", String.prototype.repeat.apply(0, [3]));
38 assertEquals("-1-1-1", String.prototype.repeat.apply(-1, [3]))
    [all...]
  /external/v8/test/mjsunit/regress/
regress-475705.js 15 var regexp_src = repeat(".(.)", 12) + depth;
32 function repeat(str, n) { function
40 var subject = repeat("y", 200);
  /external/clang/test/SemaCXX/
blocks.cpp 25 int repeat(int value, int (^block)(int), unsigned n) { function in namespace:test2
36 return repeat(1, ^(int v) { return v * base; }, n);
  /external/libxml2/
testThreads.c 99 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...]
testThreadsWin32.c 88 unsigned int i, repeat; local
94 for (repeat = 0;repeat < TEST_REPEAT_COUNT;repeat++)
  /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);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
TestUtil.java 31 public static String repeat(char c, int count) { method in class:TestUtil
  /external/webrtc/webrtc/base/
sigslotrepeater.h 18 // 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
  /frameworks/base/core/java/android/os/
Vibrator.java 93 * To cause the pattern to repeat, pass the index into the pattern array at which
94 * to start the repeat, or -1 to disable repeating.
100 * @param repeat the index into pattern at which to repeat, or -1 if
101 * you don't want to repeat.
103 public void vibrate(long[] pattern, int repeat) {
104 vibrate(pattern, repeat, null);
117 * To cause the pattern to repeat, pass the index into the pattern array at which
118 * to start the repeat, or -1 to disable repeating.
124 * @param repeat the index into pattern at which to repeat, or -1 i
132 vibrate(Process.myUid(), mPackageName, pattern, repeat, attributes); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Strings.java 138 * an input string. For example, {@code repeat("hey", 3)} returns the string
142 * @param count the number of times to repeat it; a nonnegative integer
147 public static String repeat(String string, int count) { method in class:Strings
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/subcomponent/repeat/
RepeatedModuleTest.java 16 package test.subcomponent.repeat;
61 "test.subcomponent.repeat.RepeatedModule cannot be set "
78 "test.subcomponent.repeat.RepeatedModule cannot be set "
  /external/opencv3/modules/python/test/
ticket_6.py 19 repeat=100 variable in class:Creating
27 for i in range(self.repeat):
30 self.assertEqual(cnt, 0, msg="Created images are not black. Mean CountNonZero=%.3f" % (1.*cnt/self.repeat))
35 for i in range(self.repeat):
40 self.assertEqual(cnt, 0, msg="Memorized images are not black. Mean CountNonZero=%.3f" % (1.*cnt/self.repeat))
52 for i in range(self.repeat*100):
55 self.assertEqual(cnt, 0, msg="Repeating tostring(): Mean CountNonZero=%.3f" % (1.*cnt/self.repeat))
59 for i in range(self.repeat*100):
64 self.assertEqual(cnt, 0, msg="Repeating create and tostring(): Mean CountNonZero=%.3f" % (1.*cnt/self.repeat))
69 for i in range(self.repeat)
    [all...]
  /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;
  /bionic/tests/
stdatomic_test.cpp 204 size_t repeat = 0; local
224 if (repeat < repeat_limit) ++repeat;
229 EXPECT_EQ(repeat, repeat_limit);
  /external/guava/guava/src/com/google/common/base/
Strings.java 145 * 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/opencv3/modules/core/src/
opencl_kernels_core.cpp 3076 const struct ProgramEntry repeat={"repeat", member in namespace:cv::ocl::core
    [all...]
  /external/skia/src/animator/
SkAnimateBase.h 58 SkScalar repeat; member in class:SkAnimateBase

Completed in 1287 milliseconds

1 2 3 4 5 6 7 8 91011>>