Home
last modified time | relevance | path

Searched refs:init_called (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/ctypes/test/
Dtest_pickling.py9 init_called = 0 variable in X
11 X.init_called += 1
35 X.init_called = 0
39 self.assertEqual(X.init_called, 1)
44 self.assertEqual(X.init_called, 1)
Dtest_frombuffer.py8 init_called = False variable in X
19 self.assertFalse(y.init_called)
91 self.assertFalse(y.init_called)
/third_party/flutter/engine/flutter/shell/platform/windows/client_wrapper/
Dflutter_window_controller_unittests.cc28 bool init_called() { return init_called_; } in init_called() function in flutter::__anon68a7e25f0111::TestWindowsApi
46 EXPECT_EQ(test_api->init_called(), true); in TEST()
49 EXPECT_EQ(test_api->init_called(), true); in TEST()
/third_party/flutter/engine/flutter/shell/platform/glfw/client_wrapper/
Dflutter_window_controller_unittests.cc29 bool init_called() { return init_called_; } in init_called() function in flutter::__anon208560c40111::TestGlfwApi
47 EXPECT_EQ(test_api->init_called(), true); in TEST()
50 EXPECT_EQ(test_api->init_called(), true); in TEST()
/third_party/node/test/node-api/test_make_callback/
Dtest-async-hooks.js12 init_called: false, property
21 hook_result.init_called = true;
47 assert.strictEqual(hook_result.init_called, true);
/third_party/node/test/node-api/test_async_context/
Dtest-gcable.js14 init_called: false, property
22 hook_result.init_called = true;
Dtest-gcable-callback.js18 init_called: false, property
26 hook_result.init_called = true;
Dtest.js16 init_called: false, property
24 hook_result.init_called = true;
/third_party/glib/glib/tests/
Derror.c213 int init_called; member
239 init_check->init_called++; in test_error_private_init()
283 g_assert_cmpint (check.init_called, ==, 1); in test_extended()
291 g_assert_cmpint (check.init_called, ==, 2); in test_extended()
305 g_assert_cmpint (check.init_called, ==, 2); in test_extended()
/third_party/openssl/crypto/conf/
Dconf_mod.c294 int init_called = 0; in module_init() local
313 init_called = 1; in module_init()
339 if (pmod->finish && init_called) in module_init()
/third_party/openssl/crypto/engine/
Deng_devcrypto.c463 int init_called; member
529 digest_ctx->init_called = 1; in digest_init()
598 if (digest_from == NULL || digest_from->init_called != 1) in digest_copy()
/third_party/node/src/
Dnode.cc830 static std::atomic_bool init_called{false}; variable
836 CHECK(!init_called.exchange(true)); in InitializeNodeWithArgs()