Searched defs:step (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Camera/src/com/android/camera/
H A DMosaicRenderer.java70 public static native void step(); method in class:MosaicRenderer
75 * update its texture and warping transformation. Any calls to step()
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DPerNameExecutorTest.java49 assertRanNever("step 0", a1, a2, a3, b1);
50 step(); // run a1, b1
51 assertRanOnce("step 1", a1, b1);
52 assertRanNever("step 1", a2, a3);
53 step(); // run a2
54 assertRanOnce("step 2", a1, b1, a2);
55 assertRanNever("step 2", a3);
56 step(); // run a3
57 assertRanOnce("step 3", a1, b1, a2, a3);
58 step(); // shoul
109 private void step() { method in class:PerNameExecutorTest
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DMosaicRenderer.java70 public static native void step(); method in class:MosaicRenderer
75 * update its texture and warping transformation. Any calls to step()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DCacheProcessing.java56 public boolean equals(CacheStep step) { argument
57 if (representations.size() != step.representations.size()) {
62 FilterRepresentation r2 = step.representations.get(i);
72 CacheStep step = new CacheStep();
75 if (step.canMergeWith(representation)) {
76 step.add(representation.copy());
78 steps.add(step);
79 step = new CacheStep();
80 step.add(representation.copy());
83 steps.add(step);
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DZoomControl.java147 protected void setZoomStep(int step) { argument
148 mStep = step;
/packages/experimental/DreamTheater/src/com/android/dreamtheater/
H A DBouncyDroid.java102 public void step(float dt) { method in class:BouncyDroid.BouncyView.World.Body
121 public void step(float dt) { method in class:BouncyDroid.BouncyView.World
123 b.step(dt);
295 mWorld.step(dt / 1000f); // dt is in sec
/packages/apps/Camera2/src/com/android/camera/
H A DButtonManager.java541 * @param step Expsoure compensation step value.
543 public void setExposureCompensationParameters(int min, int max, float step) { argument
546 mExposureCompensationStep = step;
549 setVisible(mExposureN2, (Math.round(min * step) <= -2));
550 setVisible(mExposureN1, (Math.round(min * step) <= -1));
551 setVisible(mExposureP1, (Math.round(max * step) >= 1));
552 setVisible(mExposureP2, (Math.round(max * step) >= 2));
566 * @return The exposure compensation step value.
/packages/apps/FMRadio/jni/fmr/
H A Dfmr_core.cpp357 static int FMR_Seek_More(int idx, fm_softmute_tune_t *validfreq, fm_u8 seek_dir, fm_u8 step, fm_u16 min_freq, fm_u16 max_freq) argument
365 if (cur_freq.freq + step > max_freq) {
368 cur_freq.freq += step;
370 if (cur_freq.freq - step < min_freq) {
373 cur_freq.freq -= step;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
H A DSetupWizardActivity.java64 private static final String STATE_STEP = "step";
335 // Probably the setup wizard has been invoked from "Recent" menu. The setup step number
493 public void addStep(final SetupStep step) { argument
494 mGroup.add(step);
498 for (final SetupStep step : mGroup) {
499 step.setEnabled(step.mStepNo == enableStepNo, isStepActionAlreadyDone);

Completed in 361 milliseconds