Searched refs:throw (Results 1 - 25 of 475) sorted by relevance

1234567891011>>

/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLDAPException.h34 const std::string& err_string=std::string()) throw();
42 LDAPException(const LDAPAsynConnection *lc) throw();
47 virtual ~LDAPException() throw();
52 int getResultCode() const throw();
58 const std::string& getResultMsg() const throw();
63 const std::string& getServerMsg() const throw();
66 virtual const char* what() const throw();
72 friend std::ostream& operator << (std::ostream &s, LDAPException e) throw();
91 LDAPReferralException(const LDAPUrlList& urls) throw();
96 ~LDAPReferralException() throw();
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/
H A Dexception_defines.h48 # define __throw_exception_again throw
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dcfclass.h44 static void finalizeType(CFTypeRef cf) throw();
45 static Boolean equalType(CFTypeRef cf1, CFTypeRef cf2) throw();
46 static CFHashCode hashType(CFTypeRef cf) throw();
47 static CFStringRef copyFormattingDescType(CFTypeRef cf, CFDictionaryRef dict) throw();
48 static CFStringRef copyDebugDescType(CFTypeRef cf) throw();
49 static uint32_t refCountForType(intptr_t op, CFTypeRef cf) throw();
H A Dtrackingallocator.h38 // A Allocator that keeps track of allocations and can throw everything
50 void *malloc(size_t inSize) throw(std::bad_alloc);
51 void free(void *inAddress) throw();
52 void *realloc(void *inAddress, size_t inNewSize) throw(std::bad_alloc);
H A Dalloc.h46 virtual void *malloc(size_t) throw(std::bad_alloc) = 0;
47 virtual void free(void *) throw() = 0;
48 virtual void *realloc(void *, size_t) throw(std::bad_alloc) = 0;
54 template <class T> T *alloc() throw(std::bad_alloc)
57 template <class T> T *alloc(UInt32 count) throw(std::bad_alloc)
60 template <class T> T *alloc(T *old, UInt32 count) throw(std::bad_alloc)
68 template <class T> T *malloc(size_t size) throw(std::bad_alloc)
71 template <class T> T *realloc(void *addr, size_t size) throw(std::bad_alloc)
75 void *calloc(size_t size, size_t count) throw(std::bad_alloc)
83 virtual bool operator == (const Allocator &alloc) const throw();
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dcfclass.h44 static void finalizeType(CFTypeRef cf) throw();
45 static Boolean equalType(CFTypeRef cf1, CFTypeRef cf2) throw();
46 static CFHashCode hashType(CFTypeRef cf) throw();
47 static CFStringRef copyFormattingDescType(CFTypeRef cf, CFDictionaryRef dict) throw();
48 static CFStringRef copyDebugDescType(CFTypeRef cf) throw();
49 static uint32_t refCountForType(intptr_t op, CFTypeRef cf) throw();
H A Dtrackingallocator.h38 // A Allocator that keeps track of allocations and can throw everything
50 void *malloc(size_t inSize) throw(std::bad_alloc);
51 void free(void *inAddress) throw();
52 void *realloc(void *inAddress, size_t inNewSize) throw(std::bad_alloc);
H A Dalloc.h46 virtual void *malloc(size_t) throw(std::bad_alloc) = 0;
47 virtual void free(void *) throw() = 0;
48 virtual void *realloc(void *, size_t) throw(std::bad_alloc) = 0;
54 template <class T> T *alloc() throw(std::bad_alloc)
57 template <class T> T *alloc(UInt32 count) throw(std::bad_alloc)
60 template <class T> T *alloc(T *old, UInt32 count) throw(std::bad_alloc)
68 template <class T> T *malloc(size_t size) throw(std::bad_alloc)
71 template <class T> T *realloc(void *addr, size_t size) throw(std::bad_alloc)
75 void *calloc(size_t size, size_t count) throw(std::bad_alloc)
83 virtual bool operator == (const Allocator &alloc) const throw();
[all...]
/macosx-10.10/swig-12/Lib/lua/
H A D_std_common.i22 note: I allow front(), back() & pop_back() to throw execptions
37 T front()const throw (std::out_of_range){ // only read front & back
39 throw std::out_of_range("in "#CLASS"::front()");
42 T back()const throw (std::out_of_range){ // not write to them
44 throw std::out_of_range("in "#CLASS"::back()");
57 void pop_front() throw (std::out_of_range){
59 throw std::out_of_range("in "#CLASS"::pop_front()");
69 void pop_back() throw (std::out_of_range){
71 throw std::out_of_range("in "#CLASS"::pop_back()");
85 T __getitem__(unsigned int idx) throw (st
[all...]
H A Dstd_vector.i49 T __getitem__(unsigned int idx) throw (std::out_of_range)
52 throw std::out_of_range("in vector::__getitem__()");
55 void __setitem__(unsigned int idx,T val) throw (std::out_of_range)
58 throw std::out_of_range("in vector::__setitem__()");
H A Dstd_except.i5 * Typemaps used by the STL wrappers that throw exceptions.
8 * size_t at() const throw (std::out_of_range);
24 exception() throw() { }
25 virtual ~exception() throw();
26 virtual const char* what() const throw();
H A Dstd_map.i40 const T& get(const K& key) throw (std::out_of_range) {
45 throw std::out_of_range("key not found");
50 void del(const K& key) throw (std::out_of_range) {
55 throw std::out_of_range("key not found");
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dcssmalloc.h49 void *malloc(size_t size) const throw(std::bad_alloc);
50 void free(void *mem) const throw() { free_func(mem, AllocRef); }
51 void *realloc(void *mem, size_t size) const throw(std::bad_alloc);
52 void *calloc(uint32 count, size_t size) const throw(std::bad_alloc);
54 bool operator == (const CSSM_MEMORY_FUNCS &other) const throw()
58 inline void *CssmMemoryFunctions::malloc(size_t size) const throw(std::bad_alloc)
62 throw std::bad_alloc();
65 inline void *CssmMemoryFunctions::calloc(uint32 count, size_t size) const throw(std::bad_alloc)
69 throw std::bad_alloc();
72 inline void *CssmMemoryFunctions::realloc(void *mem, size_t size) const throw(st
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Dcssmalloc.h49 void *malloc(size_t size) const throw(std::bad_alloc);
50 void free(void *mem) const throw() { free_func(mem, AllocRef); }
51 void *realloc(void *mem, size_t size) const throw(std::bad_alloc);
52 void *calloc(uint32 count, size_t size) const throw(std::bad_alloc);
54 bool operator == (const CSSM_MEMORY_FUNCS &other) const throw()
58 inline void *CssmMemoryFunctions::malloc(size_t size) const throw(std::bad_alloc)
62 throw std::bad_alloc();
65 inline void *CssmMemoryFunctions::calloc(uint32 count, size_t size) const throw(std::bad_alloc)
69 throw std::bad_alloc();
72 inline void *CssmMemoryFunctions::realloc(void *mem, size_t size) const throw(st
[all...]
/macosx-10.10/swig-12/Lib/std/
H A Dstd_alloc.i32 allocator() throw();
34 allocator(const allocator&) throw();
36 allocator(const allocator<_Tp1>&) throw();
37 ~allocator() throw();
58 max_size() const throw();
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_plugin/
H A DDLsession.h47 void *malloc(size_t size) throw(std::bad_alloc);
48 void free(void *addr) throw();
49 void *realloc(void *addr, size_t size) throw(std::bad_alloc);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_plugin/lib/
H A DDLsession.h47 void *malloc(size_t size) throw(std::bad_alloc);
48 void free(void *addr) throw();
49 void *realloc(void *addr, size_t size) throw(std::bad_alloc);
/macosx-10.10/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dexceptions.pl13 # exit, use &throw to raise an exception. The first enclosing &catch
35 # &throw('bad input') if /^$/;
48 &'throw($__exception__);
52 sub throw { subroutine
/macosx-10.10/swig-12/Lib/java/
H A Dstd_vector.i33 const_reference get(int i) throw (std::out_of_range) {
38 throw std::out_of_range("vector index out of range");
40 void set(int i, const value_type& val) throw (std::out_of_range) {
45 throw std::out_of_range("vector index out of range");
67 const_reference get(int i) throw (std::out_of_range) {
72 throw std::out_of_range("vector index out of range");
74 void set(int i, const value_type& val) throw (std::out_of_range) {
79 throw std::out_of_range("vector index out of range");
H A Dstd_map.i40 const T& get(const K& key) throw (std::out_of_range) {
45 throw std::out_of_range("key not found");
50 void del(const K& key) throw (std::out_of_range) {
55 throw std::out_of_range("key not found");
79 T& get(K key) throw (std::out_of_range) {
84 throw std::out_of_range("key not found");
89 void del(K key) throw (std::out_of_range) {
94 throw std::out_of_range("key not found");
115 T get(const K& key) throw (std::out_of_range) {
120 throw st
[all...]
/macosx-10.10/swig-12/Lib/php/
H A Dstd_vector.i34 T pop() throw (std::out_of_range) {
36 throw std::out_of_range("pop from empty vector");
41 const_reference get(int i) throw (std::out_of_range) {
46 throw std::out_of_range("vector index out of range");
48 void set(int i, const value_type& val) throw (std::out_of_range) {
53 throw std::out_of_range("vector index out of range");
76 bool pop() throw (std::out_of_range) {
78 throw std::out_of_range("pop from empty vector");
83 const_reference get(int i) throw (std::out_of_range) {
88 throw st
[all...]
/macosx-10.10/swig-12/Lib/csharp/
H A Dstd_vector.i36 throw new ArgumentNullException("c");
69 throw new ArgumentOutOfRangeException("Capacity");
111 throw new ArgumentNullException("array");
113 throw new ArgumentOutOfRangeException("index", "Value is less than zero");
115 throw new ArgumentOutOfRangeException("arrayIndex", "Value is less than zero");
117 throw new ArgumentOutOfRangeException("count", "Value is less than zero");
119 throw new ArgumentException("Multi dimensional array.", "array");
121 throw new ArgumentException("Number of elements to copy is too large.");
166 throw new InvalidOperationException("Enumeration not started.");
168 throw ne
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/
H A Dnew_allocator.h68 new_allocator() throw() { }
70 new_allocator(const new_allocator&) throw() { }
73 new_allocator(const new_allocator<_Tp1>&) throw() { }
75 ~new_allocator() throw() { }
100 max_size() const throw()
/macosx-10.10/swig-12/Lib/ocaml/
H A Dstd_map.i35 T& get(const K& key) throw (std::out_of_range) {
40 throw std::out_of_range("key not found");
45 void del(const K& key) throw (std::out_of_range) {
50 throw std::out_of_range("key not found");
74 T& get(K key) throw (std::out_of_range) {
79 throw std::out_of_range("key not found");
84 void del(K key) throw (std::out_of_range) {
89 throw std::out_of_range("key not found");
110 T get(const K& key) throw (std::out_of_range) {
115 throw st
[all...]
/macosx-10.10/swig-12/Lib/perl5/
H A Dstd_map.i36 T& get(const K& key) throw (std::out_of_range) {
41 throw std::out_of_range("key not found");
46 void del(const K& key) throw (std::out_of_range) {
51 throw std::out_of_range("key not found");
75 T& get(K key) throw (std::out_of_range) {
80 throw std::out_of_range("key not found");
85 void del(K key) throw (std::out_of_range) {
90 throw std::out_of_range("key not found");
111 T get(const K& key) throw (std::out_of_range) {
116 throw st
[all...]

Completed in 133 milliseconds

1234567891011>>