代码搜索:assertion
找到约 1,246 项符合「assertion」的源代码
代码结果 1,246
www.eeworm.com/read/148721/5709226
c assert.c
#include
#include
int _assert(char *e, char *file, int line) {
fprintf(stderr, "assertion failed:");
if (e)
fprintf(stderr, " %s", e);
if (file)
fprintf(stderr,
www.eeworm.com/read/139332/5799928
c linear_algebrahd.c
// Copyright (c) 1997-2000 Utrecht University (The Netherlands),
// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany),
// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-W
www.eeworm.com/read/137956/5817883
assert
#include
#include
static char rcsid[] = "$Id: assert.c,v 1.1 1995/07/25 20:34:24 cwf Exp $";
int _assert(char *e, char *file, int line) {
fprintf(stderr, "assertion failed:");
www.eeworm.com/read/134009/5895818
al assert.al
# NOTE: Derived from ../../lib/POSIX.pm.
# Changes made here will be lost when autosplit again.
# See AutoSplit.pm.
package POSIX;
#line 83 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/as
www.eeworm.com/read/132316/5917929
java assert.java
//: com:bruceeckel:tools:debug:Assert.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Assertion tool for debugging.
package
www.eeworm.com/read/128531/5988808
h sgi.h
/*
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 2
www.eeworm.com/read/125606/6027578
java assert.java
//: com:bruceeckel:tools:debug:Assert.java
// Assertion tool for debugging.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
p