/external/protobuf/gtest/test/ |
D | gtest_repeat_test.cc | 51 GTEST_DECLARE_int32_(repeat); 57 using testing::GTEST_FLAG(repeat); 172 void TestRepeat(int repeat) { in TestRepeat() argument 173 GTEST_FLAG(repeat) = repeat; in TestRepeat() 176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); in TestRepeat() 177 CheckCounts(repeat); in TestRepeat() 182 void TestRepeatWithEmptyFilter(int repeat) { in TestRepeatWithEmptyFilter() argument 183 GTEST_FLAG(repeat) = repeat; in TestRepeatWithEmptyFilter() 193 void TestRepeatWithFilterForSuccessfulTests(int repeat) { in TestRepeatWithFilterForSuccessfulTests() argument 194 GTEST_FLAG(repeat) = repeat; in TestRepeatWithFilterForSuccessfulTests() [all …]
|
/external/gtest/test/ |
D | gtest_repeat_test.cc | 51 GTEST_DECLARE_int32_(repeat); 57 using testing::GTEST_FLAG(repeat); 172 void TestRepeat(int repeat) { in TestRepeat() argument 173 GTEST_FLAG(repeat) = repeat; in TestRepeat() 176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); in TestRepeat() 177 CheckCounts(repeat); in TestRepeat() 182 void TestRepeatWithEmptyFilter(int repeat) { in TestRepeatWithEmptyFilter() argument 183 GTEST_FLAG(repeat) = repeat; in TestRepeatWithEmptyFilter() 193 void TestRepeatWithFilterForSuccessfulTests(int repeat) { in TestRepeatWithFilterForSuccessfulTests() argument 194 GTEST_FLAG(repeat) = repeat; in TestRepeatWithFilterForSuccessfulTests() [all …]
|
/external/chromium/testing/gtest/test/ |
D | gtest_repeat_test.cc | 51 GTEST_DECLARE_int32_(repeat); 57 using testing::GTEST_FLAG(repeat); 172 void TestRepeat(int repeat) { in TestRepeat() argument 173 GTEST_FLAG(repeat) = repeat; in TestRepeat() 176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); in TestRepeat() 177 CheckCounts(repeat); in TestRepeat() 182 void TestRepeatWithEmptyFilter(int repeat) { in TestRepeatWithEmptyFilter() argument 183 GTEST_FLAG(repeat) = repeat; in TestRepeatWithEmptyFilter() 193 void TestRepeatWithFilterForSuccessfulTests(int repeat) { in TestRepeatWithFilterForSuccessfulTests() argument 194 GTEST_FLAG(repeat) = repeat; in TestRepeatWithFilterForSuccessfulTests() [all …]
|
/external/llvm/test/CodeGen/PowerPC/ |
D | ppc-vaarg-agg.ll | 9 br i1 undef, label %repeat, label %maxlen_reached 11 repeat: ; preds = %entry 20 sw.bb72: ; preds = %repeat 23 sw.bb309: ; preds = %repeat 26 sw.bb313: ; preds = %repeat 29 sw.bb321: ; preds = %repeat 32 sw.bb323: ; preds = %repeat 36 sw.bb326: ; preds = %repeat
|
/external/webkit/Source/WebCore/css/ |
D | CSSGradientValue.h | 70 CSSGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false) 73 , m_repeating(repeat == Repeating) in m_stopsSorted() 104 …static PassRefPtr<CSSLinearGradientValue> create(CSSGradientRepeat repeat, bool deprecatedType = f… 106 return adoptRef(new CSSLinearGradientValue(repeat, deprecatedType)); 114 CSSLinearGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false) 115 : CSSGradientValue(repeat, deprecatedType) in CSSGradientValue() argument 129 …static PassRefPtr<CSSRadialGradientValue> create(CSSGradientRepeat repeat, bool deprecatedType = f… 131 return adoptRef(new CSSRadialGradientValue(repeat, deprecatedType)); 146 CSSRadialGradientValue(CSSGradientRepeat repeat, bool deprecatedType = false) 147 : CSSGradientValue(repeat, deprecatedType) in CSSGradientValue() argument
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | StringsTest.java | 110 assertEquals("", Strings.repeat(input, 0)); in testRepeat() 111 assertEquals("20", Strings.repeat(input, 1)); in testRepeat() 112 assertEquals("2020", Strings.repeat(input, 2)); in testRepeat() 113 assertEquals("202020", Strings.repeat(input, 3)); in testRepeat() 115 assertEquals("", Strings.repeat("", 4)); in testRepeat() 118 assertEquals(2 * i, Strings.repeat(input, i).length()); in testRepeat() 122 Strings.repeat("x", -1); in testRepeat() 128 Strings.repeat("12345678", (1 << 30) + 3); in testRepeat() 137 Strings.repeat(null, 5); in testRepeat_null()
|
/external/v8/test/mjsunit/ |
D | str-to-num.js | 32 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));
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | user.py | 61 def prompt(cls, message, repeat=1, raw_input=raw_input): argument 63 while (repeat and not response): 64 repeat -= 1 69 def prompt_password(cls, message, repeat=1): argument 70 return cls.prompt(message, repeat=repeat, raw_input=getpass.getpass)
|
/external/webkit/Source/WebKit/android/plugins/ |
D | PluginTimer.cpp | 35 PluginTimer::PluginTimer(PluginTimer** list, NPP instance, bool repeat, in PluginTimer() argument 40 m_repeat(repeat), in PluginTimer() 109 uint32_t PluginTimerList::schedule(NPP instance, uint32_t interval, bool repeat, in schedule() argument 112 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc); in schedule() 115 if (repeat) { in schedule()
|
/external/chromium/chrome/browser/ui/cocoa/applescript/examples/ |
D | bookmark_current_tabs.applescript | 10 repeat with i from 1 to (count tabs) 13 end repeat 18 repeat with i from 1 to (count url_list) 20 end repeat
|
/external/junit/src/junit/extensions/ |
D | RepeatedTest.java | 13 public RepeatedTest(Test test, int repeat) { in RepeatedTest() argument 15 if (repeat < 0) in RepeatedTest() 17 fTimesRepeat= repeat; in RepeatedTest()
|
/external/chromium/chrome/browser/resources/ |
D | menu.css | 14 background-repeat: no-repeat; 73 background-repeat: no-repeat;
|
/external/doclava/res/assets/templates/assets/ |
D | doclava-developer-core.css | 29 background-repeat:repeat-x; 197 background:transparent url(images/preliminary.png) repeat scroll 0 0; */ 248 background-repeat: no-repeat; 261 background-repeat: no-repeat; 283 background-repeat: no-repeat; 392 background-repeat: no-repeat; 431 background-repeat:no-repeat; 446 background-repeat:no-repeat;
|
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
D | 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
|
/external/valgrind/main/exp-bbv/tests/x86-linux/ |
D | 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/skia/src/animator/ |
D | SkAnimateField.cpp | 46 if (repeat != SK_Scalar1) in dump() 47 SkDebugf("repeat=\"%g\" ", SkScalarToFloat(repeat)); in dump() 50 if (repeat != SK_Scalar1) in dump() 51 SkDebugf("repeat=\"%x\" ", repeat); in dump()
|
/external/llvm/docs/CommandGuide/ |
D | manpage.css | 197 background-repeat: no-repeat; 223 background: #f0f5fa url(/i/corner-leftline.gif) repeat-y; 227 background: #f0f5fa url(/i/corner-rightline.gif) repeat-y; 231 background: #f0f5fa url(/i/corner-topline.gif) repeat-x; 235 background: #f0f5fa url(/i/corner-botline.gif) repeat-x; 239 background: #ffffff url(/i/corner-rightline.gif) repeat-y; 243 background: #ffffff url(/i/corner-topline.gif) repeat-x; 247 background: #ffffff url(/i/corner-botline.gif) repeat-x; 255 background: #ffffff url(/i/corner-leftline.gif) repeat-y;
|
/external/clang/docs/tools/ |
D | manpage.css | 197 background-repeat: no-repeat; 223 background: #f0f5fa url(/i/corner-leftline.gif) repeat-y; 227 background: #f0f5fa url(/i/corner-rightline.gif) repeat-y; 231 background: #f0f5fa url(/i/corner-topline.gif) repeat-x; 235 background: #f0f5fa url(/i/corner-botline.gif) repeat-x; 239 background: #ffffff url(/i/corner-rightline.gif) repeat-y; 243 background: #ffffff url(/i/corner-topline.gif) repeat-x; 247 background: #ffffff url(/i/corner-botline.gif) repeat-x; 255 background: #ffffff url(/i/corner-leftline.gif) repeat-y;
|
/external/llvm/docs/CommandGuide/html/ |
D | manpage.css | 197 background-repeat: no-repeat; 223 background: #f0f5fa url(/i/corner-leftline.gif) repeat-y; 227 background: #f0f5fa url(/i/corner-rightline.gif) repeat-y; 231 background: #f0f5fa url(/i/corner-topline.gif) repeat-x; 235 background: #f0f5fa url(/i/corner-botline.gif) repeat-x; 239 background: #ffffff url(/i/corner-rightline.gif) repeat-y; 243 background: #ffffff url(/i/corner-topline.gif) repeat-x; 247 background: #ffffff url(/i/corner-botline.gif) repeat-x; 255 background: #ffffff url(/i/corner-leftline.gif) repeat-y;
|
/external/clang/www/analyzer/ |
D | content.css | 71 …xt-decoration:none;background:url(images/tree/bullet.gif) center left no-repeat;white-space:nowrap} 74 #collapsetree li.click a{background:url(images/tree/bullet.gif) center left no-repeat} 75 #collapsetree ul li.click a{background:url(images/tree/bullet.gif) center left no-repeat} 76 …a.subMenu,#collapsetree ul li a.subMenu{background:url(images/tree/plus.gif) center left no-repeat} 77 #collapsetree li a.click{background:url(images/tree/minus.gif) center left no-repeat} 78 #collapsetree ul li a.click{background:url(images/tree/minus.gif) center left no-repeat}
|
/external/openfst/src/test/ |
D | weight_test.cc | 30 DEFINE_int32(repeat, 100000, "number of test repetitions"); 76 void TestTemplatedWeights(int repeat, int seed) { in TestTemplatedWeights() argument 80 tropical_tester.Test(repeat); in TestTemplatedWeights() 85 log_tester.Test(repeat); in TestTemplatedWeights() 90 minmax_tester.Test(repeat); in TestTemplatedWeights() 95 signedlog_tester.Test(repeat); in TestTemplatedWeights()
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | sigslotrepeater.h | 54 void repeat(base_type &s) { s.connect(this, &this_type::reemit); } in repeat() function 69 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat() function 84 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat() function 102 void repeat(base_type& s) { s.connect(this, &this_type::reemit); } in repeat() function
|
/external/chromium/chrome/browser/resources/options/chromeos/ |
D | internet_options_page.css | 83 background: left center no-repeat; 94 background: right center no-repeat; 164 background-repeat: no-repeat; 183 background-repeat: no-repeat;
|
/external/libxml2/ |
D | xmllint.c | 159 static int repeat = 0; variable 1674 if (repeat == 0) { in testSAX() 1878 if ((timing) && (!repeat)) { in streamFile() 1888 if ((timing) && (!repeat)) { in streamFile() 1893 if ((timing) && (!repeat)) { in streamFile() 1903 if ((timing) && (!repeat)) { in streamFile() 1912 if ((timing) && (!repeat)) { in streamFile() 1925 if ((timing) && (!repeat)) { in streamFile() 2027 if ((timing) && (!repeat)) { in walkDoc() 2040 if ((timing) && (!repeat)) { in walkDoc() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/android/layers/ |
D | FixedPositioning.h | 181 void setRepeatX(bool repeat) { m_repeatX = repeat; } in setRepeatX() argument 182 void setRepeatY(bool repeat) { m_repeatY = repeat; } in setRepeatY() argument
|