代码搜索:Exceptions

找到约 7,847 项符合「Exceptions」的源代码

代码结果 7,847
www.eeworm.com/read/233448/4676346

mm try-catch-14.mm

/* APPLE LOCAL begin radar 4204796 */ /* { dg-options "-fobjc-exceptions -fnext-runtime" } */ /* { dg-do compile } */ typedef unsigned char uint8_t; typedef uint8_t foo[24]; void thingy(foo a) { }
www.eeworm.com/read/233448/4676471

m try-catch-13.m

/* APPLE LOCAL begin radar 4204796 */ /* { dg-options "-fobjc-exceptions -fnext-runtime" } */ /* { dg-do compile } */ typedef unsigned char uint8_t; typedef uint8_t foo[24]; void thingy(foo a) { }
www.eeworm.com/read/233448/4686789

cc jis0212_to_unicode.cc

/* This file is automatically generated from JIS0212.TXT. */ #pragma GCC java_exceptions unsigned short JIS0212_to_Unicode[76][94] = { /* 1st byte: 34 */ { 0, 0, 0, 0, 0, 0, 0, 0, 0
www.eeworm.com/read/209559/4961542

c align.c

/* align.c - handle alignment exceptions for the Power PC. * * Copyright (c) 1996 Paul Mackerras * Copyright (c) 1998-1999 TiVo, Inc. * PowerPC 403GCX modifications. * Co
www.eeworm.com/read/200978/5063192

hic fsexcpt.hic

/* FS Exceptions errors */ /*----------------------*/ #define FS_NO_BLOCKED 0 #define FS_BLOCKED 1 #define FS_EXCPT_BAD_OBJECT_TYPE 0 #define FS_EXCPT_TOO_MUTCH_ENTITYS 1 #define FS_EXCPT_NO_LOWER_L
www.eeworm.com/read/194543/5130007

java userdao.java

package com.eline.vod.security.dao; import java.sql.SQLException; import com.blue.web.common.exceptions.DAOSysException; import com.blue.web.common.model.Page; import com.eline.vod.security.mo
www.eeworm.com/read/190666/5173453

c sibcall2.c

// Build don't link: // Special g++ Options: -O2 -foptimize-sibling-calls -fno-exceptions struct X { const char *c() const { return b; }; char *b; }; extern "C" int f (const char *); struct A {
www.eeworm.com/read/190666/5180079

cc jis0212_to_unicode.cc

/* This file is automatically generated from JIS0212.TXT. */ #pragma GCC java_exceptions unsigned short JIS0212_to_Unicode[76][94] = { /* 1st byte: 34 */ { 0, 0, 0, 0, 0, 0, 0, 0, 0
www.eeworm.com/read/189320/5200387

mpb ciao_xml_utils.mpb

// -*- MPC -*- // ciao_xml_utils.mpb,v 1.1 2005/09/27 18:41:00 wotte Exp project : xerces { includes += $(CIAO_ROOT)/tools after += CIAO_XML_Utils requires += exceptions libs += CIAO_XML_Util
www.eeworm.com/read/179906/5301180

java simpleexceptiondemo.java

//: c09:SimpleExceptionDemo.java // Inheriting your own exceptions. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. import co