HomeSort by relevance Sort by last modified time
    Searched defs:called (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
convert_overflow.pass.cpp 22 bool called = false; variable
27 called = true;
35 assert(called);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug474.go 13 var called = false var
20 called = true
26 if !called {
27 panic("not called")
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15609.dir/
main.go 3 var called bool var
6 called = true
11 if !called {
12 panic("target not called")
  /prebuilts/go/linux-x86/test/fixedbugs/
bug474.go 13 var called = false var
20 called = true
26 if !called {
27 panic("not called")
  /prebuilts/go/linux-x86/test/fixedbugs/issue15609.dir/
main.go 3 var called bool var
6 called = true
11 if !called {
12 panic("target not called")
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.cons/
convert_overflow.pass.cpp 22 bool called = false; variable
27 called = true;
35 assert(called);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.cons/
convert_overflow.pass.cpp 22 bool called = false; variable
27 called = true;
35 assert(called);
  /prebuilts/go/darwin-x86/test/
reflectmethod1.go 7 // The linker can prune methods that are not directly called or
15 var called = false var
20 called = true
27 if !called {
28 panic("UniqueMethodName not called")
reflectmethod4.go 7 // The linker can prune methods that are not directly called or
15 var called = false var
20 called = true
27 if !called {
28 panic("UniqueMethodName not called")
  /prebuilts/go/linux-x86/test/
reflectmethod1.go 7 // The linker can prune methods that are not directly called or
15 var called = false var
20 called = true
27 if !called {
28 panic("UniqueMethodName not called")
reflectmethod4.go 7 // The linker can prune methods that are not directly called or
15 var called = false var
20 called = true
27 if !called {
28 panic("UniqueMethodName not called")
  /external/libbrillo/brillo/dbus/
dbus_param_reader_unittest.cc 22 bool called = false; local
23 auto callback = [&called]() { called = true; };
25 EXPECT_TRUE(called);
33 bool called = false; local
34 auto callback = [&called](int param1) {
36 called = true;
40 EXPECT_TRUE(called);
51 bool called = false; local
52 auto callback = [&called](bool p1, int p2, const VariantDictionary& p3)
72 bool called = false; local
92 bool called = false; local
113 bool called = false; local
131 bool called = false; local
146 bool called = false; local
162 bool called = false; local
181 bool called = false; local
215 bool called = false; local
236 bool called = false; local
    [all...]
  /external/libbrillo/brillo/message_loops/
glib_message_loop_unittest.cc 42 int called = 0; local
45 Bind([&called] { called++; }));
48 EXPECT_LT(2, called);
55 int called = 0; local
58 Bind([&called, fd] {
59 if (!called)
61 called++;
65 EXPECT_LT(2, called);
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
custom_alloc.pass.cpp 19 int called = 0; variable
24 ++called;
30 ++called;
46 assert(called == 0);
48 assert(called == 1);
50 assert(called == 2);
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
deallocate.pass.cpp 23 int called = 0; variable
34 ++called;
42 assert(called == 1);
  /external/libxml2/python/tests/
tstxpath.py 8 called = "" variable
11 global called
18 called = ctxt.function()
52 if called != "foo":
54 print("xpath function: %s" % (called))
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
18-1.c 26 * -> raise SIGABRT, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
18-10.c 26 * -> raise SIGPIPE, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
18-11.c 26 * -> raise SIGQUIT, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
18-12.c 26 * -> raise SIGSEGV, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
18-13.c 26 * -> raise SIGTERM, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
18-14.c 26 * -> raise SIGTSTP, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
18-15.c 26 * -> raise SIGTTIN, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
18-16.c 26 * -> raise SIGTTOU, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
18-17.c 26 * -> raise SIGUSR1, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");

Completed in 371 milliseconds

1 2 3 4 5 6 7 8 9