HomeSort by relevance Sort by last modified time
    Searched full:out_of_range (Results 1 - 25 of 378) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/diagnostics/std.exceptions/out.of.range/
out_of_range.pass.cpp 10 // test out_of_range
20 static_assert((std::is_base_of<std::logic_error, std::out_of_range>::value),
21 "std::is_base_of<std::logic_error, std::out_of_range>::value");
22 static_assert(std::is_polymorphic<std::out_of_range>::value,
23 "std::is_polymorphic<std::out_of_range>::value");
25 const char* msg = "out_of_range message";
26 std::out_of_range e(msg);
28 std::out_of_range e2(e);
34 std::string msg("another out_of_range message");
35 std::out_of_range e(msg)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/out.of.range/
out_of_range.pass.cpp 10 // test out_of_range
20 static_assert((std::is_base_of<std::logic_error, std::out_of_range>::value),
21 "std::is_base_of<std::logic_error, std::out_of_range>::value");
22 static_assert(std::is_polymorphic<std::out_of_range>::value,
23 "std::is_polymorphic<std::out_of_range>::value");
25 const char* msg = "out_of_range message";
26 std::out_of_range e(msg);
28 std::out_of_range e2(e);
34 std::string msg("another out_of_range message");
35 std::out_of_range e(msg)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/lua/
_std_common.i 34 T front()const throw (std::out_of_range){ // only read front & back
36 throw std::out_of_range("in "#CLASS"::front()");
39 T back()const throw (std::out_of_range){ // not write to them
41 throw std::out_of_range("in "#CLASS"::back()");
54 void pop_front() throw (std::out_of_range){
56 throw std::out_of_range("in "#CLASS"::pop_front()");
66 void pop_back() throw (std::out_of_range){
68 throw std::out_of_range("in "#CLASS"::pop_back()");
82 T __getitem__(unsigned int idx) throw (std::out_of_range){
84 throw std::out_of_range("in "#CLASS"::__getitem__()")
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/php/
std_vector.i 31 T pop() throw (std::out_of_range) {
33 throw std::out_of_range("pop from empty vector");
38 const_reference get(int i) throw (std::out_of_range) {
43 throw std::out_of_range("vector index out of range");
45 void set(int i, const value_type& val) throw (std::out_of_range) {
50 throw std::out_of_range("vector index out of range");
73 bool pop() throw (std::out_of_range) {
75 throw std::out_of_range("pop from empty vector");
80 const_reference get(int i) throw (std::out_of_range) {
85 throw std::out_of_range("vector index out of range")
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/go/
std_vector.i 28 const_reference get(int i) throw (std::out_of_range) {
33 throw std::out_of_range("vector index out of range");
35 void set(int i, const value_type& val) throw (std::out_of_range) {
40 throw std::out_of_range("vector index out of range");
62 const_reference get(int i) throw (std::out_of_range) {
67 throw std::out_of_range("vector index out of range");
69 void set(int i, const value_type& val) throw (std::out_of_range) {
74 throw std::out_of_range("vector index out of range");
  /prebuilts/misc/common/swig/include/2.0.11/java/
std_vector.i 30 const_reference get(int i) throw (std::out_of_range) {
35 throw std::out_of_range("vector index out of range");
37 void set(int i, const value_type& val) throw (std::out_of_range) {
42 throw std::out_of_range("vector index out of range");
64 const_reference get(int i) throw (std::out_of_range) {
69 throw std::out_of_range("vector index out of range");
71 void set(int i, const value_type& val) throw (std::out_of_range) {
76 throw std::out_of_range("vector index out of range");
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_except.i 42 struct out_of_range : logic_error
44 out_of_range(const string& msg);
  /prebuilts/misc/common/swig/include/2.0.11/r/
rcontainer.swg 26 throw std::out_of_range("index out of range");
35 throw std::out_of_range("index out of range");
139 value_type pop() throw (std::out_of_range) {
141 throw std::out_of_range("pop from empty container");
147 Sequence* __getslice__(difference_type i, difference_type j) throw (std::out_of_range) {
152 throw (std::out_of_range, std::invalid_argument) {
156 void __delslice__(difference_type i, difference_type j) throw (std::out_of_range) {
160 void __delitem__(difference_type i) throw (std::out_of_range) {
169 const value_type& __getitem__(difference_type i) const throw (std::out_of_range) {
173 void __setitem__(difference_type i, const value_type& x) throw (std::out_of_range) {
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_vector.i 224 vector(int capacity) throw (std::out_of_range) {
230 throw std::out_of_range("capacity");
234 CTYPE getitemcopy(int index) throw (std::out_of_range) {
238 throw std::out_of_range("index");
240 const_reference getitem(int index) throw (std::out_of_range) {
244 throw std::out_of_range("index");
246 void setitem(int index, CTYPE const& val) throw (std::out_of_range) {
250 throw std::out_of_range("index");
257 std::vector< CTYPE > *GetRange(int index, int count) throw (std::out_of_range, std::invalid_argument) {
259 throw std::out_of_range("index")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/
stof.pass.cpp 41 // 21.5p4 and p6: "call strtod [...] Throws out_of_range if strtod
47 catch (const std::out_of_range&)
53 // 21.5p11 and p13: "call wcstod [...] Throws out_of_range if wcstod
59 catch (const std::out_of_range&)
69 catch (const std::out_of_range&)
78 catch (const std::out_of_range&)
87 catch (const std::out_of_range&)
97 catch (const std::out_of_range&)
107 catch (const std::out_of_range&)
117 catch (const std::out_of_range&
    [all...]
stod.pass.cpp 40 catch (const std::out_of_range&)
49 catch (const std::out_of_range&)
59 catch (const std::out_of_range&)
68 catch (const std::out_of_range&)
77 catch (const std::out_of_range&)
87 catch (const std::out_of_range&)
97 catch (const std::out_of_range&)
107 catch (const std::out_of_range&)
stold.pass.cpp 42 catch (const std::out_of_range&)
51 catch (const std::out_of_range&)
61 catch (const std::out_of_range&)
70 catch (const std::out_of_range&)
79 catch (const std::out_of_range&)
89 catch (const std::out_of_range&)
99 catch (const std::out_of_range&)
109 catch (const std::out_of_range&)
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h 72 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error { class in inherits:logic_error
74 out_of_range(const string& __arg) : logic_error(__arg) {} function in class:out_of_range
76 ~out_of_range() _STLP_NOTHROW_INHERENTLY;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h 73 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error { class in inherits:logic_error
75 out_of_range(const string& __arg) : logic_error(__arg) {} function in class:out_of_range
77 ~out_of_range() _STLP_NOTHROW_INHERENTLY;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h 73 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error { class in inherits:logic_error
75 out_of_range(const string& __arg) : logic_error(__arg) {} function in class:out_of_range
77 ~out_of_range() _STLP_NOTHROW_INHERENTLY;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h 73 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error { class in inherits:logic_error
75 out_of_range(const string& __arg) : logic_error(__arg) {} function in class:out_of_range
77 ~out_of_range() _STLP_NOTHROW_INHERENTLY;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h 72 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error { class in inherits:logic_error
74 out_of_range(const string& __arg) : logic_error(__arg) {} function in class:out_of_range
76 ~out_of_range() _STLP_NOTHROW_INHERENTLY;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_stdexcept.h 72 class _STLP_CLASS_DECLSPEC out_of_range : public logic_error { class in inherits:logic_error
74 out_of_range(const string& __arg) : logic_error(__arg) {} function in class:out_of_range
76 ~out_of_range() _STLP_NOTHROW_INHERENTLY;
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
std_map.i 38 const T& get(const K& key) throw (std::out_of_range) {
43 throw std::out_of_range("key not found");
48 void del(const K& key) throw (std::out_of_range) {
53 throw std::out_of_range("key not found");
  /external/libcxx/test/std/strings/string.conversions/
stod.pass.cpp 40 catch (const std::out_of_range&)
49 catch (const std::out_of_range&)
59 catch (const std::out_of_range&)
68 catch (const std::out_of_range&)
77 catch (const std::out_of_range&)
87 catch (const std::out_of_range&)
97 catch (const std::out_of_range&)
107 catch (const std::out_of_range&)
stof.pass.cpp 44 catch (const std::out_of_range&)
53 catch (const std::out_of_range&)
63 catch (const std::out_of_range&)
72 catch (const std::out_of_range&)
81 catch (const std::out_of_range&)
91 catch (const std::out_of_range&)
101 catch (const std::out_of_range&)
111 catch (const std::out_of_range&)
stold.pass.cpp 42 catch (const std::out_of_range&)
51 catch (const std::out_of_range&)
61 catch (const std::out_of_range&)
70 catch (const std::out_of_range&)
79 catch (const std::out_of_range&)
89 catch (const std::out_of_range&)
99 catch (const std::out_of_range&)
109 catch (const std::out_of_range&)
  /external/libcxx/include/
stdexcept 24 class out_of_range;
128 class _LIBCPP_EXCEPTION_ABI out_of_range
132 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const string& __s) : logic_error(__s) {}
133 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const char* __s) : logic_error(__s) {}
135 virtual ~out_of_range() _NOEXCEPT;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
stdexcept 24 class out_of_range;
128 class _LIBCPP_EXCEPTION_ABI out_of_range
132 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const string& __s) : logic_error(__s) {}
133 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const char* __s) : logic_error(__s) {}
135 virtual ~out_of_range() _NOEXCEPT;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
stdexcept 24 class out_of_range;
128 class _LIBCPP_EXCEPTION_ABI out_of_range
132 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const string& __s) : logic_error(__s) {}
133 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const char* __s) : logic_error(__s) {}
135 virtual ~out_of_range() _NOEXCEPT;

Completed in 1684 milliseconds

1 2 3 4 5 6 7 8 91011>>