/external/sfntly/cpp/src/sfntly/port/ |
D | exception_type.h | 33 explicit Exception(const char* message) throw() { SetMessage(message); } in Exception() 34 virtual ~Exception() throw() {} in ~Exception() 35 virtual const char* what() const throw() { return what_.c_str(); } in what() 38 void SetMessage(const char* message) throw() { in SetMessage() 50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {} in IndexOutOfBoundException() 51 explicit IndexOutOfBoundException(const char* message) throw() in IndexOutOfBoundException() 53 IndexOutOfBoundException(const char* message, int32_t index) throw() { in IndexOutOfBoundException() 62 virtual ~IndexOutOfBoundException() throw() {} in ~IndexOutOfBoundException() 67 IOException() throw() : Exception("I/O exception") {} in IOException() 68 explicit IOException(const char* message) throw() : Exception(message) {} in IOException() [all …]
|
/external/lzma/CPP/Windows/ |
D | FileName.h | 12 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 sl… 46 bool IsDriveRootPath_SuperAllowed(CFSTR s) throw(); // exact drive root path "a:\" or "\\?\a:\" [all …]
|
D | PropVariant.h | 13 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() in PropVarEm_Set_UInt32() 26 inline void PropVarEm_Set_UInt64(PROPVARIANT *p, UInt64 v) throw() in PropVarEm_Set_UInt64() 32 inline void PropVarEm_Set_FileTime64(PROPVARIANT *p, UInt64 v) throw() in PropVarEm_Set_FileTime64() 39 inline void PropVarEm_Set_Bool(PROPVARIANT *p, bool b) throw() in PropVarEm_Set_Bool() 58 ~CPropVariant() throw() { Clear(); } in throw() function 84 CPropVariant& operator=(bool bSrc) throw(); [all …]
|
D | Registry.h | 34 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 …]
|
D | FileIO.h | 102 bool Close() throw(); 104 bool GetPosition(UInt64 &position) const throw(); 105 bool GetLength(UInt64 &length) const throw(); 107 bool Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const throw(); 108 bool Seek(UInt64 position, UInt64 &newPosition) const throw(); 109 bool SeekToBegin() const throw(); 110 bool SeekToEnd(UInt64 &newPosition) const throw(); 180 bool Read1(void *data, UInt32 size, UInt32 &processedSize) throw(); 181 bool ReadPart(void *data, UInt32 size, UInt32 &processedSize) throw(); 182 bool Read(void *data, UInt32 size, UInt32 &processedSize) throw(); [all …]
|
D | TimeUtils.h | 12 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();
|
D | PropVariantConv.h | 9 …ToString(const FILETIME &ft, char *s, bool includeTime = true, bool includeSeconds = true) throw(); 10 …tring(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; in ConvertPropVariantToUInt64()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Exception.h | 36 virtual ~Exception() throw(); 42 virtual const char* what() const throw(); 45 const Exception* nested() const throw(); 53 void nested(Exception* nested_) throw(); 69 ~Error() throw(); 77 ~ErrorBlob() throw(); 85 ~ErrorCache() throw(); 93 ~ErrorCoder() throw(); 101 ~ErrorConfigure() throw(); 109 ~ErrorCorruptImage() throw(); [all …]
|
/external/lzma/CPP/Common/ |
D | IntToString.h | 8 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(); 21 void ConvertInt64ToString(Int64 value, char *s) throw(); 22 void ConvertInt64ToString(Int64 value, wchar_t *s) throw();
|
D | StringToInt.h | 8 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();
|
D | StdOutStream.h | 24 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();
|
D | MyString.h | 78 int FindCharPosInString(const char *s, char c) throw(); 79 int FindCharPosInString(const wchar_t *s, wchar_t c) throw(); 88 #define STRING_UNICODE_THROW throw() 120 wchar_t MyCharUpper_WIN(wchar_t c) throw(); 122 inline wchar_t MyCharUpper(wchar_t c) throw() in MyCharUpper() 162 void MyStringLower_Ascii(char *s) throw(); 163 void MyStringLower_Ascii(wchar_t *s) throw(); 167 bool StringsAreEqualNoCase(const wchar_t *s1, const wchar_t *s2) throw(); 169 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw(); 170 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw(); [all …]
|
/external/lzma/CPP/7zip/Common/ |
D | CWrappers.h | 15 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 …]
|
D | OutBuffer.h | 30 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/scripts/ |
D | config2help.c | 264 struct symbol *throw = 0, *catch; in main() local 278 if (!throw) usage = that; in main() 282 if (!throw) len = that-usage; in main() 286 if (!throw) { in main() 287 throw = catch; in main() 294 tusage = dlist_zap(&throw->help); in main() 295 tdashlines = grab_dashlines(&throw->help, &tfrom, &tlen); in main() 316 if (tfrom && tfrom != throw->help) { in main() 317 if (throw->help || catch->help) dlist_add(&cfrom, strdup("")); in main() 322 while (throw->help && throw->help != tfrom) in main() [all …]
|
/external/libcxxabi/include/ |
D | cxxabi.h | 43 __cxa_allocate_exception(size_t thrown_size) throw(); 45 __cxa_free_exception(void *thrown_exception) throw(); 54 __cxa_get_exception_ptr(void *exceptionObject) throw(); 56 __cxa_begin_catch(void *exceptionObject) throw(); 60 __cxa_begin_cleanup(void *exceptionObject) throw(); 151 extern _LIBCXXABI_FUNC_VIS void *__cxa_current_primary_exception() throw(); 155 __cxa_increment_exception_refcount(void *primary_exception) throw(); 157 __cxa_decrement_exception_refcount(void *primary_exception) throw(); 160 extern _LIBCXXABI_FUNC_VIS bool __cxa_uncaught_exception() throw(); 161 extern _LIBCXXABI_FUNC_VIS unsigned int __cxa_uncaught_exceptions() throw(); [all …]
|
/external/toybox/toys/other/ |
D | shred.c | 52 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/webrtc/webrtc/base/ |
D | linked_ptr.h | 43 explicit linked_ptr(X* p = 0) throw() in throw() function 47 linked_ptr(const linked_ptr& r) throw() in throw() function 60 template <class Y> linked_ptr(const linked_ptr<Y>& r) throw() in linked_ptr() 72 X& operator*() const throw() {return *itsPtr;} in throw() function 73 X* operator->() const throw() {return itsPtr;} 74 X* get() const throw() {return itsPtr;} in get() 75 bool unique() const throw() {return itsPrev ? itsPrev==this : true;} in unique() 82 void acquire(const linked_ptr& r) throw() in acquire() 96 template <class Y> void acquire(const linked_ptr<Y>& r) throw() in acquire()
|
/external/llvm/test/Transforms/LoopStrengthReduce/ |
D | funclet.ll | 14 br label %throw 16 throw: ; preds = %throw, %entry 19 to label %throw unwind label %pad 21 pad: ; preds = %throw 22 %phi2 = phi i8* [ %tmp96, %throw ] 52 br label %throw 54 throw: ; preds = %throw, %entry 57 to label %throw unwind label %pad 60 %phi2 = phi i8* [ %tmp96, %throw ] 95 br label %throw [all …]
|
/external/clang/test/SemaObjC/ |
D | try-catch.m | 43 @throw 42; // expected-error {{@throw requires an Objective-C object type ('int' invalid)}} 44 @throw agg; // expected-error {{@throw requires an Objective-C object type ('struct s' invalid)}} 45 …@throw pagg; // expected-error {{@throw requires an Objective-C object type ('struct s *' invalid)… 46 @throw; // expected-error {{@throw (rethrow) used outside of a @catch block}}
|
/external/clang/test/Analysis/Inputs/ |
D | system-header-simulator-cxx.h | 61 exception() throw(); 62 virtual ~exception() throw(); 63 virtual const char *what() const throw() { in what() 70 bad_alloc() throw(); 71 bad_alloc(const bad_alloc&) throw(); 72 bad_alloc& operator=(const bad_alloc&) throw(); 73 virtual const char* what() const throw() { in what() 234 void* operator new(std::size_t, const std::nothrow_t&) throw(); 235 void* operator new[](std::size_t, const std::nothrow_t&) throw(); 236 void operator delete(void*, const std::nothrow_t&) throw(); [all …]
|
/external/libcxx/include/ |
D | codecvt | 106 virtual int do_encoding() const throw(); 107 virtual bool do_always_noconv() const throw(); 110 virtual int do_max_length() const throw(); 141 virtual int do_encoding() const throw(); 142 virtual bool do_always_noconv() const throw(); 145 virtual int do_max_length() const throw(); 176 virtual int do_encoding() const throw(); 177 virtual bool do_always_noconv() const throw(); 180 virtual int do_max_length() const throw(); 229 virtual int do_encoding() const throw(); [all …]
|
/external/brotli/csharp/ |
D | injected_code.txt | 10 get {throw new System.NotSupportedException();} 13 get {throw new System.NotSupportedException();} 14 set {throw new System.NotSupportedException();} 17 throw new System.NotSupportedException(); 20 throw new System.NotSupportedException(); 26 throw new System.NotSupportedException(); 29 throw new System.NotSupportedException();
|
/external/jacoco/jacoco-maven-plugin.test/it/it-site-failsafe/ |
D | verify.bsh | 17 throw new RuntimeException( "project-reports.html does not contain link to JaCoCo report" ); 22 throw new RuntimeException( "HTML report was not created" ); 27 throw new RuntimeException( "XML report was not created" ); 32 throw new RuntimeException( "CSV report was not created" ); 36 …throw new RuntimeException( "project-reports.html does not contain link to JaCoCo Integration repo… 41 throw new RuntimeException( "Integration HTML report was not created" ); 46 throw new RuntimeException( "Integration XML report was not created" ); 51 throw new RuntimeException( "Integration CSV report was not created" );
|
/external/deqp/framework/platform/ios/ |
D | tcuIOSPlatform.mm | 51 throw ResourceError("View is already is in use"); 85 throw NotSupportedError("Unsupported surface type"); 90 throw; 114 throw NotSupportedError("Requested GL API is not supported on iOS"); 126 throw ResourceError("Failed to create EAGL context"); 131 throw ResourceError("Failed to set current EAGL context"); 138 throw InternalError("Unsupproted API for loading functions"); 146 throw; 202 throw; 223 throw NotSupportedError("Multisample config is not supported"); [all …]
|