代码搜索结果
找到约 198,126 项符合
BASE 的代码
release_note.txt.svn-base
new release for B1
01/26/2010 ver1.4r changes:
this firmware version base on the V2 ver1.3r firmware
- support only B1 revision
- power supply setting
- before initialization wait for the POR and chi
base.sln
Microsoft Visual Studio Solution File, Format Version 9.00
# SharpDevelop 2.0.0.932
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Base", "Base.csproj", "{C9A2B6BC-5260-4DE3-8082-DCE8B391F7BB
base-2.c
/* Test that alpha-base-1.c compiles with optimization. */
/* { dg-do link { target alpha*-*-* } } */
/* { dg-options "-mcpu=ev4 -O2" } */
#include "base-1.c"
base
/ > ./test/scripts/base.xml
/ > e > http://example.com/base/
e > img > http://example.com/base/images/
img >
base.script
base
cd //e
base
cd .//img
base
exit
base.java
import java.awt.*;
public class base{
private int xPos;
private int yPos;
private Rectangle Base;
private int ImageNo = 1;
public base(){
xPos = 260;
yPos = 498;
Base = new Rec
base.java
package net.betterjava.design.overload;
/**
* overload sample, Base.Iam() method is overloaded
*/
public class Base {
void Iam(Base b) {
System.out.println("Base;Overload");
}
void Ia
base.java
package net.betterjava.design.override;
/**
* override sample, Child override Base.Iam(Base) method
*/
public class Base {
void Iam(Base b) {
System.out.println("Base;Overload");
}
vo
base.java
package net.betterjava.design.over;
public class Base {
void Iam(Base b) {
System.out.println("Base;Overload");
}
void Iam(Child c) {
System.out.println("Child;Overload");
}
public