HomeSort by relevance Sort by last modified time
    Searched defs:repeat (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/v8/test/mjsunit/
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));
strict-mode.js 401 function repeat(n, f) { function
426 repeat(10, function() { testAssignToUndefined(assignToUndefined, true); });
428 repeat(10, function() { testAssignToUndefined(assignToUndefined, false); });
430 repeat(10, function() { testAssignToUndefined(assignToUndefined, true); });
432 repeat(10, function() { testAssignToUndefined(assignToUndefined, false); });
456 repeat(10, function() {
460 repeat(10, function() {
464 repeat(10, function() {
468 repeat(10, function() {
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
sigslotrepeater.h 35 // 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/
blocks.cpp 25 int repeat(int value, int (^block)(int), unsigned n) { function in namespace:test2
36 return repeat(1, ^(int v) { return v * base; }, n);
  /system/core/toolbox/
hd.c 25 int repeat = 0; local
39 repeat = strtol(optarg, NULL, 0);
92 if(repeat)
93 sleep(repeat);
94 } while(repeat);
  /external/skia/src/animator/
SkAnimateBase.h 66 SkScalar repeat; member in class:SkAnimateBase
  /external/libffi/src/
closures.c 288 int repeat; member in struct:__anon7573
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/
android-trace_common.h 60 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
  /frameworks/base/core/java/android/text/method/
BaseMovementMethod.java 56 final int repeat = event.getRepeatCount(); local
58 for (int i = 0; i < repeat; i++) {
  /frameworks/base/services/java/com/android/server/
VibratorService.java 57 Vibration(IBinder token, long[] pattern, int repeat, int uid) {
58 this(token, 0, pattern, repeat, uid);
62 int repeat, int uid) {
67 mRepeat = repeat;
153 public void vibratePattern(long[] pattern, int repeat, IBinder token) {
174 || repeat >= pattern.length || token == null) {
178 Vibration vib = new Vibration(token, pattern, repeat, uid);
188 if (repeat >= 0) {
192 // A negative repeat means that this pattern is not meant
193 // to repeat. Treat it like a simple vibration
333 int repeat = mVibration.mRepeat; local
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
PullParserDtdTest.java 453 String a = repeat('a', READ_BUFFER_SIZE + 1);
454 String b = repeat('b', READ_BUFFER_SIZE + 1);
455 String c = repeat('c', READ_BUFFER_SIZE + 1);
526 private String repeat(char c, int length) { method in class:PullParserDtdTest
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
FilenameUtils.java 1190 int repeat = filename.indexOf(wcs[wcsIdx], textIdx + 1); local
    [all...]
  /external/qemu/android/camera/
camera-service.c 1180 int repeat; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
JsonReaderTest.java 887 String spaces = repeat(' ', 8192);
904 private String repeat(char c, int count) { method in class:JsonReaderTest
  /bionic/libc/regex/
regcomp.c 85 static void repeat(struct parse *, sopno, int, int);
416 repeat(p, pos, count, count2);
587 repeat(p, pos, count, count2);
936 - repeat - generate code for a bounded repetition, recursively if needed
939 repeat(struct parse *p, function
965 repeat(p, start+1, 1, to);
985 repeat(p, copy, 1, to-1);
993 repeat(p, copy, from-1, to-1);
997 repeat(p, copy, from-1, to);
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 249 int repeat = Integer.parseInt(args[4]); local
254 MonkeyKeyEvent e = new MonkeyKeyEvent(downTime, eventTime, action, code, repeat,
  /external/llvm/lib/Support/
regcomp.c 86 static void repeat(struct parse *, sopno, int, int);
424 repeat(p, pos, count, count2);
595 repeat(p, pos, count, count2);
944 - repeat - generate code for a bounded repetition, recursively if needed
947 repeat(struct parse *p, function
973 repeat(p, start+1, 1, to);
993 repeat(p, copy, 1, to-1);
1001 repeat(p, copy, from-1, to-1);
1005 repeat(p, copy, from-1, to);
    [all...]
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 322 if (nameString.startsWith("repeat(") && nameString.endsWith(")")) {
323 // FIXME: For repeat events we just need to add the data carrying TimeEvent class and
328 nameString = "repeat";
819 float SVGSMILElement::calculateAnimationPercentAndRepeat(SMILTime elapsed, unsigned& repeat) const
822 repeat = 0;
824 repeat = 0;
828 repeat = 0;
836 repeat = static_cast<unsigned>(repeatingDuration.value() / simpleDuration.value());
838 repeat--;
841 repeat = static_cast<unsigned>(activeTime.value() / simpleDuration.value())
912 unsigned repeat; local
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 85 static void repeat(struct parse *, sopno, int, int);
416 repeat(p, pos, count, count2);
587 repeat(p, pos, count, count2);
936 - repeat - generate code for a bounded repetition, recursively if needed
939 repeat(struct parse *p, function
965 repeat(p, start+1, 1, to);
985 repeat(p, copy, 1, to-1);
993 repeat(p, copy, from-1, to-1);
997 repeat(p, copy, from-1, to);
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
XmlKeyboardLoader.java 217 private static final String XMLATTR_KEY_REPEAT = "repeat";
300 boolean repeat; field in class:XmlKeyboardLoader.KeyCommonAttributes
313 repeat = getBoolean(mXrp, XMLATTR_KEY_REPEAT, defAttr.repeat);
550 attrKeys.repeat, attrKeys.balloon);
687 softKey.setKeyAttribute(keyCode, keyLabel, attrKey.repeat,
728 boolean repeat = getBoolean(xrp, XMLATTR_KEY_REPEAT, attrKey.repeat);
730 rootState.setStateFlags(repeat, balloon);
    [all...]
  /external/gtest/test/
gtest_unittest.cc 49 || testing::GTEST_FLAG(repeat) > 0
116 using testing::GTEST_FLAG(repeat);
4443 Int32 repeat; member in struct:testing::Flags
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 716 class Repeat : public Pick {
738 Repeat(Pick * base, int minCount =0, int maxCount = 1, Buffer_int * weights = NULL):
744 virtual ~Repeat(){
971 UBool repeat (Pick* &node /*in,out*/){ function in class:Parser
    [all...]
  /external/libxml2/
xmllint.c 157 static int repeat = 0; variable
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc 50 || testing::GTEST_FLAG(repeat) > 0
133 using testing::GTEST_FLAG(repeat);
5328 Int32 repeat; member in struct:testing::Flags
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.cc 173 repeat,
174 internal::Int32FromGTestEnv("repeat", 1),
175 "How many times to repeat each test. Specify a negative number "
3163 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
    [all...]

Completed in 964 milliseconds

1 2 3