Home
last modified time | relevance | path

Searched refs:invoked (Results 1 – 25 of 633) sorted by relevance

12345678910>>...26

/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
Dfinally.cpp9 long invoked = 0; variable
18 [xs, &invoked]() { in __anonb1724ca20102()
20 | rxo::finally([&invoked]() { in __anonb1724ca20102()
21 ++invoked; in __anonb1724ca20102()
29 REQUIRE(1 == invoked);
54 long invoked = 0; variable
64 [xs, &invoked]() { in __anonb1724ca20302()
66 .finally([&invoked]() { in __anonb1724ca20302()
67 ++invoked; in __anonb1724ca20302()
75 REQUIRE(1 == invoked);
[all …]
Dfilter.cpp23 long invoked = 0; variable
45 [&xs, &invoked]() { in __anond35f9fd90202()
47 | rxo::filter([&invoked](int x) { in __anond35f9fd90202()
48 invoked++; in __anond35f9fd90202()
76 REQUIRE(9 == invoked);
89 long invoked = 0; variable
109 [&xs, &invoked]() { in __anond35f9fd90402()
111 .filter([&invoked](int x) { in __anond35f9fd90402()
112 invoked++; in __anond35f9fd90402()
140 REQUIRE(5 == invoked);
[all …]
Don_error_resume_next.cpp9 long invoked = 0; variable
31 [xs, ys, &invoked]() { in __anon17cce3870102()
33 .switch_on_error([ys, &invoked](rxu::error_ptr) { in __anon17cce3870102()
34 invoked++; in __anon17cce3870102()
69 REQUIRE(0 == invoked);
80 long invoked = 0; variable
102 [xs, ys, &invoked]() { in __anon17cce3870302()
104 .on_error_resume_next([ys, &invoked](rxu::error_ptr) { in __anon17cce3870302()
105 invoked++; in __anon17cce3870302()
140 REQUIRE(0 == invoked);
[all …]
Dtap.cpp9 long invoked = 0; variable
26 [xs, &invoked]() { in __anone2db90180102()
28 | rxo::tap([&invoked](int) { in __anone2db90180102()
29 invoked++; in __anone2db90180102()
57 REQUIRE(4 == invoked);
69 long invoked = 0; variable
87 [xs, &invoked]() { in __anone2db90180302()
89 .tap([&invoked](rxu::error_ptr) { in __anone2db90180302()
90 invoked++; in __anone2db90180302()
117 REQUIRE(1 == invoked);
Dlift.cpp92 long invoked = 0; variable
112 [&xs, &invoked]() { in __anon3192a8220202()
114 .lift<int>(liftfilter([&invoked](int x) { in __anon3192a8220202()
115 invoked++; in __anon3192a8220202()
143 REQUIRE(5 == invoked);
155 long invoked = 0; variable
175 [&xs, &invoked]() { in __anon3192a8220402()
177 >> rxo::lift<int>(liftfilter([&invoked](int x) { in __anon3192a8220402()
178 invoked++; in __anon3192a8220402()
206 REQUIRE(5 == invoked);
[all …]
Dmap.cpp9 long invoked = 0; variable
26 [xs, &invoked]() { in __anonc803e6d10102()
28 .map([&invoked](int x) { in __anonc803e6d10102()
29 invoked++; in __anonc803e6d10102()
58 REQUIRE(4 == invoked);
/external/testng/src/test/java/test/objectfactory/
DCustomFactoryTest.java22 assert LoggingObjectFactory.invoked == 1 : "Logging factory invoked " in setFactoryOnTestNG()
23 + LoggingObjectFactory.invoked + " times"; in setFactoryOnTestNG()
28 LoggingObjectFactory.invoked = 0; in resetCount()
37 assert LoggingObjectFactory.invoked == 1 : "Logging factory invoked " in setFactoryOnSuite()
38 + LoggingObjectFactory.invoked + " times"; in setFactoryOnSuite()
48 assert LoggingObjectFactory.invoked == 1 : "Logging factory invoked " in setFactoryByAnnotation()
49 + LoggingObjectFactory.invoked + " times"; in setFactoryByAnnotation()
DLoggingObjectFactory.java18 public static int invoked; field in LoggingObjectFactory
23 invoked++; in newInstance()
/external/Reactive-Extensions/RxCpp/Rx/v2/test/sources/
Dcreate.cpp9 long invoked = 0; variable
17 invoked++; in __anon44bf292c0102()
36 REQUIRE(1 == invoked);
48 long invoked = 0; variable
56 invoked++; in __anon44bf292c0302()
80 REQUIRE(1 == invoked);
Ddefer.cpp9 long invoked = 0; variable
25 invoked++; in __anonf4110b5e0102()
55 REQUIRE(1 == invoked);
/external/libcxx/test/std/thread/futures/futures.async/
Dasync.pass.cpp34 std::atomic_bool invoked = ATOMIC_VAR_INIT(false); variable
38 invoked = true; in f0()
47 invoked = true; in f1()
54 invoked = true; in f2()
60 invoked = true; in f3()
67 invoked = true; in f4()
82 invoked = false; in test()
89 assert(invoked == !IsDeferred); in test()
/external/guice/core/test/com/google/inject/internal/
DProxyFactoryTest.java52 assertTrue(simple.invoked); in testSimpleCase()
53 assertTrue(interceptor.invoked); in testSimpleCase()
57 boolean invoked = false; field in ProxyFactoryTest.Simple
60 invoked = true; in invoke()
66 boolean invoked = false; field in ProxyFactoryTest.SimpleInterceptor
70 invoked = true; in invoke()
91 assertFalse(interceptor.invoked); in testInterceptOneMethod()
95 assertFalse(interceptor.invoked); in testInterceptOneMethod()
99 assertTrue(interceptor.invoked); in testInterceptOneMethod()
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DServletTest.java139 final boolean[] invoked = new boolean[1]; in testRequestAndResponseBindings()
145 invoked[0] = true; in testRequestAndResponseBindings()
159 assertTrue(invoked[0]); in testRequestAndResponseBindings()
338 final boolean[] invoked = new boolean[1]; in testNewRequestObject()
343 invoked[0] = true; in testNewRequestObject()
351 assertTrue(invoked[0]); in testNewRequestObject()
359 final boolean[] invoked = new boolean[1]; in testExistingRequestObject()
364 invoked[0] = true; in testExistingRequestObject()
376 assertTrue(invoked[0]); in testExistingRequestObject()
384 final boolean[] invoked = new boolean[1]; in testNewSessionObject()
[all …]
/external/testng/src/test/java/test/simple/
DIncludedExcludedTest.java69 Collection<ITestNGMethod> invoked = suite.getInvokedMethods(); in generateReport() local
70 Assert.assertEquals(invoked.size(), m_included.length); in generateReport()
72 Assert.assertTrue(containsMethod(invoked, s)); in generateReport()
85 private boolean containsMethod(Collection<ITestNGMethod> invoked, String string) { in containsMethod() argument
86 for (ITestNGMethod m : invoked) { in containsMethod()
/external/guice/core/test/com/google/inject/
DIntegrationTest.java43 assertTrue(foo.invoked); in testIntegration()
48 assertTrue(foo.invoked); in testIntegration()
53 boolean invoked; field in IntegrationTest.Foo
56 invoked = true; in foo()
/external/mesa3d/src/compiler/glsl/glcpp/tests/
D085-incorrect-argument-count.c.expected1 0:2(1): preprocessor error: Error: macro MULT invoked with 1 arguments (expected 2)
3 0:3(1): preprocessor error: Error: macro MULT invoked with 1 arguments (expected 2)
5 0:4(1): preprocessor error: Error: macro MULT invoked with 3 arguments (expected 2)
/external/testng/src/test/java/test/sample/
DREADME.txt1 This directory contains "samples": TestNG tests that are not invoked directly but invoked
/external/testng/src/test/java/test/listeners/
DLListener.java8 public static boolean invoked = false; field in LListener
12 invoked = true; in beforeInvocation()
DListenerInXmlTest.java17 LListener.invoked = false; in listenerInXmlShouldBeInvoked()
19 Assert.assertTrue(LListener.invoked); in listenerInXmlShouldBeInvoked()
/external/llvm/test/Instrumentation/AddressSanitizer/
Dglobal_metadata_darwin.ll3 ; routines are invoked.
27 ; Test that __asan_register_image_globals is invoked from the constructor:
33 ; Test that __asan_unregister_image_globals is invoked from the destructor:
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/
Dglobal_metadata_darwin.ll3 ; routines are invoked.
31 ; Test that __asan_register_image_globals is invoked from the constructor:
37 ; Test that __asan_unregister_image_globals is invoked from the destructor:
/external/tensorflow/tensorflow/lite/examples/label_image/
Dlabel_image.md46 invoked
59 invoked
69 invoked
/external/guava/guava-tests/test/com/google/common/base/
DPreconditionsTest.java356 boolean invoked; field in PreconditionsTest.Message
358 assertFalse(invoked); in toString()
359 invoked = true; in toString()
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
DPreconditionsTest.java348 boolean invoked; field in PreconditionsTest.Message
350 assertFalse(invoked); in toString()
351 invoked = true; in toString()
/external/curl/m4/
Dcurl-confopts.m428 dnl Verify if configure has been invoked with option
54 dnl Verify if configure has been invoked with option
90 dnl Verify if configure has been invoked with option
143 dnl Verify if configure has been invoked with option
177 dnl Verify if configure has been invoked with option
233 dnl Verify if configure has been invoked with option
277 dnl Verify if configure has been invoked with option
324 dnl Verify if configure has been invoked with option
356 dnl Verify if configure has been invoked with option
390 dnl Verify if configure has been invoked with option
[all …]

12345678910>>...26