Home
last modified time | relevance | path

Searched refs:TestCallback (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/libs/thread/test/
Dtest_10964.cpp19 struct TestCallback struct
79 auto f1 = boost::make_ready_future().then(TestCallback()); in main()
86 auto f1 = boost::make_ready_future().then(TestCallback()); in main()
100 auto f1 = boost::make_ready_future().then(TestCallback()); in main()
106 auto f1 = boost::make_ready_future().then(TestCallback()); in main()
108 auto f3 = f1.then(TestCallback()); in main()
115 auto f1 = boost::make_ready_future().then(TestCallback()); in main()
119 auto f3 = f2.then(TestCallback()); in main()
127 TestCallback()).unwrap().then(TestCallback()).get(); in main()
134 TestCallback()).unwrap().then(TestCallback()).get(); in main()
[all …]
Dtest_10963.cpp19 struct TestCallback struct
44 auto f1 = test_future.then(TestCallback()); in main() argument
46 auto f2 = f1.then(TestCallback()); in main()
53 auto f1 = test_future.then(executor, TestCallback()); in main()
55 auto f2 = f1.then(executor, TestCallback()); in main()
/third_party/skia/tests/
DLazyProxyTest.cpp261 class TestCallback { class
263 TestCallback(int* value, bool releaseCallback, sk_sp<GrTexture> tex) in TestCallback() function in TestCallback
267 TestCallback(const TestCallback& that) { SkASSERT(0); } in TestCallback() function in TestCallback
268 TestCallback(TestCallback&& that) in TestCallback() function in TestCallback
275 ~TestCallback() { fValue ? (void)(*fValue = -1) : void(); } in ~TestCallback()
277 TestCallback& operator=(TestCallback&& that) { in operator =()
281 TestCallback& operator=(const TestCallback& that) = delete;
295 TestCallback(&testCount, releaseCallback, tex), format, {kSize, kSize},
/third_party/flutter/skia/tests/
DLazyProxyTest.cpp248 class TestCallback { class
250 TestCallback(int* value) : fValue(value) {} in TestCallback() function in TestCallback
251 TestCallback(const TestCallback& that) { SkASSERT(0); } in TestCallback() function in TestCallback
252 TestCallback(TestCallback&& that) : fValue(that.fValue) { that.fValue = nullptr; } in TestCallback() function in TestCallback
254 ~TestCallback() { fValue ? (void)(*fValue = -1) : void(); } in ~TestCallback()
256 TestCallback& operator=(TestCallback&& that) { in operator =()
260 TestCallback& operator=(const TestCallback& that) = delete;
271 TestCallback(&testCount), format, desc, GrRenderable::kNo, 1,
/third_party/typescript_eslint/packages/shared-fixtures/fixtures/typescript/basics/
Dtype-alias-declaration-export-function-type.src.ts1 export type TestCallback = (a: number) => void; alias
/third_party/flutter/flutter/packages/flutter/test/widgets/
Ddispose_ancestor_lookup_test.dart8 typedef TestCallback = void Function(BuildContext context);
13 final TestCallback callback;
/third_party/typescript_eslint/packages/typescript-estree/tests/snapshots/typescript/basics/
Dtype-alias-declaration-export-function-type.src.ts.shot19 "name": "TestCallback",
236 "value": "TestCallback",
/third_party/abseil-cpp/absl/flags/
Dflag_test.cc57 void TestCallback() {} in TestCallback() function
179 .OnUpdate(TestCallback); in TestConstructionFor()
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
Dflag_test.cc59 void TestCallback() {} in TestCallback() function
182 .OnUpdate(TestCallback); in TestConstructionFor()
/third_party/cef/tests/ceftests/
Durlrequest_unittest.cc1541 typedef base::Callback<void(const base::Closure&)> TestCallback; typedef in __anoncdc9e1c50111::RequestTestRunner
2565 TestCallback setup, in RegisterTest()
2566 TestCallback run) { in RegisterTest()
2699 TestCallback setup;
2700 TestCallback run;
/third_party/python/Lib/test/
Dtest_optparse.py1090 class TestCallback(BaseTest): class