/external/valgrind/main/memcheck/tests/ |
D | new_nothrow.cpp | 8 int * a = new (std::nothrow) int; in main() 9 int * b = new (std::nothrow) int[5]; in main()
|
/external/valgrind/main/massif/tests/ |
D | new-cpp.cpp | 20 s* p2 = new (std::nothrow) s; in main() 22 char* c2 = new (std::nothrow) char[2000]; in main()
|
D | overloaded-new.cpp | 50 s* p2 = new (std::nothrow) s; in main() 52 char* c2 = new (std::nothrow) char[2000]; in main()
|
/external/chromium/base/allocator/ |
D | allocator_shim.cc | 71 inline bool call_new_handler(bool nothrow) { in call_new_handler() argument 92 if (nothrow) in call_new_handler() 102 if (!nothrow) in call_new_handler()
|
D | generic_allocators.cc | 13 inline void* generic_cpp_alloc(size_t size, bool nothrow) { in generic_cpp_alloc() argument 19 if (!call_new_handler(nothrow)) in generic_cpp_alloc()
|
/external/clang/test/CodeGen/ |
D | attributes.c | 44 void t2() __attribute__((nothrow)); 56 void t7() __attribute__((noreturn, nothrow));
|
D | ms-declspecs.c | 15 void __declspec(nothrow) t22();
|
/external/stlport/stlport/stl/ |
D | _new.h | 67 # define nothrow nothrow_t() macro 98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-09-18-OptimizeExceptions.txt | 10 throws an exception, unless it is defined as 'nothrow'. This means 15 2. Declaring a function nothrow causes catch blocks to be added to every 16 call that isnot provably nothrow. This makes them very slow.
|
/external/webrtc/src/system_wrappers/source/ |
D | sort.cc | 249 ptrSortKey = new(std::nothrow) SortKey<KeyType>[numOfElements]; 271 WebRtc_UWord8* ptrDataSorted = new(std::nothrow) WebRtc_UWord8 441 SortKey* ptrSortKey = new(std::nothrow) SortKey[numOfElements]; in KeySort() 495 WebRtc_UWord8* ptrDataSorted = new(std::nothrow) WebRtc_UWord8 in KeySort()
|
/external/llvm/test/Transforms/InstCombine/ |
D | nothrow.ll | 6 call double @t1(i32 42) ;; dead call even though callee is not nothrow.
|
/external/clang/test/CodeGenObjC/ |
D | exceptions-nonfragile.m | 20 void die(void) __attribute__((nothrow, noreturn));
|
D | arc-no-arc-exceptions.m | 9 void not(void) __attribute__((nothrow));
|
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ |
D | sema.cpp | 22 void nothrowattr() __attribute__((nothrow));
|
/external/stlport/src/ |
D | dll_main.cpp | 90 const nothrow_t nothrow /* = {} */; variable
|
/external/libvpx/mkvparser/ |
D | mkvparser.cpp | 302 str = new (std::nothrow) char[size+1]; in UnserializeString() 447 buf = new (std::nothrow) unsigned char[buflen_]; in Match() 830 pSegment = new (std::nothrow) Segment( in CreateInstance() 957 m_pInfo = new (std::nothrow) SegmentInfo( in ParseHeaders() 977 m_pTracks = new (std::nothrow) Tracks(this, in ParseHeaders() 995 m_pCues = new (std::nothrow) Cues( in ParseHeaders() 1010 m_pSeekHead = new (std::nothrow) SeekHead( in ParseHeaders() 1896 m_entries = new (std::nothrow) Entry[entry_count]; in Parse() 1901 m_void_elements = new (std::nothrow) VoidElement[void_element_count]; in Parse() 2165 m_pCues = new (std::nothrow) Cues( in ParseCues() [all …]
|
/external/llvm/docs/ |
D | Atomics.rst | 266 Optimizers not aware of atomics can treat this like a nothrow call. It is 295 Optimizers not aware of atomics can treat this like a nothrow call. It is 321 In general, optimizers should treat this like a nothrow call; the possible 345 Optimizers not aware of atomics can treat this like a nothrow call. For 391 stricter than that like a nothrow call.
|
/external/valgrind/tsan/ |
D | ts_util.h | 190 using STD::nothrow;
|
/external/llvm/lib/Support/ |
D | MemoryBuffer.cpp | 128 char *Mem = static_cast<char*>(operator new(RealLen, std::nothrow)); in getNewUninitMemBuffer()
|
/external/valgrind/unittest/ |
D | racecheck_unittest.cc | 6540 char *mem = new (std::nothrow) char; in TEST() 6542 operator delete (mem, std::nothrow); in TEST() 6547 char *mem = new (std::nothrow) char [100]; in TEST() 6549 operator delete [] (mem, std::nothrow); in TEST() 6568 p = new (std::nothrow) char; in AllocateAndDeallocateUsingVariousAllocs() 6569 operator delete (p, std::nothrow); in AllocateAndDeallocateUsingVariousAllocs() 6572 p = new (std::nothrow) char[10]; in AllocateAndDeallocateUsingVariousAllocs() 6573 operator delete [](p, std::nothrow); in AllocateAndDeallocateUsingVariousAllocs()
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | FastMalloc.cpp | 4032 static inline void* cpp_alloc(size_t size, bool nothrow) { in CreateCacheIfNecessary() argument 4051 if (nothrow) return 0; in CreateCacheIfNecessary() 4060 if (!nothrow) throw; in CreateCacheIfNecessary()
|
/external/clang/include/clang/Basic/ |
D | BuiltinsX86.def | 25 // FIXME: Are these nothrow/const?
|
D | Attr.td | 474 let Spellings = [GNU<"nothrow">];
|
D | Builtins.def | 63 // n -> nothrow
|
/external/stlport/etc/ |
D | ChangeLog-4.0 | 481 * <new> fixed to import nothrow and nothrow_t
|