OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MOVE_LEFT
(Results
1 - 3
of
3
) sorted by null
/development/samples/Snake/src/com/example/android/snake/
Snake.java
41
public static int
MOVE_LEFT
= 0;
136
mSnakeView.moveSnake(
MOVE_LEFT
);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java
35
private static final int
MOVE_LEFT
= 1;
42
private static final int TOP_LEFT = MOVE_TOP |
MOVE_LEFT
;
45
private static final int BOTTOM_LEFT = MOVE_BOTTOM |
MOVE_LEFT
;
112
} else if ((moving_corner &
MOVE_LEFT
) != 0) {
137
} else if ((moving_corner &
MOVE_LEFT
) != 0) {
365
movingEdges |=
MOVE_LEFT
;
391
if (moving_edges ==
MOVE_LEFT
) {
395
moving_edges |=
MOVE_LEFT
;
443
if (select ==
MOVE_LEFT
) {
447
select |=
MOVE_LEFT
;
[
all
...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
CropView.java
68
private static final int
MOVE_LEFT
= 1;
478
if ((mMovingEdges &
MOVE_LEFT
) != 0) {
498
if ((mMovingEdges &
MOVE_LEFT
) != 0) {
506
if ((mMovingEdges &
MOVE_LEFT
) != 0) {
547
if (left) mMovingEdges |=
MOVE_LEFT
;
565
(r.left + r.right) / 2) ? MOVE_RIGHT :
MOVE_LEFT
;
607
if ((mMovingEdges &
MOVE_LEFT
) != 0 || notMoving) {
Completed in 87 milliseconds