Home
last modified time | relevance | path

Searched refs:code (Results 1 – 25 of 249) sorted by relevance

12345678910

/ndk/sources/cxx-stl/llvm-libc++/test/re/re.badexp/
Dregex_error.pass.cpp28 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/
Dregerror.c50 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/
Drun_make_tests.pl133 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);
Dtest_driver.pl452 $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/
Dmake.texi9 @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 …]
Dmake-stds.texi58 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++/test/thread/futures/futures.future_error/
Dcode.pass.cpp24 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/sources/host-tools/sed-4.2.1/doc/
Dsed.texi7 @c Check for consistency: regexps in @code, text that they match in @samp.
12 @c @code for sed commands and flags
192 @table @code
215 How @code{sed} works}).
218 via the @code{p} command.
245 output.@footnote{This applies to commands such as @code{=},
246 @code{a}, @code{c}, @code{i}, @code{l}, @code{p}. You can
247 still write to the standard output by using the @code{w}
249 or @code{W} commands together with the @file{/dev/stdout}
262 This rule is followed: if the extension doesn't contain a @code{*},
[all …]
Dsed-in.texi6 @c Check for consistency: regexps in @code, text that they match in @samp.
11 @c @code for sed commands and flags
191 @table @code
214 How @code{sed} works}).
217 via the @code{p} command.
244 output.@footnote{This applies to commands such as @code{=},
245 @code{a}, @code{c}, @code{i}, @code{l}, @code{p}. You can
246 still write to the standard output by using the @code{w}
248 or @code{W} commands together with the @file{/dev/stdout}
261 This rule is followed: if the extension doesn't contain a @code{*},
[all …]
/ndk/tests/device/issue19851-sigsetjmp/jni/
Dissue19851-sigsetjmp.c62 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++/src/
Dsystem_error.cpp33 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT in equivalent() argument
35 return default_error_condition(code) == condition; in equivalent()
39 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT in equivalent() argument
41 return *this == code.category() && code.value() == condition; in equivalent()
/ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
Dunlock.pass.cpp42 assert(e.code().value() == EPERM); in main()
52 assert(e.code().value() == EPERM); in main()
/ndk/sources/cxx-stl/stlport/stlport/
Dunordered_set10 * 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
Dunordered_map10 * 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
Dcassert10 * 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
Dclocale10 * 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
Dcsetjmp10 * 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
Dpthread_alloc20 * 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
Dcwchar10 * 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
Dcstring10 * 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
Dcctype10 * 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
Dciso64610 * 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++/test/thread/futures/futures.promise/
Ddtor.pass.cpp45 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()
103 assert(e.code() == make_error_code(std::future_errc::broken_promise)); in main()
Dcopy_ctor.fail.cpp38 assert(e.code() == make_error_code(std::future_errc::no_state)); in main()
57 assert(e.code() == make_error_code(std::future_errc::no_state)); in main()
76 assert(e.code() == make_error_code(std::future_errc::no_state)); in main()
Dmove_ctor.pass.cpp39 assert(e.code() == make_error_code(std::future_errc::no_state)); in main()
58 assert(e.code() == make_error_code(std::future_errc::no_state)); in main()
77 assert(e.code() == make_error_code(std::future_errc::no_state)); in main()

12345678910