代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5521731
c eh41.c
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
int fail = 0;
struct A {
A () { a = 'a'; b = 'b'; c = 'c'; }
~ A () {
if ( a != 'a' ) fail = 1;
i
www.eeworm.com/read/162614/5521897
c eh42.c
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
struct none { int i[50]; };
class my_ex { } a;
none throw_it() {
throw 1;
}
int main() {
try {
none n
www.eeworm.com/read/162614/5539162
cc 1.cc
// 1999-10-14 bkoz
// Copyright (C) 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute i
www.eeworm.com/read/162614/5540346
cc 14026.cc
// PR 14026
// 18.6.4 uncaught_exception
#include
#include
#include
static void
no_uncaught ()
{
if (std::uncaught_exception ())
abort ();
}
int
main
www.eeworm.com/read/411034/11259173
cpp basecom.cpp
/*
Copyright (c) 2007-2008 TrueCrypt Foundation. All rights reserved.
Governed by the TrueCrypt License 2.6 the full text of which is contained
in the file License.txt included in TrueCrypt bi
www.eeworm.com/read/135259/13947097
h utillib.h
#pragma option push -b -a8 -pc -A- /*P_O_Push*/
//***************************************************************************
//
// Copyright (c) 1997-1999 Microsoft Corporation
//
// utillib.h
www.eeworm.com/read/235668/14056498
js xhr.js
if (!window.XMLHttpRequest)
{
window.XMLHttpRequest = function()
{
var xmlHttp = null;
var ex;
try
{
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP.4.0");
}
catch (ex)
{
www.eeworm.com/read/100908/15862116
cpp xbmdraw.cpp
// XBMDraw.cpp: implementation of the XBMDraw class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "XBMDraw.h"
#ifdef _DEBUG
#undef T
www.eeworm.com/read/100900/15862616
cpp htmlviewben.cpp
// HtmlViewBen.cpp : implementation file
//
#include "stdafx.h"
#include "benbenBrowser.h"
#include "HtmlViewBen.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FI
www.eeworm.com/read/192259/8391530
c t_raw.c
#include
#include "ourhdr.h"
static void sig_catch(int);
int
main(void)
{
int i;
char c;
if (signal(SIGINT, sig_catch) == SIG_ERR) /* catch signals */
err_sys("signal(S