代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/229812/4737813
c excrt_07.c
// excrt_06 - no handler, in nested catch
#include
#include
int main()
{
try {
throw 23;
} catch( int ) {
try {
throw 24;
}
www.eeworm.com/read/486308/6539211
js register.js
/*
*/
function GEId(sID)
{
try{return document.getElementById(sID)}catch(e){};
}
function GetEl(szN)
{
try{return document.getElementsByName(szN)[0]}catch(e){};
}
function GetEl
www.eeworm.com/read/485831/6547817
js xdr.js
function AJax(SpanId,SubmitUrl){
var xmlHttp;
try{
xmlHttp=new XMLHttpRequest();
}
catch (e){
try{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e){
try{
xmlHttp=new
www.eeworm.com/read/485837/6548183
js xdr.js
function AJax(SpanId,SubmitUrl){
var xmlHttp;
try{
xmlHttp=new XMLHttpRequest();
}
catch (e){
try{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e){
try{
xmlHttp=new
www.eeworm.com/read/489613/1213429
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/472233/1417450
table keywords.table
# main keywords
@begin mainTable 41
# types
null NULLTOKEN
true TRUETOKEN
false FALSETOKEN
# keywords
break BREAK
case CASE
catch CATCH
const CONSTTOKEN
default DEFAULT
finally FINALLY
for
www.eeworm.com/read/470720/1450186
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/470693/1462132
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/240162/4580275
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/240162/4587932
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,