代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/479931/1328869
exp try_catch.exp
# Copyright 2002, 2007, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
www.eeworm.com/read/470720/1445048
c catch5.c
// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999
// We cannot catch an ambiguous base class.
// -- public,
www.eeworm.com/read/470720/1445049
c catch6.c
// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999
// We cannot catch an ambiguous base class.
// -- public,
www.eeworm.com/read/470720/1445059
c catch7.c
// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999
// We cannot catch an ambiguous base class.
// -- public,
www.eeworm.com/read/470720/1445068
c catch10.c
// Test that we notice unfortunate handler ordering.
struct A { };
struct B: public A { };
struct C: private A { };
void f();
void g()
{
try { f(); }
catch (...) { } // ERROR - ... followed by
www.eeworm.com/read/470720/1445077
c catch1.c
// Build don't link:
//
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 6 Jun 1999
// We cannot catch an incomplete type, or ptr to one
struct
www.eeworm.com/read/470720/1445078
c catch9.c
// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999
// We cannot catch an ambiguous base class.
// -- public,
www.eeworm.com/read/470720/1445088
c catch14.c
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Jakub Jelinek 2 May 2001
// Build don't link:
// Special g++ Options: -O1
void foo();
struct A {
A (int x
www.eeworm.com/read/470720/1445093
c catch12.c
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 24 May 2000
// we should be able to catch a base a virtual, provided it is accessible b
www.eeworm.com/read/470720/1445094
c catch4.c
// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999
// We cannot catch an ambiguous base class. Check with a virtual public
// DAG