Searched refs:death (Results 1 - 20 of 20) sorted by relevance

/external/llvm/utils/unittest/
H A DCMakeLists.txt38 googletest/gtest-death-test.cc
/external/chromium/testing/gtest/
H A DCMakeLists.txt114 cxx_test(gtest-death-test_test gtest_main)
150 cxx_test_with_flags(gtest-death-test_ex_nocatch_test
152 gtest test/gtest-death-test_ex_test.cc)
153 cxx_test_with_flags(gtest-death-test_ex_catch_test
155 gtest test/gtest-death-test_ex_test.cc)
/external/libvpx/libvpx/third_party/googletest/src/
H A DCMakeLists.txt114 cxx_test(gtest-death-test_test gtest_main)
150 cxx_test_with_flags(gtest-death-test_ex_nocatch_test
152 gtest test/gtest-death-test_ex_test.cc)
153 cxx_test_with_flags(gtest-death-test_ex_catch_test
155 gtest test/gtest-death-test_ex_test.cc)
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-death-test.h34 // This header file defines the public API for death tests. It is
41 #include <gtest/internal/gtest-death-test-internal.h>
45 // This flag controls the style of death tests. Valid values are "threadsafe",
46 // meaning that the death test child process will re-execute the test binary
47 // from the start, running only a single death test, or "fast",
54 // The following macros are useful for writing death tests.
63 // 2. The parent process forks a sub-process and runs the death test
64 // in it; the sub-process exits with code 0 at the end of the death
77 // death tests only when there is a single thread. Since exit() has a
143 // The death testin
[all...]
H A Dgtest-death-test.cc32 // This file implements death tests.
34 #include <gtest/gtest-death-test.h>
57 // The default death test style.
63 "Indicates how to run a death test in a forked child process: "
65 "from the beginning, running only the specific death test) or "
66 "\"fast\" (child process runs the death test immediately "
73 "the single death test to run, and a file descriptor to "
77 "death test. FOR INTERNAL USE ONLY.");
102 // Utilities needed for death tests.
127 // Generates a textual failure message when a death tes
[all...]
H A Dgtest.h67 #include <gtest/gtest-death-test.h>
390 // Increments the number of death tests encountered in this test so
/external/open-vcdiff/gtest/include/gtest/
H A Dgtest-death-test.h34 // This header file defines the public API for death tests. It is
41 #include <gtest/internal/gtest-death-test-internal.h>
45 // This flag controls the style of death tests. Valid values are "threadsafe",
46 // meaning that the death test child process will re-execute the test binary
47 // from the start, running only a single death test, or "fast",
54 // The following macros are useful for writing death tests.
63 // 2. The parent process clone()s a sub-process and runs the death
65 // death test, if it hasn't exited already.
89 // On the regular expressions used in death tests:
97 // death test
[all...]
H A Dgtest.h57 #include <gtest/gtest-death-test.h>
488 // death tests there are in the Test, and how much time it took to run
570 // Returns the death test count.
573 // Increments the death test count, returning the new count.
590 // Running count of death tests.
668 // Increments the number of death tests encountered in this test so
/external/protobuf/gtest/include/gtest/
H A Dgtest-death-test.h34 // This header file defines the public API for death tests. It is
41 #include <gtest/internal/gtest-death-test-internal.h>
45 // This flag controls the style of death tests. Valid values are "threadsafe",
46 // meaning that the death test child process will re-execute the test binary
47 // from the start, running only a single death test, or "fast",
54 // The following macros are useful for writing death tests.
63 // 2. The parent process clone()s a sub-process and runs the death
65 // death test, if it hasn't exited already.
89 // On the regular expressions used in death tests:
97 // death test
[all...]
H A Dgtest.h57 #include <gtest/gtest-death-test.h>
406 // death tests there are in the Test, and how much time it took to run
488 // Returns the death test count.
491 // Increments the death test count, returning the new count.
508 // Running count of death tests.
586 // Increments the number of death tests encountered in this test so
/external/openssh/
H A Dssh-agent.c109 u_int death; member in struct:identity
445 if (id->death == 0)
447 if (now >= id->death) {
453 deadline = (deadline == 0) ? id->death :
454 MIN(deadline, id->death);
468 int type, success = 0, death = 0, confirm = 0; local
622 death = time(NULL) + buffer_get_int(&e->request);
636 if (lifetime && !death)
637 death = time(NULL) + lifetime;
649 id->death
704 int i, type, version, count = 0, success = 0, death = 0, confirm = 0; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DNPCAnimationComponent.java101 death(parentObject);
365 protected void death(GameObject parentObject) { method in class:NPCAnimationComponent
/external/chromium/sdch/open-vcdiff/
H A DMakefile.am65 src/gtest/gtest-death-test.h \
70 src/gtest/internal/gtest-death-test-internal.h \
77 src/gtest/gtest-death-test.cc \
/external/open-vcdiff/
H A DMakefile.am72 gtest/include/gtest/gtest-death-test.h \
80 gtest/include/gtest/internal/gtest-death-test-internal.h \
92 gtest/src/gtest-death-test.cc \
/external/skia/tests/
H A DMathTest.cpp87 int death = 0; local
109 death += 1;
110 printf("death src:%d dst:%d a:%d result:%d float:%g\n",
116 SkDebugf("---- failed %d death %d\n", failed, death);
/external/gtest/test/
H A DAndroid.mk74 gtest-death-test_test.cc \
/external/open-vcdiff/gtest/src/
H A Dgtest-death-test.cc32 // This file implements death tests.
34 #include <gtest/gtest-death-test.h>
73 // The default death test style.
79 "Indicates how to run a death test in a forked child process: "
81 "from the beginning, running only the specific death test) or "
82 "\"fast\" (child process runs the death test immediately "
88 "Instructs to use fork()/_exit() instead of clone() in death tests. "
101 "the single death test to run, and a file descriptor to "
105 "death test. FOR INTERNAL USE ONLY.");
136 // Utilities needed for death test
[all...]
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc32 // This file implements death tests.
34 #include <gtest/gtest-death-test.h>
73 // The default death test style.
79 "Indicates how to run a death test in a forked child process: "
81 "from the beginning, running only the specific death test) or "
82 "\"fast\" (child process runs the death test immediately "
88 "Instructs to use fork()/_exit() instead of clone() in death tests. "
101 "the single death test to run, and a file descriptor to "
105 "death test. FOR INTERNAL USE ONLY.");
136 // Utilities needed for death test
[all...]
/external/protobuf/gtest/test/
H A Dgtest-death-test_test.cc32 // Tests for death tests.
34 #include <gtest/gtest-death-test.h>
80 // A helper class whose objects replace the death test factory for a
106 // Tests that death tests work.
118 fprintf(stderr, "%s", "death inside StaticMemberFunction().");
123 // things that conflict with death tests.
130 fprintf(stderr, "%s", "death inside MemberFunction().");
149 GTEST_LOG_(FATAL) << "death inside MayDie::MemberFunction().";
160 GTEST_LOG_(FATAL) << "death inside GlobalFunction().";
165 GTEST_LOG_(FATAL) << "death insid
[all...]
/external/iproute2/doc/
H A Dip-cref.tex1740 death.

Completed in 772 milliseconds