代码搜索:Direction
找到约 10,000 项符合「Direction」的源代码
代码结果 10,000
www.eeworm.com/read/330024/3428427
java~30~ snakepart.java~30~
package snake;
public class SnakePart {
private int x;
private int y;
private byte dir;
private int len;
public SnakePart(int xPos, int yPos, byte direction, int length) {
x =
www.eeworm.com/read/323894/3507240
vhd _primary.vhd
library verilog;
use verilog.vl_types.all;
entity lpm_add_sub is
generic(
lpm_width : integer := 1;
lpm_representation: string := "SIGNED";
lpm_direction : string
www.eeworm.com/read/320652/3542989
c fesetround.c
/* Set current rounding direction.
Copyright (C) 1999, 2000, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Christian Boissat
www.eeworm.com/read/320652/3543490
c fegetround.c
/* Return current rounding direction.
Copyright (C) 1997, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Richard Henderson , 1997
www.eeworm.com/read/320652/3545844
c fesetround.c
/* Set current rounding direction.
Copyright (C) 1997, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it
www.eeworm.com/read/320652/3546326
c fesetround.c
/* Set current rounding direction.
Copyright (C) 2001, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it
www.eeworm.com/read/279177/4138835
java directededge.java
package salvo.jesus.graph;
/**
* Represents a directed edge in a graph.
*
* @author Jesus M. Salvo Jr.
*/
public interface DirectedEdge extends Edge {
static final int DIRECTION_A_T
www.eeworm.com/read/444396/1734441
java lefttest.java
package cn.nasa;
import junit.framework.TestCase;
public class LeftTest extends TestCase {
private Direction E,S,W,N;
private Coordinate coordinate;
private Left left;
protected v