OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:STEPS
(Results
1 - 5
of
5
) sorted by null
/build/core/
cleanspec.mk
22
# IDEALLY, THOSE
STEPS
SHOULD BE DONE ATOMICALLY.
33
# of the list. These
steps
will only be run once, if they haven't been
53
# NEWER CLEAN
STEPS
MUST BE AT THE END OF THE LIST
63
# NEWER CLEAN
STEPS
MUST BE AT THE END OF THE LIST
/external/guava/guava-testlib/test/com/google/common/collect/testing/
IteratorTesterTest.java
143
/* Choose 4
steps
to get sequence [next, next, next, remove] */
176
private static final int
STEPS
= 3;
179
super(
STEPS
, MODIFIABLE, newArrayList(1),
201
tester.numCallsToNewTargetIterator *
STEPS
);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java
341
final int
STEPS
= 5;
342
for (int j = 0; j <
STEPS
; ++j) {
344
pointers.addPointer(oldPoint.x + ((newPoint.x - oldPoint.x) * j) /
STEPS
,
345
oldPoint.y + ((newPoint.y - oldPoint.y) * j) /
STEPS
,
/packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java
213
int
STEPS
= 5;
214
final float dt = deltaTime / (float)
STEPS
;
215
while (
STEPS
-->0) {
/frameworks/support/design/tests/src/android/support/design/widget/
BottomSheetBehaviorTest.java
117
private static final int
STEPS
= 10;
146
float[][]
steps
= interpolate(start, end,
STEPS
);
local
147
int delayBetweenMovements = DURATION /
steps
.length;
151
for (int i = 0; i <
steps
.length; i++) {
159
if (!MotionEvents.sendMovement(uiController, downEvent,
steps
[i])) {
174
private static float[][] interpolate(float[] start, float[] end, int
steps
) {
177
float[][] res = new float[
steps
][2];
178
for(int i = 1; i <
steps
+ 1; ++i) {
179
res[i - 1][0] = start[0] + (end[0] - start[0]) * (float)i / ((float)
steps
+ 2.0F)
[
all
...]
Completed in 184 milliseconds