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

123456

/external/clang/test/PCH/
H A Dcxx-functions.h1 void foo() throw( int, short, char, float, double );
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dser.h7 return noexcept(throw 0);
/external/lzma/CPP/Common/
H A DIntToString.h8 void ConvertUInt32ToString(UInt32 value, char *s) throw();
9 void ConvertUInt64ToString(UInt64 value, char *s) throw();
11 void ConvertUInt32ToString(UInt32 value, wchar_t *s) throw();
12 void ConvertUInt64ToString(UInt64 value, wchar_t *s) throw();
14 void ConvertUInt64ToOct(UInt64 value, char *s) throw();
16 void ConvertUInt32ToHex(UInt32 value, char *s) throw();
17 void ConvertUInt64ToHex(UInt64 value, char *s) throw();
18 void ConvertUInt32ToHex8Digits(UInt32 value, char *s) throw();
19 // void ConvertUInt32ToHex8Digits(UInt32 value, wchar_t *s) throw();
21 void ConvertInt64ToString(Int64 value, char *s) throw();
[all...]
H A DStringToInt.h8 UInt32 ConvertStringToUInt32(const char *s, const char **end) throw();
9 UInt64 ConvertStringToUInt64(const char *s, const char **end) throw();
10 UInt32 ConvertStringToUInt32(const wchar_t *s, const wchar_t **end) throw();
11 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end) throw();
13 Int32 ConvertStringToInt32(const wchar_t *s, const wchar_t **end) throw();
15 UInt32 ConvertOctStringToUInt32(const char *s, const char **end) throw();
16 UInt64 ConvertOctStringToUInt64(const char *s, const char **end) throw();
18 UInt32 ConvertHexStringToUInt32(const char *s, const char **end) throw();
19 UInt64 ConvertHexStringToUInt64(const char *s, const char **end) throw();
H A DStdOutStream.h24 bool Open(const char *fileName) throw();
25 bool Close() throw();
26 bool Flush() throw();
34 CStdOutStream & operator<<(const char *s) throw()
40 CStdOutStream & operator<<(char c) throw()
46 CStdOutStream & operator<<(Int32 number) throw();
47 CStdOutStream & operator<<(Int64 number) throw();
48 CStdOutStream & operator<<(UInt32 number) throw();
49 CStdOutStream & operator<<(UInt64 number) throw();
55 CStdOutStream & endl(CStdOutStream & outStream) throw();
[all...]
H A DStdInStream.h20 bool Open(LPCTSTR fileName) throw();
21 bool Close() throw();
27 bool Eof() throw();
H A DLang.h19 void Clear() throw();
20 const wchar_t *Get(UInt32 id) const throw();
H A DNewHandler.h9 The operator "new" in MSVC 6.0 doesn't throw exception "bad_alloc".
21 Also we declare delete(void *p) throw() that creates smaller code.
32 void my_delete(void *p) throw();
49 operator delete(void *p) throw();
65 operator delete[](void *p) throw();
H A DUTFConvert.h8 bool CheckUTF8(const char *src, bool allowReduced = false) throw();
/external/clang/test/SemaCXX/Inputs/
H A Dmalloc.h2 extern void *malloc (__SIZE_TYPE__ __size) throw () __attribute__ ((__malloc__)) ;
/external/lzma/CPP/Windows/
H A DTimeUtils.h12 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &fileTime) throw();
13 bool FileTimeToDosTime(const FILETIME &fileTime, UInt32 &dosTime) throw();
14 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &fileTime) throw();
15 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &fileTime) throw();
16 bool FileTimeToUnixTime(const FILETIME &fileTime, UInt32 &unixTime) throw();
17 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw();
19 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds) throw();
20 void GetCurUtcFileTime(FILETIME &ft) throw();
H A DFileName.h12 int FindSepar(const wchar_t *s) throw();
14 int FindSepar(const FChar *s) throw();
20 bool IsDrivePath(const wchar_t *s) throw(); // first 3 chars are drive chars like "a:\\"
22 bool IsAltPathPrefix(CFSTR s) throw(); /* name: */
31 bool IsDevicePath(CFSTR s) throw(); /* \\.\ */
32 bool IsSuperUncPath(CFSTR s) throw(); /* \\?\UNC\ */
33 bool IsNetworkPath(CFSTR s) throw(); /* \\?\UNC\ or \\SERVER */
41 unsigned GetNetworkServerPrefixSize(CFSTR s) throw();
43 bool IsNetworkShareRootPath(CFSTR s) throw(); /* \\?\UNC\SERVER\share or \\SERVER\share or with slash */
45 // bool IsDrivePath_SuperAllowed(CFSTR s) throw(); // firs
[all...]
H A DPropVariantConv.h9 bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime = true, bool includeSeconds = true) throw();
10 void ConvertFileTimeToString(const FILETIME &ft, wchar_t *s, bool includeTime = true, bool includeSeconds = true) throw();
14 void ConvertPropVariantToShortString(const PROPVARIANT &prop, char *dest) throw();
15 void ConvertPropVariantToShortString(const PROPVARIANT &prop, wchar_t *dest) throw();
26 default: throw 151199;
H A DPropVariant.h13 BSTR AllocBstrFromAscii(const char *s) throw();
15 HRESULT PropVariant_Clear(PROPVARIANT *p) throw();
17 HRESULT PropVarEm_Alloc_Bstr(PROPVARIANT *p, unsigned numChars) throw();
18 HRESULT PropVarEm_Set_Str(PROPVARIANT *p, const char *s) throw();
20 inline void PropVarEm_Set_UInt32(PROPVARIANT *p, UInt32 v) throw()
26 inline void PropVarEm_Set_UInt64(PROPVARIANT *p, UInt64 v) throw()
32 inline void PropVarEm_Set_FileTime64(PROPVARIANT *p, UInt64 v) throw()
39 inline void PropVarEm_Set_Bool(PROPVARIANT *p, bool b) throw()
58 ~CPropVariant() throw() { Clear(); }
84 CPropVariant& operator=(bool bSrc) throw();
[all...]
H A DRegistry.h34 LPDWORD disposition = NULL) throw();
35 LONG Open(HKEY parentKey, LPCTSTR keyName, REGSAM accessMask = KEY_ALL_ACCESS) throw();
37 LONG Close() throw();
39 LONG DeleteSubKey(LPCTSTR subKeyName) throw();
40 LONG RecurseDeleteKey(LPCTSTR subKeyName) throw();
42 LONG DeleteValue(LPCTSTR name) throw();
47 LONG SetValue(LPCTSTR valueName, UInt32 value) throw();
48 LONG SetValue(LPCTSTR valueName, bool value) throw();
49 LONG SetValue(LPCTSTR valueName, LPCTSTR value) throw();
56 LONG SetValue(LPCTSTR name, const void *value, UInt32 size) throw();
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Dexception_type.h33 explicit Exception(const char* message) throw() { SetMessage(message); }
34 virtual ~Exception() throw() {}
35 virtual const char* what() const throw() { return what_.c_str(); }
38 void SetMessage(const char* message) throw() {
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {}
51 explicit IndexOutOfBoundException(const char* message) throw()
53 IndexOutOfBoundException(const char* message, int32_t index) throw() {
62 virtual ~IndexOutOfBoundException() throw() {}
67 IOException() throw() : Exception("I/O exception") {}
68 explicit IOException(const char* message) throw()
[all...]
/external/clang/test/Modules/Inputs/update-exception-spec/
H A Da.h1 struct A { ~A() throw(int); };
H A Db.h1 struct A { ~A() throw(int); };
/external/lzma/CPP/7zip/Common/
H A DStreamUtils.h8 HRESULT ReadStream(ISequentialInStream *stream, void *data, size_t *size) throw();
9 HRESULT ReadStream_FALSE(ISequentialInStream *stream, void *data, size_t size) throw();
10 HRESULT ReadStream_FAIL(ISequentialInStream *stream, void *data, size_t size) throw();
11 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, size_t size) throw();
H A DCWrappers.h15 CCompressProgressWrap(ICompressProgressInfo *progress) throw();
25 CSeqInStreamWrap(ISequentialInStream *stream) throw();
34 CSeekInStreamWrap(IInStream *stream) throw();
44 CSeqOutStreamWrap(ISequentialOutStream *stream) throw();
47 HRESULT SResToHRESULT(SRes res) throw();
63 void Free() throw();
64 bool Alloc(UInt32 size) throw();
73 Byte ReadByteFromNewBlock() throw();
93 CByteOutBufWrap() throw();
95 void Free() throw();
[all...]
H A DOutBuffer.h30 HRESULT FlushPart() throw();
39 bool Create(UInt32 bufSize) throw();
40 void Free() throw();
44 void Init() throw();
45 HRESULT Flush() throw();
60 UInt64 GetProcessedSize() const throw();
/external/toybox/toys/other/
H A Dshred.c52 int fd = open(*try, O_RDWR), iter = 0, throw; local
95 throw = sizeof(toybuf);
97 if (len-pos < throw) throw = len-pos;
99 if (iter != TT.iterations) xread(TT.ufd, toybuf, throw);
100 if (throw != writeall(fd, toybuf, throw)) perror_msg_raw(*try);
101 pos += throw;
/external/lzma/CPP/7zip/UI/Common/
H A DPropIDUtils.h9 void ConvertPropertyToShortString(char *dest, const PROPVARIANT &propVariant, PROPID propID, bool full = true) throw();
14 bool CheckNtSecure(const Byte *data, UInt32 size) throw();;
16 void ConvertWinAttribToString(char *s, UInt32 wa) throw();
/external/clang/test/Coverage/
H A Dobjc-language-features.inc67 @throw x;
70 @throw;
/external/v8/tools/clang/plugins/tests/
H A Doverridden_methods.h16 virtual void SomeMethodWithExceptionSpec() throw() = 0;
17 virtual void SomeConstMethodWithExceptionSpec() const throw(int) = 0;
57 // Should warn with the insertion point after the throw spec.
58 virtual void SomeMethodWithExceptionSpec() throw() {}
59 // Should warn with the insertion point after both the const and the throw
61 virtual void SomeConstMethodWithExceptionSpec() const throw(int) {}

Completed in 878 milliseconds

123456