代码搜索:assertion
找到约 1,246 项符合「assertion」的源代码
代码结果 1,246
www.eeworm.com/read/233471/4669417
java assert.java
//: com:bruceeckel:tools:Assert.java
// Turning off the assertion output
// so you can ship the program.
package com.bruceeckel.tools;
public class Assert {
public final static void is_true(
www.eeworm.com/read/342088/3240330
c assert.c
#include
#include
void _assert(char *s, char *f, int l)
{
printf("assertion error: \"%s\" on file %s line %d\n", s, f, l);
exit(1);
}
www.eeworm.com/read/336825/3347255
svn-base assert.c.svn-base
#include "assert.h"
const Except_T Assert_Failed = { "Assertion failed" };
void (assert)(int e) {
assert(e);
}
static char rcsid[] = "$RCSfile: RCS/except.doc,v $ $Revision: 1.6 $";
www.eeworm.com/read/336825/3347282
c assert.c
#include "assert.h"
const Except_T Assert_Failed = { "Assertion failed" };
void (assert)(int e) {
assert(e);
}
static char rcsid[] = "$RCSfile: RCS/except.doc,v $ $Revision: 1.6 $";
www.eeworm.com/read/336825/3347634
svn-base assert.c.svn-base
static char rcsid[] = "$RCSfile: RCS/except.doc,v $ $Revision: 1.9 $";
#include "assert.h"
const Except_T Assert_Failed = { "Assertion failed" };
void (assert)(int e) {
assert(e);
}
www.eeworm.com/read/336825/3347662
c assert.c
static char rcsid[] = "$RCSfile: RCS/except.doc,v $ $Revision: 1.9 $";
#include "assert.h"
const Except_T Assert_Failed = { "Assertion failed" };
void (assert)(int e) {
assert(e);
}
www.eeworm.com/read/336825/3347836
svn-base assert.c.svn-base
#include "assert.h"
const Except_T Assert_Failed = { "Assertion failed" };
void (assert)(int e) {
assert(e);
}
static char rcsid[] = "$RCSfile: RCS/except.doc,v $ $Revision: 1.2 $";
www.eeworm.com/read/336825/3347882
c assert.c
#include "assert.h"
const Except_T Assert_Failed = { "Assertion failed" };
void (assert)(int e) {
assert(e);
}
static char rcsid[] = "$RCSfile: RCS/except.doc,v $ $Revision: 1.2 $";
www.eeworm.com/read/334276/3369342
c main1.c
// #include
#include
#include "IntArray.h"
#include "IntArrayRC.h"
/**
**
swap() with IntArray ia1
swap() with IntArrayRC ia2
Assertion failed: ix >= 0 && ix < _s
www.eeworm.com/read/296434/3903949
java assert.java
//: Assert.java
// Turning off the assertion output
// so you can ship the program.
package com.bruceeckel.tools;
public class Assert {
public final static void is_true(boolean exp){}
pub