HomeSort by relevance Sort by last modified time
    Searched defs:repeat (Results 51 - 75 of 213) sorted by null

1 23 4 5 6 7 8 9

  /external/qemu/include/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
  /external/valgrind/main/none/tests/ppc32/
test_dfp4.c 492 Bool repeat = True; local
519 if (repeat) {
520 repeat = False;
552 int i, repeat = 1, BF = 4; local
588 if (repeat) {
589 repeat = 0;
test_dfp1.c 328 int i, repeat = 1; local
381 if (repeat) {
382 repeat = 0;
test_dfp3.c 1172 int i, repeat = 1; local
    [all...]
  /frameworks/base/core/java/android/text/method/
BaseMovementMethod.java 56 final int repeat = event.getRepeatCount(); local
58 for (int i = 0; i < repeat; i++) {
  /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/UnifiedEmail/src/org/apache/commons/io/
FilenameUtils.java 1190 int repeat = filename.indexOf(wcs[wcsIdx], textIdx + 1); local
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
JsonReaderTest.java 933 String spaces = repeat(' ', 8192);
950 private String repeat(char c, int count) { method in class:JsonReaderTest
    [all...]
  /external/okhttp/okio/src/test/java/okio/
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/pixman/test/
stress-test.c 407 pixman_repeat_t repeat; local
411 /* Repeat */
412 repeat = repeats[prng_rand_n (ARRAY_LENGTH (repeats))];
413 pixman_image_set_repeat (image, repeat);
  /external/qemu/android/camera/
camera-service.c 1000 int repeat; local
    [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CameraControlPane.java 279 public boolean repeat(CaptureRequest request) { method in class:CameraControlPane
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-deploy-plugin/2.5/
maven-deploy-plugin-2.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-install-plugin/2.3.1/
maven-install-plugin-2.3.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-resources-plugin/2.4.3/
maven-resources-plugin-2.4.3.jar 
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 144 static void repeat(struct parse *p, sopno start, int from, int to, size_t reclimit);
523 repeat(p, pos, count, count2, 0);
716 repeat(p, pos, count, count2, 0);
1127 - repeat - generate code for a bounded repetition, recursively if needed
1128 == static void repeat(struct parse *p, sopno start, int from, int to,
1132 repeat( function
1166 repeat(p, start+1, 1, to, reclimit);
1186 repeat(p, copy, 1, to-1, reclimit);
1194 repeat(p, copy, from-1, to-1, reclimit);
1198 repeat(p, copy, from-1, to, reclimit)
    [all...]
  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java 241 final int repeat = mDataBuffer.getInt(4 * 4); local
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 288 int repeat = Integer.parseInt(args[4]); local
293 MonkeyKeyEvent e = new MonkeyKeyEvent(downTime, eventTime, action, code, repeat,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 48 static PassRefPtrWillBeRawPtr<RepeatEvent> create(const AtomicString& type, int repeat)
50 return adoptRefWillBeNoop(new RepeatEvent(type, false, false, repeat));
55 int repeat() const { return m_repeat; } function in class:WebCore::FINAL
63 RepeatEvent(const AtomicString& type, bool canBubble, bool cancelable, int repeat = -1)
65 , m_repeat(repeat)
160 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat)
166 , m_repeat(repeat)
458 int repeat = -1; local
459 if (nameString.startsWith("repeat(") && nameString.endsWith(')')) {
460 repeat = nameString.substring(7, nameString.length() - 8).toUIntStrict(&ok)
1182 unsigned repeat = 0; local
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/dec/
decode.c 140 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 the pattern once
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderOptimizationTests.cpp 67 static inline string repeat (const string& str, int numRepeats, const string& delim = "") function in namespace:deqp::gles2::Performance
570 " value = " + repeat("d", numTopLevelRepeats, "+") + ";\n"
572 : " value = " + repeat("fract(sin(value) + cos(sin(value))) + sqrt(sin(value) + exp(cos(sin(value))))", numTopLevelRepeats, "\n\t + ") + ";\n";
584 + repeat("\tvalue += a*b;\n", numTopLevelRepeats)
607 + repeat(" value += a*b;\n", numTopLevelRepeats);
778 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
810 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
831 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
846 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOptimizationTests.cpp 67 static inline string repeat (const string& str, int numRepeats, const string& delim = "") function in namespace:deqp::gles3::Performance
581 " value = " + repeat("d", numTopLevelRepeats, "+") + ";\n"
583 : " value = " + repeat("fract(sin(value) + cos(sin(value))) + sqrt(sin(value) + exp(cos(sin(value))))", numTopLevelRepeats, "\n\t + ") + ";\n";
595 + repeat("\tvalue += a*b;\n", numTopLevelRepeats)
618 + repeat(" value += a*b;\n", numTopLevelRepeats);
789 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
821 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
842 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
857 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
    [all...]
  /external/llvm/lib/Support/
regcomp.c 86 static void repeat(struct parse *, sopno, int, int);
452 repeat(p, pos, count, count2);
623 repeat(p, pos, count, count2);
972 - repeat - generate code for a bounded repetition, recursively if needed
975 repeat(struct parse *p, function
1001 repeat(p, start+1, 1, to);
1021 repeat(p, copy, 1, to-1);
1029 repeat(p, copy, from-1, to-1);
1033 repeat(p, copy, from-1, to);
    [all...]
  /external/valgrind/main/coregrind/
vgdb.c 618 int repeat; local
623 repeat = readchar (fromfd);
624 csum += repeat;
625 for (r = 0; r < repeat - 29; r ++)
    [all...]
  /frameworks/base/services/core/java/com/android/server/
VibratorService.java 102 Vibration(IBinder token, long[] pattern, int repeat, int usageHint, int uid,
104 this(token, 0, pattern, repeat, usageHint, uid, opPkg);
108 int repeat, int usageHint, int uid, String opPkg) {
113 mRepeat = repeat;
273 public void vibratePattern(int uid, String packageName, long[] pattern, int repeat,
295 || repeat >= pattern.length || token == null) {
299 Vibration vib = new Vibration(token, pattern, repeat, usageHint, uid, packageName);
309 if (repeat >= 0) {
313 // A negative repeat means that this pattern is not meant
314 // to repeat. Treat it like a simple vibration
609 final int repeat = mVibration.mRepeat; local
    [all...]

Completed in 807 milliseconds

1 23 4 5 6 7 8 9