OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bad_alloc
(Results
26 - 50
of
328
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
new
44
class
bad_alloc
: public exception {
46
bad_alloc
() throw();
47
virtual ~
bad_alloc
() throw();
51
class bad_array_new_length : public
bad_alloc
{
60
class bad_array_length : public
bad_alloc
{
74
void* operator new(std::size_t size) throw(std::
bad_alloc
);
76
void* operator new[](std::size_t size) throw(std::
bad_alloc
);
/external/libcxx/src/
new.cpp
48
throw(std::
bad_alloc
)
63
throw std::
bad_alloc
();
94
throw(std::
bad_alloc
)
191
bad_alloc
::
bad_alloc
() _NOEXCEPT
197
bad_alloc
::~
bad_alloc
() _NOEXCEPT
202
bad_alloc
::what() const _NOEXCEPT
204
return "std::
bad_alloc
";
247
throw
bad_alloc
();
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
new.cpp
49
throw(std::
bad_alloc
)
64
throw std::
bad_alloc
();
95
throw(std::
bad_alloc
)
178
bad_alloc
::
bad_alloc
() _NOEXCEPT
184
bad_alloc
::~
bad_alloc
() _NOEXCEPT
189
bad_alloc
::what() const _NOEXCEPT
191
return "std::
bad_alloc
";
234
throw
bad_alloc
();
[
all
...]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
nullptr_t_deleter_throw.pass.cpp
37
void* operator new(std::size_t s) throw(std::
bad_alloc
)
40
throw std::
bad_alloc
();
57
catch (std::
bad_alloc
&)
pointer_throw.pass.cpp
34
void* operator new(std::size_t s) throw(std::
bad_alloc
)
37
throw std::
bad_alloc
();
57
catch (std::
bad_alloc
&)
pointer_deleter_throw.pass.cpp
37
void* operator new(std::size_t s) throw(std::
bad_alloc
)
40
throw std::
bad_alloc
();
58
catch (std::
bad_alloc
&)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
nullptr_t_deleter_throw.pass.cpp
35
void* operator new(std::size_t s) throw(std::
bad_alloc
)
38
throw std::
bad_alloc
();
55
catch (std::
bad_alloc
&)
pointer_deleter_throw.pass.cpp
35
void* operator new(std::size_t s) throw(std::
bad_alloc
)
38
throw std::
bad_alloc
();
56
catch (std::
bad_alloc
&)
pointer_throw.pass.cpp
32
void* operator new(std::size_t s) throw(std::
bad_alloc
)
35
throw std::
bad_alloc
();
55
catch (std::
bad_alloc
&)
/ndk/tests/device/test-stlport_shared-exception/jni/
new1.cpp
13
void * operator new[] (size_t s) throw (std::
bad_alloc
)
new7.cpp
16
void* operator new ( std::size_t n ) throw ( std::
bad_alloc
)
new1_2.cpp
35
void* operator new (size_t size) throw (std::
bad_alloc
)
new2_1.cpp
36
void* operator new (size_t size) throw (std::
bad_alloc
)
/ndk/tests/device/test-stlport_static-exception/jni/
new1.cpp
13
void * operator new[] (size_t s) throw (std::
bad_alloc
)
new7.cpp
16
void* operator new ( std::size_t n ) throw ( std::
bad_alloc
)
new1_2.cpp
35
void* operator new (size_t size) throw (std::
bad_alloc
)
new2_1.cpp
36
void* operator new (size_t size) throw (std::
bad_alloc
)
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
new
52
* @c
bad_alloc
(or classes derived from it) is used to report allocation
54
class
bad_alloc
: public exception
57
bad_alloc
() throw() { }
61
virtual ~
bad_alloc
() throw();
68
class bad_array_new_length : public
bad_alloc
85
class bad_array_length : public
bad_alloc
119
* - normal single new and delete (no arguments, throw @c
bad_alloc
on error)
128
void* operator new(std::size_t) _GLIBCXX_THROW (std::
bad_alloc
)
130
void* operator new[](std::size_t) _GLIBCXX_THROW (std::
bad_alloc
)
/external/valgrind/massif/tests/
overloaded-new.cpp
17
__attribute__((noinline)) void* operator new (std::size_t n) throw (std::
bad_alloc
)
27
__attribute__((noinline)) void* operator new[] (std::size_t n) throw (std::
bad_alloc
)
/external/deqp/framework/referencerenderer/
rrVertexPacket.cpp
58
deInt8* ptr = new deInt8[packetSize * count]; // throws
bad_alloc
=> ok
60
// *.push_back might throw
bad_alloc
65
retVal.push_back(new (ptr + i*packetSize) VertexPacket()); // throws
bad_alloc
67
m_allocations.push_back(ptr); // throws
bad_alloc
69
catch (std::
bad_alloc
& )
/ndk/tests/device/test-gnustl-full/unit/
config_test.cpp
106
catch (const
bad_alloc
&)
109
// Looks like your compiler new operator finally throw
bad_alloc
, you can fix
117
//Not
bad_alloc
exception thrown.
/ndk/tests/device/test-stlport/unit/
config_test.cpp
106
catch (const
bad_alloc
&)
109
// Looks like your compiler new operator finally throw
bad_alloc
, you can fix
117
//Not
bad_alloc
exception thrown.
/external/clang/test/CXX/except/except.spec/
p3.cpp
98
// with a throw(
bad_alloc
) spec, because C++0x makes an incompatible change
100
extern "C++" { namespace std { class
bad_alloc
{}; } }
class in namespace:std
102
void* operator new(mysize_t) throw(std::
bad_alloc
);
105
void* operator new[](mysize_t) throw(std::
bad_alloc
);
/external/valgrind/memcheck/tests/
new_override.cpp
10
void *operator new[](size_t size) throw(std::
bad_alloc
)
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
dl5.cc
17
operator new (size_t sz) throw (std::
bad_alloc
)
Completed in 1284 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>