OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:new
(Results
126 - 150
of
437
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.array/
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];
/ndk/sources/cxx-stl/llvm-libc++/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;
/ndk/sources/cxx-stl/llvm-libc++/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);
/ndk/sources/cxx-stl/llvm-libc++/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);
/ndk/sources/cxx-stl/llvm-libc++/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)
/ndk/sources/cxx-stl/llvm-libc++/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)
/ndk/sources/cxx-stl/llvm-libc++/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);
/ndk/tests/device/test-stlport_shared-exception/jni/
delete3_1.cpp
2
#include <
new
>
20
void* operator
new
(size_t numBytes, SomeClass&, const std::nothrow_t&) throw()
22
return operator
new
(numBytes, std::nothrow);
34
map< int, int>* pMap =
new
map< int, int>;
new1.cpp
2
// Test that when a constructor throws in a
new
-expression, we pass the
7
#include <
new
>
13
void * operator
new
[] (size_t s) throw (std::bad_alloc)
15
ptr = operator
new
(s);
37
A *p =
new
A[4];
new1_2.cpp
6
#include <
new
>
24
foo (
new
B (A ()));
35
void* operator
new
(size_t size) throw (std::bad_alloc)
new2_1.cpp
6
#include <
new
>
23
newed = 0; // The libraries might call
new
before int main starts.
25
foo (
new
B (A ()));
36
void* operator
new
(size_t size) throw (std::bad_alloc)
p9706.cpp
9
void *operator
new
(size_t sz) { ++count; return malloc (sz); }
22
// The standard library may have called
new
and/or delete during
/ndk/tests/device/test-stlport_static-exception/jni/
delete3_1.cpp
2
#include <
new
>
20
void* operator
new
(size_t numBytes, SomeClass&, const std::nothrow_t&) throw()
22
return operator
new
(numBytes, std::nothrow);
34
map< int, int>* pMap =
new
map< int, int>;
new1.cpp
2
// Test that when a constructor throws in a
new
-expression, we pass the
7
#include <
new
>
13
void * operator
new
[] (size_t s) throw (std::bad_alloc)
15
ptr = operator
new
(s);
37
A *p =
new
A[4];
new1_2.cpp
6
#include <
new
>
24
foo (
new
B (A ()));
35
void* operator
new
(size_t size) throw (std::bad_alloc)
Completed in 348 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>