Searched refs:args_type (Results 1 – 8 of 8) sorted by relevance
| /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()
|
| /src/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-actions.h | 2213 using args_type = std::tuple<Args...>; 2223 args_type{std::forward<Args>(arg)...}); 2228 const args_type& args) const { 2238 /*args_type=*/args_type, 2240 typename std::tuple_element<arg_id, args_type>::type...>( 2262 [[maybe_unused]] const args_type& args GMOCK_PP_REPEAT( \ 2267 const args_type& args GMOCK_PP_REPEAT(GMOCK_INTERNAL_ARG, , 10) 2320 typename args_type, GMOCK_ACTION_TEMPLATE_ARGS_NAMES_> \ 2336 template <typename function_type, typename return_type, typename args_type, \ 2359 typename args_type, GMOCK_ACTION_TEMPLATE_ARGS_NAMES_> \ [all …]
|
| H A D | gmock-more-actions.h | 544 typename args_type, GMOCK_ACTION_TEMPLATE_ARGS_NAMES_> \ 570 template <typename function_type, typename return_type, typename args_type, \
|
| /src/contrib/googletest/googlemock/test/ |
| H A D | gmock-more-actions_test.cc | 1096 StaticAssertTypeEq<std::tuple<int, char, int*>, args_type>(); in ACTION() 1097 args_type args_copy = args; in ACTION()
|
| H A D | gmock-actions_test.cc | 2208 ACTION(ReturnArity) { return std::tuple_size<args_type>::value; } in ACTION()
|
| /src/contrib/googletest/docs/ |
| H A D | gmock_cook_book.md | 4008 `args_type` | The type of all arguments of the mock function as a tuple 4027 `args_type` | the type `std::tuple<bool, int*>`
|