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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
system_error.cpp 1 //===---------------------- system_error.cpp ------------------------------===//
10 #include "system_error"
139 // system_error
142 system_error::__init(const error_code& ec, string what_arg)
153 system_error::system_error(error_code ec, const string& what_arg) function in class:system_error
159 system_error::system_error(error_code ec, const char* what_arg) function in class:system_error
165 system_error::system_error(error_code ec function in class:system_error
171 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) function in class:system_error
177 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) function in class:system_error
183 system_error::system_error(int ev, const error_category& ecat) function in class:system_error
    [all...]
  /external/clang/test/SemaCXX/
PR9461.cpp 31 struct system_error:runtime_error{ // expected-note {{to match}} struct in inherits:runtime_error
32 system_error():time_error("" // expected-error 3 {{expected}} expected-note {{to match}}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code.pass.cpp 10 // <system_error>
12 // class system_error
14 // system_error(error_code ec);
18 #include <system_error>
24 std::system_error se(static_cast<int>(std::errc::not_a_directory),
ctor_error_code_const_char_pointer.pass.cpp 10 // <system_error>
12 // class system_error
14 // system_error(error_code ec, const char* what_arg);
18 #include <system_error>
25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg.c_str());
ctor_error_code_string.pass.cpp 10 // <system_error>
12 // class system_error
14 // system_error(error_code ec, const string& what_arg);
18 #include <system_error>
25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg);
ctor_int_error_category.pass.cpp 10 // <system_error>
12 // class system_error
14 // system_error(int ev, const error_category& ecat);
18 #include <system_error>
24 std::system_error se(static_cast<int>(std::errc::not_a_directory),
ctor_int_error_category_const_char_pointer.pass.cpp 10 // <system_error>
12 // class system_error
14 // system_error(int ev, const error_category& ecat, const char* what_arg);
18 #include <system_error>
25 std::system_error se(static_cast<int>(std::errc::not_a_directory),
ctor_int_error_category_string.pass.cpp 10 // <system_error>
12 // class system_error
14 // system_error(int ev, const error_category& ecat, const string& what_arg);
18 #include <system_error>
25 std::system_error se(static_cast<int>(std::errc::not_a_directory),
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
execution_monitor.ipp 332 report_error( execution_exception::system_error,
337 report_error( execution_exception::system_error,
341 report_error( execution_exception::system_error,
345 report_error( execution_exception::system_error,
349 report_error( execution_exception::system_error,
412 report_error( execution_exception::system_error,
417 report_error( execution_exception::system_error,
422 report_error( execution_exception::system_error,
427 report_error( execution_exception::system_error,
432 report_error( execution_exception::system_error,
    [all...]
  /external/llvm/lib/Support/
system_error.cpp 1 //===---------------------- system_error.cpp ------------------------------===//
14 #include "llvm/Support/system_error.h"
88 // Is in Platform/system_error.inc
91 // Is in Platform/system_error.inc
126 #include "Unix/system_error.inc"
129 #include "Windows/system_error.inc"
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file system_error
48 class system_error;
314 class system_error : public std::runtime_error
320 system_error(error_code __ec = error_code())
323 system_error(error_code __ec, const string& __what)
329 * system_error(error_code __ec, const char* __what)
332 * system_error(int __v, const error_category& __ecat, const char* __what)
336 system_error(int __v, const error_category& __ecat)
339 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file include/system_error
50 class system_error;
307 class system_error : public std::runtime_error
313 system_error(error_code __ec = error_code())
316 system_error(error_code __ec, const string& __what)
322 * system_error(error_code __ec, const char* __what)
325 * system_error(int __v, const error_category& __ecat, const char* __what)
330 system_error(int __v, const error_category& __ecat)
334 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file include/system_error
50 class system_error;
307 class system_error : public std::runtime_error
313 system_error(error_code __ec = error_code())
316 system_error(error_code __ec, const string& __what)
322 * system_error(error_code __ec, const char* __what)
325 * system_error(int __v, const error_category& __ecat, const char* __what)
330 system_error(int __v, const error_category& __ecat)
334 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file system_error
48 class system_error;
314 class system_error : public std::runtime_error
320 system_error(error_code __ec = error_code())
323 system_error(error_code __ec, const string& __what)
329 * system_error(error_code __ec, const char* __what)
332 * system_error(int __v, const error_category& __ecat, const char* __what)
336 system_error(int __v, const error_category& __ecat)
339 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file system_error
48 class system_error;
314 class system_error : public std::runtime_error
320 system_error(error_code __ec = error_code())
323 system_error(error_code __ec, const string& __what)
329 * system_error(error_code __ec, const char* __what)
332 * system_error(int __v, const error_category& __ecat, const char* __what)
336 system_error(int __v, const error_category& __ecat)
339 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file system_error
48 class system_error;
314 class system_error : public std::runtime_error
320 system_error(error_code __ec = error_code())
323 system_error(error_code __ec, const string& __what)
329 * system_error(error_code __ec, const char* __what)
332 * system_error(int __v, const error_category& __ecat, const char* __what)
336 system_error(int __v, const error_category& __ecat)
339 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file system_error
48 class system_error;
314 class system_error : public std::runtime_error
320 system_error(error_code __ec = error_code())
323 system_error(error_code __ec, const string& __what)
329 * system_error(error_code __ec, const char* __what)
332 * system_error(int __v, const error_category& __ecat, const char* __what)
336 system_error(int __v, const error_category& __ecat)
339 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file include/system_error
50 class system_error;
307 class system_error : public std::runtime_error
313 system_error(error_code __ec = error_code())
316 system_error(error_code __ec, const string& __what)
322 * system_error(error_code __ec, const char* __what)
325 * system_error(int __v, const error_category& __ecat, const char* __what)
330 system_error(int __v, const error_category& __ecat)
334 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file include/system_error
50 class system_error;
309 class system_error : public std::runtime_error
315 system_error(error_code __ec = error_code())
318 system_error(error_code __ec, const string& __what)
324 * system_error(error_code __ec, const char* __what)
327 * system_error(int __v, const error_category& __ecat, const char* __what)
332 system_error(int __v, const error_category& __ecat)
336 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file include/system_error
50 class system_error;
307 class system_error : public std::runtime_error
313 system_error(error_code __ec = error_code())
316 system_error(error_code __ec, const string& __what)
322 * system_error(error_code __ec, const char* __what)
325 * system_error(int __v, const error_category& __ecat, const char* __what)
330 system_error(int __v, const error_category& __ecat)
334 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file include/system_error
50 class system_error;
309 class system_error : public std::runtime_error
315 system_error(error_code __ec = error_code())
318 system_error(error_code __ec, const string& __what)
324 * system_error(error_code __ec, const char* __what)
327 * system_error(int __v, const error_category& __ecat, const char* __what)
332 system_error(int __v, const error_category& __ecat)
336 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
system_error 0 // <system_error> -*- C++ -*-
25 /** @file include/system_error
50 class system_error;
309 class system_error : public std::runtime_error
315 system_error(error_code __ec = error_code())
318 system_error(error_code __ec, const string& __what)
324 * system_error(error_code __ec, const char* __what)
327 * system_error(int __v, const error_category& __ecat, const char* __what)
332 system_error(int __v, const error_category& __ecat)
336 system_error(int __v, const error_category& __ecat, const string& __what
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/
eq.pass.cpp 10 // <system_error>
16 #include <system_error>
lt.pass.cpp 10 // <system_error>
16 #include <system_error>
neq.pass.cpp 10 // <system_error>
16 #include <system_error>

Completed in 1128 milliseconds

1 2 3 4 5 6 7 8 91011>>