HomeSort by relevance Sort by last modified time
    Searched full:snake (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /development/samples/Snake/
_index.html 1 <p>This is an implementation of the classic Game "Snake", in which you control a
10 <img alt="" src="../images/Snake.png" />
Android.mk 9 LOCAL_PACKAGE_NAME := Snake
AndroidManifest.xml 24 package="com.example.android.snake">
34 <activity android:name="Snake" android:configChanges="keyboardHidden|orientation"
  /development/samples/Snake/tests/
Android.mk 14 LOCAL_INSTRUMENTATION_FOR := Snake
AndroidManifest.xml 18 package="com.example.android.snake.tests">
28 android:targetPackage="com.example.android.snake"
29 android:label="Snake sample tests">
  /development/samples/Snake/tests/src/com/example/android/snake/
SnakeTest.java 17 package com.example.android.snake;
25 public class SnakeTest extends ActivityInstrumentationTestCase2<Snake> {
28 * Creates an {@link ActivityInstrumentationTestCase2} for the {@link Snake} activity.
31 super(Snake.class);
  /external/ltp/tools/pounder21/src/ramsnake/
Makefile 22 bins = snake.exe
26 snake.exe: snake.c
27 $(CC) $(CFLAGS) -o snake.exe $<
  /external/snakeyaml/src/test/resources/pyyaml/
construct-omap.data 5 - anaconda: South-American constrictor snake. Scaly.
  /external/snakeyaml/src/test/resources/specification/types/
omap.yaml 5 - anaconda: South-American constrictor snake. Scaly.
  /development/samples/Snake/res/values/
strings.xml 18 <string name="app_name">Snake</string>
19 <string name="mode_ready">Snake\nPress Up To Play</string>
  /development/samples/Snake/res/values-nonav/
strings.xml 18 <string name="app_name">Snake</string>
19 <string name="mode_ready">Snake\nTouch Screen To Play</string>
  /development/samples/Snake/src/com/example/android/snake/
Snake.java 17 package com.example.android.snake;
28 * Snake: a simple game that everyone can enjoy.
30 * This is an implementation of the classic Game "Snake", in which you control a serpent roaming
36 public class Snake extends Activity {
39 * Constants for desired direction of moving the snake
46 private static String ICICLE_KEY = "snake-view";
61 mSnakeView = (SnakeView) findViewById(R.id.snake);
118 * Handles key events in the game. Update the direction our snake is traveling based on the
SnakeView.java 17 package com.example.android.snake;
33 * SnakeView: implementation of a simple game of Snake
50 * Current direction the snake is headed.
68 * between snake movements. This will decrease as apples are captured.
73 * mLastMove: Tracks the absolute time when the snake last moved, and is used to determine if a
84 * mArrowsView: View which shows 4 arrows to signify 4 directions in which the snake can move
90 * moves the snake
95 * mSnakeTrail: A list of Coordinates that make up the snake's body mAppleList: The secret
96 * location of the juicy apples the snake craves.
161 // For now we're just going to load up a short default eastbound snake
    [all...]
  /external/llvm/test/YAMLParser/
construct-omap.test 7 - anaconda: South-American constrictor snake. Scaly.
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DiffUtil.java 77 private static final Comparator<Snake> SNAKE_COMPARATOR = new Comparator<Snake>() {
79 public int compare(Snake o1, Snake o2) {
119 final List<Snake> snakes = new ArrayList<>();
138 final Snake snake = diffPartial(cb, range.oldListStart, range.oldListEnd, local
140 if (snake != null) {
141 if (snake.size > 0) {
142 snakes.add(snake);
601 final Snake snake = mSnakes.get(i); local
672 final Snake snake = mSnakes.get(i); local
770 final Snake snake = mSnakes.get(snakeIndex); local
    [all...]
  /external/ltp/tools/pounder21/test_scripts/
ramsnake 26 PROGRAM="$POUNDER_SRCDIR/ramsnake/snake.exe"
50 # Check for errors while snake runs.
67 # Failures will probably hang the system or segfault snake.
  /development/samples/Snake/res/layout/
snake_layout.xml 18 xmlns:app="http://schemas.android.com/apk/res/com.example.android.snake">
20 <com.example.android.snake.BackgroundView
30 <com.example.android.snake.SnakeView
31 android:id="@+id/snake"
  /packages/services/Telephony/testapps/EmbmsServiceTestApp/src/com/android/phone/testapps/embmsmw/
FileServiceRepository.java 54 Uri snake = initFile("animals/snake.png", R.raw.snake); local
59 createFileService("Class1", snake, unicorn, sheep);
  /external/tensorflow/tensorflow/contrib/image/python/kernel_tests/
segmentation_test.py 33 SNAKE = np.asarray(
78 SNAKE, dtypes.bool)).eval(), SNAKE)
81 for i in range(SNAKE.shape[0]):
82 for j in range(SNAKE.shape[1]):
84 # If we disconnect any part of the snake except for the endpoints,
86 if SNAKE[i, j] and (i, j) not in [(1, 1), (6, 3)]:
87 disconnected_snake = SNAKE.copy()
  /external/tensorflow/tensorflow/contrib/lite/java/demo/app/src/main/assets/
labels_imagenet_slim.txt 54 thunder snake
55 ringneck snake
56 hognose snake
57 green snake
58 king snake
59 garter snake
60 water snake
61 vine snake
62 night snake
67 sea snake
    [all...]
labels_mobilenet_quant_v1_224.txt 54 thunder snake
55 ringneck snake
56 hognose snake
57 green snake
58 king snake
59 garter snake
60 water snake
61 vine snake
62 night snake
67 sea snake
    [all...]
  /external/python/cpython2/Demo/turtle/
tdemo_lindenmayer_indian.py 16 (1) the snake kolam
51 # Example 1: Snake kolam
  /external/python/cpython3/Lib/turtledemo/
lindenmayer.py 16 (1) the snake kolam
51 # Example 1: Snake kolam
  /external/pdfium/core/fpdfapi/parser/
cpdf_object_avail.h 46 // TODO(art-snake): Make it UnownedPtr<, after fix document owning issue.
  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
Shims.java 75 static String camelify(String snake) { return null; }

Completed in 1275 milliseconds

1 2 3 4 5