Searched refs:step (Results 1 – 8 of 8) sorted by relevance
/development/samples/browseable/BatchStepSensor/ |
D | _index.jd | 8 … <p>This sample demonstrates the use of the two step sensors (step detector and counter) and 13 event when a step is detected, while the step counter returns the total number of
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | GameView.java | 154 step(event.getEventTime()); in onKeyDown() 194 step(event.getEventTime()); in onKeyUp() 267 step(historyPos < 0 ? event.getEventTime() : event.getHistoricalEventTime(historyPos)); in processJoystickInput() 348 step(currentStepTime); 357 private void step(long currentStepTime) { 365 if (!mShip.step(tau)) { 373 if (!bullet.step(tau)) { 384 if (!obstacle.step(tau)) { 542 public boolean step(float tau) { 585 step(0); [all …]
|
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/ |
D | Recipe.java | 80 JSONObject step = steps.getJSONObject(i); in fromJson() local 82 recipeStep.stepText = step.getString(Constants.RECIPE_FIELD_TEXT); in fromJson() 83 if (step.has(Constants.RECIPE_FIELD_IMAGE)) { in fromJson() 84 recipeStep.stepImage = step.getString(Constants.RECIPE_FIELD_IMAGE); in fromJson()
|
D | RecipeActivity.java | 117 for (Recipe.RecipeStep step : recipe.recipeSteps) { in displayRecipe() 120 if (step.stepImage == null) { in displayRecipe() 123 Bitmap stepImage = AssetUtils.loadBitmapAsset(this, step.stepImage); in displayRecipe() 127 (stepNumber++) + ". " + step.stepText); in displayRecipe()
|
/development/samples/ControllerSample/src/com/example/controllersample/ |
D | GameView.java | 133 step(event.getEventTime()); in onKeyDown() 147 step(event.getEventTime()); in onKeyUp() 317 step(currentStepTime); in animateFrame() 321 private void step(long currentStepTime) { in step() method in GameView 331 if (!currentShip.step(tau)) { in step() 341 if (!bullet.step(tau)) { in step() 352 if (!obstacle.step(tau)) { in step() 545 public boolean step(float tau) { in step() method in GameView.Sprite 609 step(0); in destroy() 848 GameView.this.step(historyPos < 0 ? event.getEventTime() : event in processJoystickInput() [all …]
|
/development/ |
D | CleanSpec.mk | 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/CorpApp_intermediates)
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | WindowSurface.java | 118 void step(int width, int height, float minStep, float maxStep) { in step() method in WindowSurface.MovingPoint 222 mPoint1.step(canvas.getWidth(), canvas.getHeight(), in run() 224 mPoint2.step(canvas.getWidth(), canvas.getHeight(), in run() 226 mColor.step(127, 127, 1, 3); in run()
|
/development/samples/browseable/RecipeAssistant/ |
D | _index.jd | 13 page for each step in the recipe.
|