Searched refs:moving_edges (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/crop/
H A DCropObject.java312 private static int fixEdgeToCorner(int moving_edges) { argument
313 if (moving_edges == MOVE_LEFT) {
314 moving_edges |= MOVE_TOP;
316 if (moving_edges == MOVE_TOP) {
317 moving_edges |= MOVE_LEFT;
319 if (moving_edges == MOVE_RIGHT) {
320 moving_edges |= MOVE_BOTTOM;
322 if (moving_edges == MOVE_BOTTOM) {
323 moving_edges |= MOVE_RIGHT;
325 return moving_edges;
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropObject.java314 private static int fixEdgeToCorner(int moving_edges) { argument
315 if (moving_edges == MOVE_LEFT) {
316 moving_edges |= MOVE_TOP;
318 if (moving_edges == MOVE_TOP) {
319 moving_edges |= MOVE_LEFT;
321 if (moving_edges == MOVE_RIGHT) {
322 moving_edges |= MOVE_BOTTOM;
324 if (moving_edges == MOVE_BOTTOM) {
325 moving_edges |= MOVE_RIGHT;
327 return moving_edges;
[all...]

Completed in 58 milliseconds