/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.badexp/ |
D | regex_error.pass.cpp | 28 assert(e.code() == std::regex_constants::error_collate); in main() 33 assert(e.code() == std::regex_constants::error_ctype); in main() 38 assert(e.code() == std::regex_constants::error_escape); in main() 44 assert(e.code() == std::regex_constants::error_backref); in main() 49 assert(e.code() == std::regex_constants::error_brack); in main() 54 assert(e.code() == std::regex_constants::error_paren); in main() 59 assert(e.code() == std::regex_constants::error_brace); in main() 64 assert(e.code() == std::regex_constants::error_badbrace); in main() 69 assert(e.code() == std::regex_constants::error_range); in main() 75 assert(e.code() == std::regex_constants::error_space); in main() [all …]
|
/ndk/sources/host-tools/ndk-stack/regex/ |
D | regerror.c | 50 int code; member 90 for (r = rerrs; r->code != 0; r++) in regerror() 91 if (r->code == target) in regerror() 95 if (r->code != 0) { in regerror() 122 for (r = rerrs; r->code != 0; r++) in regatoi() 125 if (r->code == 0) in regatoi() 128 (void)snprintf(localbuf, localbufsize, "%d", r->code); in regatoi()
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | run_make_tests.pl | 133 local($code); 153 $code = &run_command_with_output($logname,$command); 159 if ($code & 0x7000) { 160 $code &= ~0x7000; 173 if ($code != $expected_code) { 174 print "Error running $make_path (expected $expected_code; got $code): $command\n"; 177 if ($code & 127) { 178 print STDERR "\nCaught signal ".($code & 127)."!\n"; 179 exit($code);
|
D | test_driver.pl | 452 $code = do $perl_testname; 458 if (!defined($code)) 467 elsif ($code == -1) { 470 elsif ($code != 1 && $code != -1) { 472 warn "\n*** Test returned $code\n"; 489 elsif (!defined $code || $code > 0) { 492 elsif ($code < 0) { 711 local ($code); 715 $code = system "++attach_default_output_hack $filename"; 716 $code == -2 || &error ("adoh death\n", 1); [all …]
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | make.texi | 9 @settitle GNU @code{make} 21 This file documents the GNU @code{make} utility, which determines 26 of @cite{The GNU Make Manual}, for GNU @code{make} version @value{VERSION}. 64 @subtitle GNU @code{make} Version @value{VERSION} 84 @top GNU @code{make} 90 * Overview:: Overview of @code{make}. 91 * Introduction:: An introduction to @code{make}. 92 * Makefiles:: Makefiles tell @code{make} what to do. 99 * Invoking make: Running. How to invoke @code{make} on the command line. 102 * Archives:: How @code{make} can update library archives. [all …]
|
D | make-stds.texi | 58 to avoid trouble on systems where the @code{SHELL} variable might be 60 @code{make}.) 62 Different @code{make} programs have incompatible suffix lists and 80 of the source code. Without one of these prefixes, the current search 97 When using GNU @code{make}, relying on @samp{VPATH} to find the source 99 since the @code{make} automatic variable @samp{$<} will represent the 100 source file wherever it is. (Many versions of @code{make} set @samp{$<} 140 subtargets) work correctly with a parallel @code{make}. 146 @code{configure}) to run in @code{sh}, not in @code{csh}. Don't use any 147 special features of @code{ksh} or @code{bash}. [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.future_error/ |
D | code.pass.cpp | 24 assert(f.code() == ec); in main() 29 assert(f.code() == ec); in main() 34 assert(f.code() == ec); in main() 39 assert(f.code() == ec); in main()
|
/ndk/tests/device/issue19851-sigsetjmp/jni/ |
D | issue19851-sigsetjmp.c | 62 int code, ret; in main() local 69 if ((code = sigsetjmp(sbuf, 1)) == 0) in main() 76 printf("siglongjmp() back to main, code = %d\n", code); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/ |
D | dtor.pass.cpp | 45 assert(e.code() == make_error_code(std::future_errc::broken_promise)); in main() 74 assert(e.code() == make_error_code(std::future_errc::broken_promise)); in main() 110 e.code() == make_error_code(std::future_errc::broken_promise) || in main() 111 e.code() == std::error_code(0, std::future_category())); in main()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/debug/ |
D | error.hpp | 21 # define BOOST_PP_ERROR(code) BOOST_PP_CAT(BOOST_PP_ERROR_, code) argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | system_error.cpp | 34 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT in equivalent() argument 36 return default_error_condition(code) == condition; in equivalent() 40 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT in equivalent() argument 42 return *this == code.category() && code.value() == condition; in equivalent()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/ |
D | unlock.pass.cpp | 42 assert(e.code().value() == EPERM); in main() 52 assert(e.code().value() == EPERM); in main()
|
D | try_lock.pass.cpp | 46 assert(e.code().value() == EDEADLK); in main() 60 assert(e.code().value() == EPERM); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/ |
D | unordered_set | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | unordered_map | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | cwchar | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | pthread_alloc | 20 * Permission to modify the code and to distribute modified code is granted, 21 * provided the above notices are retained, and a notice that the code was
|
D | new | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | csetjmp | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | clocale | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | cwctype | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | csignal | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | cstring | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
D | cstddef | 10 * Permission to modify the code and to distribute modified code is granted, 11 * provided the above notices are retained, and a notice that the code was
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/ |
D | unlock.pass.cpp | 47 assert(e.code().value() == EPERM); in main() 57 assert(e.code().value() == EPERM); in main()
|