OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:throws_exception_on_even
(Results
1 - 2
of
2
) sorted by null
/external/lldb/test/lang/cpp/exceptions/
exceptions.cpp
4
int
throws_exception_on_even
(int value);
24
return
throws_exception_on_even
(2 * value);
28
throws_exception_on_even
(int value)
function
TestCPPExceptionBreakpoints.py
57
self.assertTrue (frame_functions.count ("
throws_exception_on_even
(int)") == 1, "Our throw function is still on the stack.")
64
while frame_functions.count ("
throws_exception_on_even
(int)") == 1:
71
self.assertTrue (frame_functions.count ("
throws_exception_on_even
(int)") == 0, "At catch our throw function is off the stack")
Completed in 108 milliseconds