Searched refs:test_item (Results 1 – 8 of 8) sorted by relevance
/external/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/ |
D | minimal-mqtt-client-multi.c | 19 struct test_item { struct 109 connect_client(struct lws_context *context, struct test_item *item) in connect_client() 147 struct test_item *item = lws_container_of(sul, struct test_item, sul); in start_conn() 190 struct test_item *item = (struct test_item *)lws_get_opaque_user_data(wsi); in callback_mqtt()
|
/external/python/cpython3/Lib/unittest/ |
D | case.py | 115 def decorator(test_item): argument 116 if not isinstance(test_item, type): 117 @functools.wraps(test_item) 120 test_item = skip_wrapper 122 test_item.__unittest_skip__ = True 123 test_item.__unittest_skip_why__ = reason 124 return test_item 126 test_item = reason 128 return decorator(test_item) 147 def expectedFailure(test_item): argument [all …]
|
/external/libchrome/base/containers/ |
D | mru_cache_unittest.cc | 48 CachedItem test_item; in TEST() local 86 Cache::iterator test_item = cache.Get(kItem1Key); in TEST() local 87 ASSERT_TRUE(test_item != cache.end()); in TEST() 88 EXPECT_EQ(kItem1Key, test_item->first); in TEST() 89 EXPECT_EQ(item1.value, test_item->second.value); in TEST()
|
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/ |
D | case.py | 70 def decorator(test_item): argument 73 test_item, 75 test_item, 77 @wraps(test_item) 80 test_item = skip_wrapper 82 test_item.__unittest_skip__ = True 83 test_item.__unittest_skip_why__ = reason 84 return test_item
|
/external/python/cpython2/Lib/unittest/ |
D | case.py | 58 def decorator(test_item): argument 59 if not isinstance(test_item, (type, types.ClassType)): 60 @functools.wraps(test_item) 63 test_item = skip_wrapper 65 test_item.__unittest_skip__ = True 66 test_item.__unittest_skip_why__ = reason 67 return test_item
|
/external/autotest/server/ |
D | site_server_job_utils.py | 18 class test_item(object): class
|
D | site_gtest_runner.py | 40 self._gtest = site_server_job_utils.test_item(*gtest_entry)
|
/external/pigweed/pw_containers/ |
D | intrusive_list_test.cc | 163 for (auto& test_item : list) { in TEST() local 165 EXPECT_EQ(loop_count, test_item.GetNumber()); in TEST()
|