代码搜索:X
找到约 10,000 项符合「X」的源代码
代码结果 10,000
www.eeworm.com/read/256195/4370485
x armelfb.x
/* Default linker script, for normal executables */
OUTPUT_FORMAT("elf32-bigarm", "elf32-bigarm",
"elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
SEARCH_DIR("//target/usr/local/lib"); SEARCH_
www.eeworm.com/read/254394/4383669
java x.java
import javax.microedition.midlet.*;
import x.*;
public class X extends MIDlet {
XGame game = new XGame();
protected void startApp() {
game.start(this);
}
protected void pauseApp()
www.eeworm.com/read/160659/5567941
dat x.dat
1.0000000000e+000
1.0000000000e+000
1.0000000000e+000
1.0000000000e+000
1.0000000000e+000
1.0000000000e+000
1.0000000000e+000
1.0000000000e+000
1.0000000000e+000
1.0000000000e+000
1.00000000
www.eeworm.com/read/158872/5592434
h x.h
template
class Adder {
public:
void set(T);
T get();
T add(T);
private:
T val;
};
template
void Adder::set(T new_val)
{
val = new_val;
}
template
T Adder