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

123

/external/v8/test/mjsunit/
H A Dstr-to-num.js32 function repeat(s, num) { function
43 assertEquals('0000000000', repeat('0', 10));
151 assertEquals(0, toNumber("0x000" + repeat('0', 1000)));
158 assertEquals(Infinity, toNumber("0x" + repeat('0', 1000) + '1'
159 + repeat('0', 1000)));
160 assertEquals(-Infinity, toNumber("-0x1" + repeat('0', 1000)));
205 assertTrue(isNaN(toNumber("1" + repeat('0', 1000) + 'junk')), "1e1000 junk");
208 assertEquals(toNumber('1' + repeat('0', i)), Math.pow(10.0, i));
H A Dstrict-mode.js397 function repeat(n, f) { function
422 repeat(10, function() { testAssignToUndefined(assignToUndefined, true); });
424 repeat(10, function() { testAssignToUndefined(assignToUndefined, false); });
426 repeat(10, function() { testAssignToUndefined(assignToUndefined, true); });
428 repeat(10, function() { testAssignToUndefined(assignToUndefined, false); });
452 repeat(10, function() {
456 repeat(10, function() {
460 repeat(10, function() {
464 repeat(10, function() {
/external/junit/src/junit/extensions/
H A DRepeatedTest.java13 public RepeatedTest(Test test, int repeat) { argument
15 if (repeat < 0)
17 fTimesRepeat= repeat;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsigslotrepeater.h35 // 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/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/chromium/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/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/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/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/skia/src/animator/
H A DSkAnimateBase.h58 SkScalar repeat; member in class:SkAnimateBase
/external/webkit/Source/WebKit/android/plugins/
H A DPluginTimer.cpp35 PluginTimer::PluginTimer(PluginTimer** list, NPP instance, bool repeat, argument
40 m_repeat(repeat),
109 uint32_t PluginTimerList::schedule(NPP instance, uint32_t interval, bool repeat, argument
112 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc);
115 if (repeat) {
/external/webkit/Source/WebKit2/Platform/gtk/
H A DRunLoopGtk.cpp111 void RunLoop::TimerBase::start(double fireInterval, bool repeat) argument
117 m_isRepeating = repeat;
/external/webkit/Source/WebKit2/Platform/qt/
H A DRunLoopQt.cpp118 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat) argument
122 m_isRepeating = repeat;
/external/openfst/src/test/
H A Dweight_test.cc30 DEFINE_int32(repeat, 100000, "number of test repetitions");
76 void TestTemplatedWeights(int repeat, int seed) { argument
80 tropical_tester.Test(repeat);
85 log_tester.Test(repeat);
90 minmax_tester.Test(repeat);
95 signedlog_tester.Test(repeat);
H A Dalgo_test.h27 DECLARE_int32(repeat); // defined in ./algo_test.cc variable
/external/webkit/Source/WebCore/svg/
H A DSVGAnimateTransformElement.cpp132 void SVGAnimateTransformElement::calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement*) argument
142 if (isAccumulated() && repeat) {
143 SVGTransform accumulatedTransform = SVGTransformDistance(m_fromTransform, m_toTransform).scaledDistance(repeat).addToSVGTransform(SVGTransform());
H A DSVGAnimateElement.cpp167 void SVGAnimateElement::calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement) argument
217 if (isAccumulated() && repeat)
218 number += m_toNumber * repeat;
/external/webkit/Source/WebKit2/Platform/win/
H A DRunLoopWin.cpp201 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat) argument
203 m_isRepeating = repeat;
/external/chromium/testing/gtest/src/
H A Dgtest-port.cc290 // or \c otherwise. repeat is the repetition meta character (?, *,
296 bool escaped, char c, char repeat, const char* regex,
298 const size_t min_count = (repeat == '+') ? 1 : 0;
299 const size_t max_count = (repeat == '?') ? 1 :
295 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
/external/gtest/src/
H A Dgtest-port.cc290 // or \c otherwise. repeat is the repetition meta character (?, *,
296 bool escaped, char c, char repeat, const char* regex,
298 const size_t min_count = (repeat == '+') ? 1 : 0;
299 const size_t max_count = (repeat == '?') ? 1 :
295 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
/external/llvm/utils/unittest/googletest/
H A Dgtest-port.cc290 // or \c otherwise. repeat is the repetition meta character (?, *,
296 bool escaped, char c, char repeat, const char* regex,
298 const size_t min_count = (repeat == '+') ? 1 : 0;
299 const size_t max_count = (repeat == '?') ? 1 :
295 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
/external/protobuf/gtest/src/
H A Dgtest-port.cc279 // or \c otherwise. repeat is the repetition meta character (?, *,
285 bool escaped, char c, char repeat, const char* regex,
287 const size_t min_count = (repeat == '+') ? 1 : 0;
288 const size_t max_count = (repeat == '?') ? 1 :
284 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
/external/webkit/Source/WebCore/css/
H A DCSSGradientValue.h70 CSSGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false) argument
73 , m_repeating(repeat == Repeating)
104 static PassRefPtr<CSSLinearGradientValue> create(CSSGradientRepeat repeat, bool deprecatedType = false) argument
106 return adoptRef(new CSSLinearGradientValue(repeat, deprecatedType));
114 CSSLinearGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false) argument
115 : CSSGradientValue(repeat, deprecatedType)
129 static PassRefPtr<CSSRadialGradientValue> create(CSSGradientRepeat repeat, bool deprecatedType = false) argument
131 return adoptRef(new CSSRadialGradientValue(repeat, deprecatedType));
146 CSSRadialGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false) argument
147 : CSSGradientValue(repeat, deprecatedTyp
[all...]
/external/libffi/src/
H A Dclosures.c288 int repeat; member in struct:__anon7309
308 if (open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat)
335 if (!open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat
387 && open_temp_exec_file_opts[open_temp_exec_file_opts_idx].repeat)
/external/qemu/
H A Dandroid-trace_common.h60 uint32_t repeat; // repeat count (= 0 if just one occurrence) member in struct:BBRec
61 uint64_t time_diff; // diff from previous time (if repeat > 0)
73 uint32_t repeat; // repeat count member in struct:InsnRec

Completed in 476 milliseconds

123