Searched defs:repeat (Results 1 - 25 of 147) sorted by path

123456

/external/chromium_org/chrome/browser/download/
H A Ddownload_path_reservation_tracker_unittest.cc56 // Creates a name of form 'a'*repeat + suffix
58 size_t repeat, const base::FilePath::CharType* suffix);
144 size_t repeat, const base::FilePath::CharType* suffix) {
146 (base::FilePath::StringType(repeat, FILE_PATH_LITERAL('a'))
143 GetLongNamePathInDownloadsDirectory( size_t repeat, const base::FilePath::CharType* suffix) argument
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromeBackgroundScript.js42 goog.string.removeAll=function(a,b){var c=new RegExp(goog.string.regExpEscape(b),"g");return a.replace(c,"")};goog.string.regExpEscape=function(a){return String(a).replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g,"\\$1").replace(/\x08/g,"\\x08")};goog.string.repeat=function(a,b){return Array(b+1).join(a)};goog.string.padNumber=function(a,b,c){a=goog.isDef(c)?a.toFixed(c):String(a);c=a.indexOf(".");-1==c&&(c=a.length);return goog.string.repeat("0",Math.max(0,b-c))+a};
74 goog.array.range=function(a,b,c){var d=[],e=0,f=a;c=c||1;void 0!==b&&(e=a,f=b);if(0>c*(f-e))return[];if(0<c)for(a=e;a<f;a+=c)d.push(a);else for(a=e;a>f;a+=c)d.push(a);return d};goog.array.repeat=function(a,b){for(var c=[],d=0;d<b;d++)c[d]=a;return c};goog.array.flatten=function(a){for(var b=[],c=0;c<arguments.length;c++){var d=arguments[c];goog.isArray(d)?b.push.apply(b,goog.array.flatten.apply(null,d)):b.push(d)}return b};
H A DchromeVoxChromeOptionsScript.js103 goog.string.removeAll=function(a,b){var c=new RegExp(goog.string.regExpEscape(b),"g");return a.replace(c,"")};goog.string.regExpEscape=function(a){return String(a).replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g,"\\$1").replace(/\x08/g,"\\x08")};goog.string.repeat=function(a,b){return Array(b+1).join(a)};goog.string.padNumber=function(a,b,c){a=goog.isDef(c)?a.toFixed(c):String(a);c=a.indexOf(".");-1==c&&(c=a.length);return goog.string.repeat("0",Math.max(0,b-c))+a};
135 goog.array.range=function(a,b,c){var d=[],e=0,f=a;c=c||1;void 0!==b&&(e=a,f=b);if(0>c*(f-e))return[];if(0<c)for(a=e;a<f;a+=c)d.push(a);else for(a=e;a>f;a+=c)d.push(a);return d};goog.array.repeat=function(a,b){for(var c=[],d=0;d<b;d++)c[d]=a;return c};goog.array.flatten=function(a){for(var b=[],c=0;c<arguments.length;c++){var d=arguments[c];goog.isArray(d)?b.push.apply(b,goog.array.flatten.apply(null,d)):b.push(d)}return b};
/external/chromium_org/content/child/npapi/
H A Dplugin_host.cc1051 NPBool repeat,
1057 return plugin->ScheduleTimer(interval, repeat, func);
1049 NPN_ScheduleTimer(NPP id, uint32_t interval, NPBool repeat, void (*func)(NPP id, uint32_t timer_id)) argument
H A Dplugin_instance.cc454 NPBool repeat,
462 // Record timer interval and repeat.
465 info.repeat = repeat ? true : false;
510 if (info.repeat) {
453 ScheduleTimer(uint32 interval, NPBool repeat, void (*func)(NPP id, uint32 timer_id)) argument
H A Dplugin_instance.h175 NPBool repeat,
332 bool repeat; member in struct:content::PluginInstance::TimerInfo
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
H A DAccessibilityInjector.java376 public void vibrate(long[] pattern, int repeat) { argument
381 repeat = -1;
383 mVibrator.vibrate(pattern, repeat);
/external/chromium_org/testing/gtest/src/
H A Dgtest-port.cc699 // or \c otherwise. repeat is the repetition meta character (?, *,
705 bool escaped, char c, char repeat, const char* regex,
707 const size_t min_count = (repeat == '+') ? 1 : 0;
708 const size_t max_count = (repeat == '?') ? 1 :
704 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
H A Dgtest.cc254 repeat,
255 internal::Int32FromGTestEnv("repeat", 1),
256 "How many times to repeat each test. Specify a negative number "
3008 if (GTEST_FLAG(repeat) != 1)
4555 // How many times to repeat the tests? We don't want to repeat them
4557 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
4558 // Repeats forever if the repeat count is negative.
4559 const bool forever = repeat <
[all...]
/external/chromium_org/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...]
H A Dgtest_unittest.cc50 || testing::GTEST_FLAG(repeat) > 0
215 using testing::GTEST_FLAG(repeat);
1541 GTEST_FLAG(repeat) = 1;
1568 EXPECT_EQ(1, GTEST_FLAG(repeat));
1584 GTEST_FLAG(repeat) = 100;
5399 repeat(1),
5481 static Flags Repeat(Int32 repeat) { argument
5483 flags.repeat = repeat;
5529 Int32 repeat; member in struct:testing::Flags
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBorderImage.cpp26 PassRefPtrWillBeRawPtr<CSSValue> borderSlice, PassRefPtrWillBeRawPtr<CSSValue> outset, PassRefPtrWillBeRawPtr<CSSValue> repeat)
46 if (repeat)
47 list->append(repeat);
25 createBorderImageValue(PassRefPtrWillBeRawPtr<CSSValue> image, PassRefPtrWillBeRawPtr<CSSValue> imageSlice, PassRefPtrWillBeRawPtr<CSSValue> borderSlice, PassRefPtrWillBeRawPtr<CSSValue> outset, PassRefPtrWillBeRawPtr<CSSValue> repeat) argument
H A DCSSComputedStyleDeclaration.cpp534 // Create the repeat rules.
535 RefPtrWillBeRawPtr<CSSValue> repeat = valueForNinePieceImageRepeat(image); local
537 return createBorderImageValue(imageValue.release(), imageSlices.release(), borderSlices.release(), outset.release(), repeat.release());
1300 // if the two values are equivalent to repeat-x or repeat-y, just return the shorthand.
H A DCSSGradientValue.h112 CSSGradientValue(ClassType classType, CSSGradientRepeat repeat, CSSGradientType gradientType) argument
116 , m_repeating(repeat == Repeating)
159 static PassRefPtrWillBeRawPtr<CSSLinearGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSLinearGradient) argument
161 return adoptRefWillBeNoop(new CSSLinearGradientValue(repeat, gradientType));
181 CSSLinearGradientValue(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSLinearGradient) argument
182 : CSSGradientValue(LinearGradientClass, repeat, gradientType)
199 static PassRefPtrWillBeRawPtr<CSSRadialGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSRadialGradient) argument
201 return adoptRefWillBeNoop(new CSSRadialGradientValue(repeat, gradientType));
228 CSSRadialGradientValue(CSSGradientRepeat repeat, CSSGradientType gradientType = CSSRadialGradient) argument
229 : CSSGradientValue(RadialGradientClass, repeat, gradientTyp
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp3578 if (currentValue->unit == CSSParserValue::Function && equalIgnoringCase(currentValue->function->name, "repeat")) {
3611 // The spec allows us to clamp the number of repetitions: http://www.w3.org/TR/css-grid-1/#repeat-notation
3648 // parseGridTrackSize iterated over the repeat arguments, move to the next value.
5675 void commitRepeat(PassRefPtrWillBeRawPtr<CSSValue> repeat) argument
5677 m_repeat = repeat;
5772 RefPtrWillBeRawPtr<CSSValue> repeat = nullptr; local
5773 if (parser.parseBorderImageRepeat(repeat))
5774 context.commitRepeat(repeat.release());
5901 // We need to clone and repeat values for any omissions.
6016 // We need to clone and repeat value
[all...]
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DKeyboardEvent.h45 bool repeat; member in struct:blink::KeyboardEventInit
96 bool repeat() const { return m_isAutoRepeat; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasPattern.cpp38 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) argument
55 : m_pattern(Pattern::createBitmapPattern(image, repeat))
[all...]
H A DCanvasPattern.h47 Pattern::RepeatMode repeat, bool originClean)
49 return adoptRefWillBeNoop(new CanvasPattern(image, repeat, originClean));
46 create(PassRefPtr<Image> image, Pattern::RepeatMode repeat, bool originClean) argument
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSVGSMILElement.cpp50 static PassRefPtrWillBeRawPtr<RepeatEvent> create(const AtomicString& type, int repeat) argument
52 return adoptRefWillBeNoop(new RepeatEvent(type, false, false, repeat));
57 int repeat() const { return m_repeat; } function in class:blink::FINAL
65 RepeatEvent(const AtomicString& type, bool canBubble, bool cancelable, int repeat = -1)
67 , m_repeat(repeat)
162 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat) argument
168 , m_repeat(repeat)
463 int repeat = -1; local
464 if (nameString.startsWith("repeat(") && nameString.endsWith(')')) {
465 repeat
1192 unsigned repeat = 0; local
[all...]
H A DSVGSMILElement.h141 virtual void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) = 0;
182 Condition(Type, BeginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat = -1);
183 static PassOwnPtrWillBeRawPtr<Condition> create(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat = -1)
185 return adoptPtrWillBeNoop(new Condition(type, beginOrEnd, baseID, name, offset, repeat));
195 int repeat() const { return m_repeat; } function in class:blink::SVGSMILElement::Condition
235 float calculateAnimationPercentAndRepeat(SMILTime elapsed, unsigned& repeat) const;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DScalarizeVecAndMatConstructorArgs.cpp176 int repeat = std::min(size, node->getNominalSize()); local
177 size -= repeat;
178 for (int index = 0; index < repeat; ++index)
201 int repeat = std::min(size, node->getCols() * node->getRows()); local
202 size -= repeat;
203 while (repeat > 0)
216 repeat--;
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Ddecode.c140 int repeat = 0; local
165 repeat = 0;
180 repeat = 0;
183 old_repeat = repeat;
184 if (repeat > 0) {
185 repeat -= 2;
186 repeat <<= extra_bits;
188 repeat += (int)BrotliReadBits(br, extra_bits) + 3;
189 repeat_delta = repeat - old_repeat;
513 a single eight-byte copy from <src> to <dst> will repeat th
[all...]
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 636 milliseconds

123456