Home
last modified time | relevance | path

Searched refs:nothrow (Results 1 – 25 of 27) sorted by relevance

12

/external/valgrind/main/memcheck/tests/
Dnew_nothrow.cpp8 int * a = new (std::nothrow) int; in main()
9 int * b = new (std::nothrow) int[5]; in main()
/external/valgrind/main/massif/tests/
Dnew-cpp.cpp20 s* p2 = new (std::nothrow) s; in main()
22 char* c2 = new (std::nothrow) char[2000]; in main()
Doverloaded-new.cpp50 s* p2 = new (std::nothrow) s; in main()
52 char* c2 = new (std::nothrow) char[2000]; in main()
/external/chromium/base/allocator/
Dallocator_shim.cc71 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()
Dgeneric_allocators.cc13 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/
Dattributes.c44 void t2() __attribute__((nothrow));
56 void t7() __attribute__((noreturn, nothrow));
Dms-declspecs.c15 void __declspec(nothrow) t22();
/external/stlport/stlport/stl/
D_new.h67 # define nothrow nothrow_t() macro
98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
/external/llvm/docs/HistoricalNotes/
D2001-09-18-OptimizeExceptions.txt10 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/
Dsort.cc249 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/
Dnothrow.ll6 call double @t1(i32 42) ;; dead call even though callee is not nothrow.
/external/clang/test/CodeGenObjC/
Dexceptions-nonfragile.m20 void die(void) __attribute__((nothrow, noreturn));
Darc-no-arc-exceptions.m9 void not(void) __attribute__((nothrow));
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
Dsema.cpp22 void nothrowattr() __attribute__((nothrow));
/external/stlport/src/
Ddll_main.cpp90 const nothrow_t nothrow /* = {} */; variable
/external/libvpx/mkvparser/
Dmkvparser.cpp302 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/
DAtomics.rst266 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/
Dts_util.h190 using STD::nothrow;
/external/llvm/lib/Support/
DMemoryBuffer.cpp128 char *Mem = static_cast<char*>(operator new(RealLen, std::nothrow)); in getNewUninitMemBuffer()
/external/valgrind/unittest/
Dracecheck_unittest.cc6540 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/
DFastMalloc.cpp4032 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/
DBuiltinsX86.def25 // FIXME: Are these nothrow/const?
DAttr.td474 let Spellings = [GNU<"nothrow">];
DBuiltins.def63 // n -> nothrow
/external/stlport/etc/
DChangeLog-4.0481 * <new> fixed to import nothrow and nothrow_t

12