HomeSort by relevance Sort by last modified time
    Searched refs:cycle (Results 76 - 100 of 294) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/opencv3/modules/ts/misc/
table_formatter.py 667 "gmean$": ("Geometric mean (cycle reduction)", lambda test,test0,units: getCycleReduction(test, test0, "gmean")),
668 "mean$": ("Mean (cycle reduction)", lambda test,test0,units: getCycleReduction(test, test0, "mean")),
669 "min$": ("Min (cycle reduction)", lambda test,test0,units: getCycleReduction(test, test0, "min")),
670 "median$": ("Median (cycle reduction)", lambda test,test0,units: getCycleReduction(test, test0, "median")),
671 "stddev$": ("Standard deviation (cycle reduction)", lambda test,test0,units: getCycleReduction(test, test0, "stddev")),
672 "gstddev$": ("Standard deviation of Ln(time) (cycle reduction)", lambda test,test0,units: getCycleReduction(test, test0, "gstddev")),
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_itertools.py 406 self.assertEqual(take(10, cycle('abc')), list('abcabcabca'))
407 self.assertEqual(list(cycle('')), [])
408 self.assertRaises(TypeError, cycle)
409 self.assertRaises(TypeError, cycle, 5)
410 self.assertEqual(list(islice(cycle(gen3()),10)), [0,1,2,0,1,2,0,1,2,0])
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_itertools.py 406 self.assertEqual(take(10, cycle('abc')), list('abcabcabca'))
407 self.assertEqual(list(cycle('')), [])
408 self.assertRaises(TypeError, cycle)
409 self.assertRaises(TypeError, cycle, 5)
410 self.assertEqual(list(islice(cycle(gen3()),10)), [0,1,2,0,1,2,0,1,2,0])
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_itertools.py 406 self.assertEqual(take(10, cycle('abc')), list('abcabcabca'))
407 self.assertEqual(list(cycle('')), [])
408 self.assertRaises(TypeError, cycle)
409 self.assertRaises(TypeError, cycle, 5)
410 self.assertEqual(list(islice(cycle(gen3()),10)), [0,1,2,0,1,2,0,1,2,0])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_itertools.py 406 self.assertEqual(take(10, cycle('abc')), list('abcabcabca'))
407 self.assertEqual(list(cycle('')), [])
408 self.assertRaises(TypeError, cycle)
409 self.assertRaises(TypeError, cycle, 5)
410 self.assertEqual(list(islice(cycle(gen3()),10)), [0,1,2,0,1,2,0,1,2,0])
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterators.java 374 public static <T> Iterator<T> cycle(final Iterable<T> iterable) {
417 public static <T> Iterator<T> cycle(T... elements) {
418 return cycle(Lists.newArrayList(elements));
    [all...]
  /packages/apps/Settings/src/com/android/settings/datausage/
AppDataUsage.java 76 private static final String KEY_CYCLE = "cycle";
365 final CycleAdapter.CycleItem cycle = (CycleAdapter.CycleItem) mCycle.getSelectedItem();
367 mStart = cycle.start;
368 mEnd = cycle.end;
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraphValidator.java 517 * Validates that component dependencies do not form a cycle.
526 * Recursive method to validate that component dependencies do not form a cycle.
537 message.append(" contains a cycle in its component dependencies:\n");
664 * Validates that scopes do not participate in a scoping cycle - that is to say, scoped
667 * <p>As a side-effect, this means scoped components cannot have a dependency cycle between
918 ImmutableList<DependencyRequest> cycle = local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c     [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_asm.c 670 int i, cycle, component; local
672 for (cycle = 0; cycle < NUM_OF_CYCLES; cycle++)
674 bs->hw_gpr[cycle][component] = -1;
681 static int reserve_gpr(struct alu_bank_swizzle *bs, unsigned sel, unsigned chan, unsigned cycle)
683 if (bs->hw_gpr[cycle][chan] == -1)
684 bs->hw_gpr[cycle][chan] = sel;
685 else if (bs->hw_gpr[cycle][chan] != (int)sel) {
737 int r, src, num_src, sel, elem, cycle; local
767 int r, src, num_src, const_count, sel, elem, cycle; local
    [all...]
  /external/v8/test/mjsunit/
array-join.js 37 // Create a cycle.
  /external/v8/test/mjsunit/regress/
regress-crbug-173907.js 67 // Now swap values of phi1 and phi2 to create cycle between phis.
regress-crbug-173907b.js 67 // Now swap values of phi1 and phi2 to create cycle between phis.
  /hardware/bsp/intel/peripheral/libmraa/src/python/docs/
example.rst 59 .. literalinclude:: ../../../examples/python/cycle-pwm3.py
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
MoveHandler.java 252 match.cycle = true;
278 match.cycle = true;
  /development/apps/Development/src/com/android/development/
Connectivity.java 164 int cycle = 0;
168 cycle = Integer.parseInt((String)intent.getExtra(TEST_ALARM_CYCLE_EXTRA));
177 mSCCycleCount = cycle+1;
185 mSCCycleCount = cycle;
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3collections.h 427 * visited in the stack, then it means there wasa cycle such as 9->8->1->9
432 pANTLR3_UINT32 cycle; member in struct:ANTLR3_TOPO_struct
435 * A flag that indicates the algorithm found a cycle in the edges
438 * then the detected cycle will be contained in the cycle array and
439 * cycleLimit will point to the one after the last entry in the cycle.
444 * A watermark used to accumulate potential cycles in the cycle array.
446 * of the sort methods and if it is ANTLR3_TRUE then you can find the cycle
447 * in cycle[0]...cycle[cycleMark-1
    [all...]
  /external/llvm/utils/lit/lit/
util.py 121 for inc in itertools.cycle((5, 2, 2.5, 1)):
  /system/core/libmemunreachable/tests/
HeapWalker_test.cpp 156 TEST_F(HeapWalkerTest, cycle) {
  /external/okhttp/website/static/
bootstrap.min.js 6 !function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return e.fn.alert=r,this},e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")};var n=e.fn.button;e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return e.fn.button=n,this},e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},getActiveIndex:function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},to:function(t){var n=this.getActiveIndex(),r=this;if(t>this.$items.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){r.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",e(this.$items[t]))},pause:function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(t,n){var r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0],direction:o});if(i.hasClass("active"))return;this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var t=e(a.$indicators.children()[a.getActiveIndex()]);t&&t.addClass("active")}));if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$element.one(e.support.transition.end,function(){i.removeClass([t,o].join(" ")).addClass("active"),r.removeClass(["active",o].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger("slid")},0)})}else{this.$element.trigger(f);if(f.isDefaultPrevented())return;r.removeClass("active"),i.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return s&&this.cycle(),this}};var n=e.fn.carousel;e.fn.carousel=function(n){return this.each(function(){var r=e(this),i=r.data("carousel"),s=e.extend({},e.fn.carousel.defaults,typeof n=="object"&&n),o=typeof n=="string"?n:s.slide;i||r.data("carousel",i=new t(this,s)),typeof n=="number"?i.to(n):o?i[o]():s.interval&&i.pause().cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e.fn.carousel.noConflict=function(){return e.fn.carousel=n,this},e(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(t){var n=e(this),r,i=e(n.attr("data-target")||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,"")),s=e.extend({},i.data(),n.data()),o;i.carousel(s),(o=n.attr("data-slide-to"))&&i.data("carousel").pause().to(o).cycle(),t.preventDefault()})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element (…)
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Calendar.java 2083 int cycle, offset, shift = 0; local
2159 int cycle, offset, shift = 0; local
    [all...]
  /external/icu/icu4c/source/i18n/
calendar.cpp 1238 int cycle, offset, shift = 0; local
1306 int cycle, offset, shift = 0; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Calendar.java 2170 int cycle, offset, shift = 0; local
2245 int cycle, offset, shift = 0; local
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
bootstrap.js 283 .on('mouseleave', $.proxy(this.cycle, this))
288 cycle: function (e) {
311 return this.pause().cycle()
373 isCycling && this.cycle()
392 else if (options.interval) data.cycle()
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
IterablesTest.java 307 Iterable<String> cycle = Iterables.cycle("a", "b");
310 for (String string : cycle) {
320 for (String string : cycle) {
325 assertEquals("[a, b] (cycled)", cycle.toString());
    [all...]

Completed in 696 milliseconds

1 2 34 5 6 7 8 91011>>