Searched refs:args_type (Results 1 – 8 of 8) sorted by relevance
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_chained_origin_depot.cpp | 30 typedef ChainedOriginDepotDesc args_type; typedef 32 bool eq(hash_type hash, const args_type &args) const; 36 static hash_type hash(const args_type &args); 38 static bool is_valid(const args_type &args); 40 void store(u32 id, const args_type &args, hash_type other_hash); 42 args_type load(u32 id) const; 63 bool ChainedOriginDepotNode::eq(hash_type hash, const args_type &args) const { in eq() 81 const args_type &args) { in hash() 106 bool ChainedOriginDepotNode::is_valid(const args_type &args) { return true; } in is_valid() 108 void ChainedOriginDepotNode::store(u32 id, const args_type &args, in store() [all …]
|
H A D | sanitizer_stackdepotbase.h | 36 typedef typename Node::args_type args_type; typedef 44 u32 Put(args_type args, bool *inserted = nullptr); 46 args_type Get(u32 id); 66 u32 find(u32 s, args_type args, hash_type hash) const; 80 u32 s, args_type args, hash_type hash) const { in find() 115 u32 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Put(args_type args, in Put() 151 typename StackDepotBase<Node, kReservedBits, kTabSizeLog>::args_type 154 return args_type(); in Get() 157 return args_type(); in Get()
|
H A D | sanitizer_stackdepot.cpp | 32 typedef StackTrace args_type; typedef 33 bool eq(hash_type hash, const args_type &args) const { in eq() 37 static hash_type hash(const args_type &args) { in hash() 43 static bool is_valid(const args_type &args) { in is_valid() 46 void store(u32 id, const args_type &args, hash_type hash); 47 args_type load(u32 id) const; 191 void StackDepotNode::store(u32 id, const args_type &args, hash_type hash) { in store() 200 StackDepotNode::args_type StackDepotNode::load(u32 id) const { in load()
|
/freebsd-src/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 53 // 'args' and 'args_type', and refer to the mock function type and its 2130 using args_type = std::tuple<Args...>; 2140 args_type{std::forward<Args>(arg)...}); 2145 const args_type& args) const { 2149 // args_type get passed, followed by a dummy of unspecified type for the 2155 /*args_type=*/args_type, 2157 typename std::tuple_element<arg_id, args_type>::type...>( 2179 GTEST_INTERNAL_ATTRIBUTE_MAYBE_UNUSED const args_type& args GMOCK_PP_REPEAT( \ 2184 const args_type [all...] |
H A D | gmock-more-actions.h | 545 typename args_type, GMOCK_ACTION_TEMPLATE_ARGS_NAMES_> \ 571 template <typename function_type, typename return_type, typename args_type, \
|
/freebsd-src/contrib/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 1065 // via args_type and args. in ACTION() 1067 StaticAssertTypeEq<std::tuple<int, char, int*>, args_type>(); 1068 args_type args_copy = args; in TEST()
|
H A D | gmock-actions_test.cc | 2144 ACTION(ReturnArity) { return std::tuple_size<args_type>::value; } in ACTION()
|
/freebsd-src/contrib/googletest/docs/ |
H A D | gmock_cook_book.md | 3975 `args_type` | The type of all arguments of the mock function as a tuple 3994 `args_type` | the type `std::tuple<bool, int*>`
|