代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/233448/4673092
c inline2.c
// { dg-do run }
// { dg-options "-O" }
// Test that inlining a destructor with a catch block doesn't confuse the
// enclosing try block.
struct A {
~A()
{
try { throw 1; }
catch (...) {
www.eeworm.com/read/233448/4681764
c va-arg-2.c
/* The purpose of this test is to catch edge cases when arguments are passed
in regs and on the stack. We test 16 cases, trying to catch multiple
targets (some use 3 regs for argument passing,
www.eeworm.com/read/229812/4739241
c link14b.c
#include "fail.h"
#include "link14.h"
int ack;
void bar();
int main()
{
try {
bar();
} catch(Scanner e) {
e = e;
} catch(...) {
_fail;
}
_PASS;
}
www.eeworm.com/read/229812/4742146
txt stdfixes.txt
This file represents places where we feel that the standard requires
fixing or clarification.
(1) JWW -- 92/02/14 -- goto's with catch blocks
- transfer into a catch block should be prohibi
www.eeworm.com/read/190666/5177945
c va-arg-2.c
/* The purpose of this test is to catch edge cases when arguments are passed
in regs and on the stack. We test 16 cases, trying to catch multiple
targets (some use 3 regs for argument passing,
www.eeworm.com/read/162614/5526619
c va-arg-2.c
/* The purpose of this test is to catch edge cases when arguments are passed
in regs and on the stack. We test 16 cases, trying to catch multiple
targets (some use 3 regs for argument passing,
www.eeworm.com/read/340665/3278637
c va-arg-2.c
/* The purpose of this test is to catch edge cases when arguments are passed
in regs and on the stack. We test 16 cases, trying to catch multiple
targets (some use 3 regs for argument passing,
www.eeworm.com/read/314341/3635177
js digg.js
function InitAjax()
{
var ajax=false;
try {
ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
ajax =
www.eeworm.com/read/305712/3770347
table keywords.table
# main keywords
@begin mainTable 44
# types
null NULLTOKEN
true TRUETOKEN
false FALSETOKEN
# keywords
break BREAK
case CASE
catch CATCH
const CONST
default DEFAULT
finally FINALLY
for FOR
in
www.eeworm.com/read/440906/1780269
c va-arg-2.c
/* The purpose of this test is to catch edge cases when arguments are passed
in regs and on the stack. We test 16 cases, trying to catch multiple
targets (some use 3 regs for argument passing,