Home
last modified time | relevance | path

Searched refs:args_type (Results 1 – 8 of 8) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_chained_origin_depot.cpp30 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 Dsanitizer_stackdepotbase.h36 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 Dsanitizer_stackdepot.cpp32 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 Dgmock-actions.h2213 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 Dgmock-more-actions.h544 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 Dgmock-more-actions_test.cc1096 StaticAssertTypeEq<std::tuple<int, char, int*>, args_type>(); in ACTION()
1097 args_type args_copy = args; in ACTION()
H A Dgmock-actions_test.cc2208 ACTION(ReturnArity) { return std::tuple_size<args_type>::value; } in ACTION()
/src/contrib/googletest/docs/
H A Dgmock_cook_book.md4008 `args_type` | The type of all arguments of the mock function as a tuple
4027 `args_type` | the type `std::tuple<bool, int*>`