HomeSort by relevance Sort by last modified time
    Searched refs:repeat (Results 1 - 25 of 348) 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/chromium_org/v8/test/mjsunit/harmony/
string-repeat.js 30 assertEquals("000", String.prototype.repeat.call(0, 3));
31 assertEquals("-1-1-1", String.prototype.repeat.call(-1, 3));
32 assertEquals("2.12.12.1", String.prototype.repeat.call(2.1, 3));
33 assertEquals("", String.prototype.repeat.call([], 3));
34 assertEquals("1,2,3", String.prototype.repeat.call([1, 2, 3], 1));
35 assertEquals("true", String.prototype.repeat.call(true, 1));
36 assertEquals("false", String.prototype.repeat.call(false, 1));
37 assertEquals("[object Object]", String.prototype.repeat.call({}, 1));
39 assertEquals("000", String.prototype.repeat.apply(0, [3]));
40 assertEquals("-1-1-1", String.prototype.repeat.apply(-1, [3]))
    [all...]
  /external/chromium_org/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/junit/src/junit/extensions/
RepeatedTest.java 13 public RepeatedTest(Test test, int repeat) {
15 if (repeat < 0)
17 fTimesRepeat= repeat;
  /external/chromium_org/third_party/polymer/components/core-icon/
core-icon.css 11 background-repeat: no-repeat;
  /external/chromium_org/third_party/polymer/components-chromium/core-icon/
core-icon.css 11 background-repeat: no-repeat;
  /external/chromium_org/chrome/browser/resources/options/chromeos/
keyboard_overlay.css 9 #auto-repeat-settings-section {
15 #auto-repeat-settings-section .row {
19 #auto-repeat-settings-section .row > * {
23 #auto-repeat-settings-section input[type='range'] {
  /external/chromium_org/chrome/browser/resources/options/
hotword_search_setting_indicator.css 8 background: url('chrome://theme/IDR_WARNING') left top no-repeat;
  /external/chromium_org/ui/webui/resources/css/
throbber.css 6 background: url('chrome://resources/images/throbber.svg') no-repeat;
  /external/chromium-trace/trace-viewer/src/ui/
tool_button.css 8 background-repeat: no-repeat;
quad_stack.css 38 background-repeat: no-repeat, no-repeat, repeat-x;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/topsites/magic8ball/
newTab.css 22 background-repeat: no-repeat;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBorderImage.cpp 26 PassRefPtrWillBeRawPtr<CSSValue> borderSlice, PassRefPtrWillBeRawPtr<CSSValue> outset, PassRefPtrWillBeRawPtr<CSSValue> repeat)
46 if (repeat)
47 list->append(repeat);
  /external/chromium_org/third_party/libyuv/unit_test/
unit_test.cc 24 const char* repeat = getenv("LIBYUV_REPEAT"); local
25 if (repeat) {
26 benchmark_iterations_ = atoi(repeat); // NOLINT
  /external/okhttp/okio/src/test/java/okio/
OkioTest.java 32 data.writeUtf8(repeat('b', 9998));
40 assertEquals("a" + repeat('b', 9998) + "c", out.toString("UTF-8"));
45 ("a" + repeat('b', Segment.SIZE * 2) + "c").getBytes(UTF_8));
57 assertEquals(repeat('b', Segment.SIZE), sink.readUtf8(sink.size()));
61 assertEquals(repeat('b', Segment.SIZE - 2) + "c", sink.readUtf8(sink.size()));
76 private String repeat(char c, int count) { method in class:OkioTest
OkBufferTest.java 54 buffer.writeUtf8(repeat('a', Segment.SIZE * 4));
60 buffer.writeUtf8(repeat('a', Segment.SIZE * 4 - 10));
66 buffer.writeUtf8(repeat('a', Segment.SIZE * 2));
73 buffer.writeUtf8(repeat('a', Segment.SIZE));
74 assertEquals(repeat('a', Segment.SIZE), buffer.readUtf8(Segment.SIZE));
96 buffer.writeUtf8(repeat('a', 6144));
102 buffer.writeUtf8(repeat('a', 1000));
103 buffer.writeUtf8(repeat('b', 2500));
104 buffer.writeUtf8(repeat('c', 5000));
105 buffer.writeUtf8(repeat('d', 10000))
677 private String repeat(char c, int count) { method in class:OkBufferTest
    [all...]
  /external/chromium-trace/trace-viewer/src/tcmalloc/
tcmalloc_snapshot_view.css 13 background-repeat: no-repeat;
23 background-repeat: no-repeat;
  /external/chromium_org/chrome/browser/resources/chromeos/login/
apps_menu.css 8 background: no-repeat 4px 50%;
  /external/chromium_org/chrome/browser/resources/ntp4/
new_guest_tab_theme.css 11 background-repeat: $5;
new_incognito_tab_theme.css 11 background-repeat: $5;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPattern.cpp 38 if (type.isEmpty() || type == "repeat")
41 if (type == "no-repeat")
44 if (type == "repeat-x")
47 if (type == "repeat-y")
50 exceptionState.throwDOMException(SyntaxError, "The provided type ('" + type + "') is not one of 'repeat', 'no-repeat', 'repeat-x', or 'repeat-y'.");
54 CanvasPattern::CanvasPattern(PassRefPtr<Image> image, Pattern::RepeatMode repeat, bool originClean)
55 : m_pattern(Pattern::createBitmapPattern(image, repeat))
    [all...]
CanvasPattern.h 47 Pattern::RepeatMode repeat, bool originClean)
49 return adoptRefWillBeNoop(new CanvasPattern(image, repeat, originClean));
  /external/chromium_org/chrome/browser/resources/app_list/
recommended_apps.css 14 background-repeat: no-repeat;
  /external/chromium_org/chrome/browser/resources/chromeos/
choose_mobile_network.css 17 background-repeat: no-repeat;

Completed in 764 milliseconds

1 2 3 4 5 6 7 8 91011>>