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

1 2 3 4

  /external/gtest/test/
gtest_repeat_test.cc 51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
174 void TestRepeat(int repeat) {
175 GTEST_FLAG(repeat) = repeat;
178 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS());
179 CheckCounts(repeat);
184 void TestRepeatWithEmptyFilter(int repeat) {
185 GTEST_FLAG(repeat) = repeat;
    [all...]
gtest_env_var_test_.cc 94 if (strcmp(flag, "repeat") == 0) {
95 cout << GTEST_FLAG(repeat);
  /dalvik/dx/src/junit/extensions/
RepeatedTest.java 12 public RepeatedTest(Test test, int repeat) {
14 if (repeat < 0)
16 fTimesRepeat= repeat;
  /dalvik/libcore/junit/src/main/java/junit/extensions/
RepeatedTest.java 12 public RepeatedTest(Test test, int repeat) {
14 if (repeat < 0)
16 fTimesRepeat= repeat;
  /external/junit/src/junit/extensions/
RepeatedTest.java 13 public RepeatedTest(Test test, int repeat) {
15 if (repeat < 0)
17 fTimesRepeat= repeat;
  /frameworks/base/core/java/android/os/
IVibratorService.aidl 23 void vibratePattern(in long[] pattern, int repeat, IBinder token);
Vibrator.java 55 * and then after that it alternates. If you want to repeat, pass the
56 * index into the pattern at which to start the repeat.
59 * @param repeat the index into pattern at which to repeat, or -1 if
60 * you don't want to repeat.
62 public void vibrate(long[] pattern, int repeat)
67 if (repeat < pattern.length) {
69 mService.vibratePattern(pattern, repeat, mToken);
  /frameworks/base/libs/surfaceflinger/
BlurFilter.h 31 int repeat);
BlurFilter.cpp 231 int repeat)
255 // Apply the blur 'repeat' times, this is used to approximate
257 for (int k=0 ; k<repeat ; k++) {
305 *fb++ = current.to(areaShift, k==repeat-1, dither);
314 *fb++ = current.to(areaShift, k==repeat-1, dither);
322 *fb++ = current.to(areaShift, k==repeat-1, dither);
356 int repeat);
361 int repeat)
365 err = blurFilter< BlurColor565<0x80> >(image, image, kernelSizeUser, repeat);
367 err = blurFilter< BlurColor888X<0x80> >(image, image, kernelSizeUser, repeat);
    [all...]
  /external/webkit/WebKit/android/plugins/
PluginTimer.cpp 34 PluginTimer::PluginTimer(PluginTimer** list, NPP instance, bool repeat,
39 m_repeat(repeat),
95 uint32 PluginTimerList::schedule(NPP instance, uint32 interval, bool repeat,
98 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc);
101 if (repeat) {
PluginTimer.h 39 PluginTimer(PluginTimer** list, NPP instance, bool repeat,
71 uint32 schedule(NPP instance, uint32 interval, bool repeat,
  /system/core/toolbox/
hd.c 24 int repeat = 0; local
38 repeat = strtol(optarg, NULL, 0);
91 if(repeat)
92 sleep(repeat);
93 } while(repeat);
  /frameworks/base/services/java/com/android/server/
VibratorService.java 54 Vibration(IBinder token, long[] pattern, int repeat) {
55 this(token, 0, pattern, repeat);
59 int repeat) {
64 mRepeat = repeat;
144 public void vibratePattern(long[] pattern, int repeat, IBinder token) {
164 || repeat >= pattern.length || token == null) {
168 Vibration vib = new Vibration(token, pattern, repeat);
178 if (repeat >= 0) {
182 // A negative repeat means that this pattern is not meant
183 // to repeat. Treat it like a simple vibration
310 int repeat = mVibration.mRepeat; local
    [all...]
  /external/skia/src/animator/
SkAnimateField.cpp 54 if (repeat != SK_Scalar1)
55 SkDebugf("repeat=\"%g\" ", SkScalarToFloat(repeat));
58 if (repeat != SK_Scalar1)
59 SkDebugf("repeat=\"%x\" ", repeat);
SkAnimateBase.h 66 SkScalar repeat; member in class:SkAnimateBase
  /external/webkit/WebCore/svg/
SVGAnimateTransformElement.h 48 virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement);
SVGAnimateElement.h 42 virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement);
SVGAnimateMotionElement.h 45 virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement);
SVGAnimationElement.h 92 virtual void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement);
98 virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement) = 0;
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 50 int code, int repeat, int metaState,
58 mRepeatCount = repeat;
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-core.css 43 background:url('/assets/images/rebox-gradient.gif') no-repeat center bottom #95c0d0;
64 background:url('images/rebox-gradient-green.gif') no-repeat center bottom #aaca46;
85 background-repeat:repeat-x;
241 background:transparent url(images/preliminary.png) repeat scroll 0 0; */
291 background-repeat: no-repeat;
304 background-repeat: no-repeat;
327 background-repeat: no-repeat
    [all...]
  /external/qemu/
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/view/
KeyEvent.java 282 * This flag is set for the first key repeat that occurs after the
417 * @param repeat A repeat count for down events (> 0 if this is after the
421 int code, int repeat) {
426 mRepeatCount = repeat;
439 * @param repeat A repeat count for down events (> 0 if this is after the
444 int code, int repeat, int metaState) {
449 mRepeatCount = repeat;
463 * @param repeat A repeat count for down events (> 0 if this is after th
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKey.java 94 public void setKeyAttribute(int keyCode, String label, boolean repeat,
99 if (repeat) {
  /build/tools/droiddoc/templates/assets/
android-developer-core.css 32 background-repeat:repeat-x;
200 background:transparent url(images/preliminary.png) repeat scroll 0 0; */
251 background-repeat: no-repeat;
264 background-repeat: no-repeat;
286 background-repeat: no-repeat;
395 background-repeat: no-repeat
    [all...]

Completed in 703 milliseconds

1 2 3 4