Searched refs:step (Results 1 - 25 of 28) sorted by relevance

12

/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()
H A DCameraSettings.java243 float step = mParameters.getExposureCompensationStep();
246 int maxValue = (int) FloatMath.floor(max * step);
247 int minValue = (int) FloatMath.ceil(min * step);
254 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
H A DMosaicPreviewRenderer.java226 MosaicRenderer.step();
/packages/apps/Camera2/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()
H A DMosaicPreviewRenderer.java92 MosaicRenderer.step();
103 MosaicRenderer.step();
H A DOnScreenIndicators.java81 * Sets the exposure indicator using exposure compensations step rounding.
87 float step = params.getExposureCompensationStep();
88 value = Math.round(value * step);
H A DCameraSettings.java243 float step = mParameters.getExposureCompensationStep();
246 int maxValue = Math.min(3, (int) Math.floor(max * step));
247 int minValue = Math.max(-3, (int) Math.ceil(min * step));
256 entryValues[i - minValue] = Integer.toString(Math.round(i / step));
/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()
H A DMosaicRendererSurfaceViewRenderer.java44 MosaicRenderer.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/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/
H A DExif.java123 int step = 1;
126 step = -1;
132 offset += step;
H A DCameraSettings.java203 float step = mParameters.getExposureCompensationStep();
206 int maxValue = (int) Math.floor(max * step);
207 int minValue = (int) Math.ceil(min * step);
211 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DBytesBufferPool.java46 int step = Math.min(READ_STEP, capacity - length);
47 int rc = fis.read(data, length, step);
/packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/
H A DBinaryDictOffdeviceUtilsTests.java68 for (final String step : decodeSpec.mDecoderSpec) {
69 assertEquals("Wrong decode spec", BinaryDictOffdeviceUtils.COMPRESSION, step);
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DZoomControl.java147 protected void setZoomStep(int step) { argument
148 mStep = step;
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatteryStatsHelper.java407 for (int step = 0; step < speedSteps; step++) {
408 cpuSpeedStepTimes[step] = ps.getTimeAtCpuSpeedStep(step, which);
409 totalTimeAtSpeeds += cpuSpeedStepTimes[step];
414 for (int step = 0; step < speedSteps; step++) {
415 double ratio = (double) cpuSpeedStepTimes[step] / totalTimeAtSpeed
[all...]
/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/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DBinaryDictOffdeviceUtils.java64 for (final String step : mDecoderSpec) {
66 s.append(step);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
H A DSetupWizardActivity.java64 private static final String STATE_STEP = "step";
333 // Probably the setup wizard has been invoked from "Recent" menu. The setup step number
491 public void addStep(final SetupStep step) { argument
492 mGroup.add(step);
496 for (final SetupStep step : mGroup) {
497 step.setEnabled(step.mStepNo == enableStepNo, isStepActionAlreadyDone);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DInputPointersTests.java71 final int limit = 1000, step = 100;
72 for (int i = 0; i < limit; i += step) {
76 for (int i = 0; i < limit; i += step) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
H A DResizableIntArrayTests.java65 final int limit = DEFAULT_CAPACITY * 10, step = DEFAULT_CAPACITY * 2;
66 for (int i = 0; i < limit; i += step) {
70 for (int i = 0; i < limit; i += step) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilterDraw.java204 float step = s2 / 8;
205 for (float i = 0; i < len; i += step) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageStraighten.java281 float step = Math.max(viewWidth, viewHeight) / NBLINES;
284 p = i * step;
/packages/inputmethods/PinyinIME/jni/include/
H A Dmatrixsearch.h63 uint16 step; member in struct:ime_pinyin::MatrixNode
73 // Used to indicate whether there are dmi nodes in this step with full
99 // Points to a MatrixNode of the current step to indicate which choice the
143 // How many rows for each step.
213 // the i'th lemma id in lma_id_ is the first candidate for that step.
214 // If all candidates are the first one for that step, the whole string can be
238 // for current step;
240 // first un-fixed step and show them to the user.
256 // Reset the search space from ch_pos step. For example, if the original
259 // if clear_fixed_this_step is true, and the ch_pos step i
[all...]

Completed in 386 milliseconds

12