HomeSort by relevance Sort by last modified time
    Searched defs:new (Results 76 - 100 of 307) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libcxx/test/containers/sequences/list/list.modifiers/
insert_iter_value.pass.cpp 27 void* operator new(std::size_t s) throw(std::bad_alloc)
  /external/libcxx/test/language.support/support.dynamic/new.delete/new.delete.array/
new_array_nothrow_replace.pass.cpp 10 // test operator new [] nothrow by replacing only operator new
12 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
42 A* ap = new (std::nothrow) A[3];
new_array_replace.pass.cpp 10 // test operator new[] replacement by replacing only operator new
12 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
42 A* ap = new A[3];
  /external/libcxx/test/language.support/support.dynamic/new.delete/new.delete.single/
new_nothrow_replace.pass.cpp 10 // test operator new nothrow by replacing only operator new
12 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
42 A* ap = new (std::nothrow) A;
new_replace.pass.cpp 10 // test operator new replacement
12 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
42 A* ap = new A;
  /external/libcxx/test/localization/locales/locale/locale.cons/
locale_facetptr.pass.cpp 15 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
85 std::locale loc2(loc, new my_facet);
  /external/libcxx/test/localization/locales/locale/locale.members/
combine.pass.cpp 15 #include <new>
20 void* operator new(std::size_t s) throw(std::bad_alloc)
82 std::locale loc2(loc, new my_facet);
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
F.pass.cpp 17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
F_assign.pass.cpp 20 #include <new>
26 void* operator new(std::size_t s) throw(std::bad_alloc)
alloc_function.pass.cpp 17 #include <new>
25 void* operator new(std::size_t s) throw(std::bad_alloc)
alloc_rfunction.pass.cpp 23 void* operator new(std::size_t s) throw(std::bad_alloc)
copy.pass.cpp 17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
copy_assign.pass.cpp 17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
nullptr_t_assign.pass.cpp 17 #include <new>
23 void* operator new(std::size_t s) throw(std::bad_alloc)
  /external/libcxx/test/utilities/memory/default.allocator/allocator.members/
allocate.pass.cpp 16 #include <new>
22 void* operator new(std::size_t s) throw(std::bad_alloc)
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
auto_ptr.pass.cpp 15 #include <new>
21 void* operator new(std::size_t s) throw(std::bad_alloc)
59 std::auto_ptr<A> ptr(new A);
74 std::auto_ptr<A> ptr(new A);
pointer_deleter_throw.pass.cpp 18 #include <new>
35 void* operator new(std::size_t s) throw(std::bad_alloc)
49 A* ptr = new A;
pointer_throw.pass.cpp 15 #include <new>
32 void* operator new(std::size_t s) throw(std::bad_alloc)
47 A* ptr = new A;
unique_ptr.pass.cpp 15 #include <new>
21 void* operator new(std::size_t s) throw(std::bad_alloc)
59 std::unique_ptr<A> ptr(new A);
70 std::unique_ptr<A> ptr(new A);
  /external/llvm/include/llvm/IR/
GlobalAlias.h 41 void *operator new(size_t s) {
42 return User::operator new(s, 1);
  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 63 inline void *operator new(size_t size,
  /external/llvm/lib/IR/
User.cpp 49 Use *Begin = static_cast<Use*>(::operator new(size));
51 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
56 // User operator new Implementations
59 void *User::operator new(size_t s, unsigned Us) {
60 void *Storage = ::operator new(s + sizeof(Use) * Us);
  /external/lzma/CPP/Common/
NewHandler.cpp 18 operator new(size_t size)
50 void * __cdecl operator new(size_t size)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_live_variables.h 55 static void* operator new(size_t size, void *ctx)
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_streams.c 71 evStream *new; local
74 OKNEW(new);
75 new->func = func;
76 new->uap = uap;
77 new->fd = fd;
78 new->flags = 0;
79 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0)
81 if (copyvec(new, iov, iocnt) < 0)
83 new->prevDone = NULL
105 evStream *new; local
    [all...]

Completed in 433 milliseconds

1 2 34 5 6 7 8 91011>>