Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_chained_origin_depot.h51 typedef ChainedOriginDepotDesc args_type; typedef
53 bool eq(u32 hash, const args_type &args) const;
55 static uptr storage_size(const args_type &args);
57 static u32 hash(const args_type &args);
59 static bool is_valid(const args_type &args);
61 void store(const args_type &args, u32 other_hash);
63 args_type load() const;
H A Dsanitizer_chained_origin_depot.cpp17 u32 hash, const args_type &args) const { in eq()
22 const args_type &args) { in storage_size()
39 u32 ChainedOriginDepot::ChainedOriginDepotNode::hash(const args_type &args) { in hash()
65 const args_type &args) { in is_valid()
69 void ChainedOriginDepot::ChainedOriginDepotNode::store(const args_type &args, in store()
75 ChainedOriginDepot::ChainedOriginDepotNode::args_type
77 args_type ret = {here_id, prev_id}; in load()
H A Dsanitizer_stackdepotbase.h28 typedef typename Node::args_type args_type; typedef
31 handle_type Put(args_type args, bool *inserted = nullptr);
33 args_type Get(u32 id);
42 static Node *find(Node *s, args_type args, u32 hash);
64 args_type args, in find()
100 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Put(args_type args, in Put()
139 typename StackDepotBase<Node, kReservedBits, kTabSizeLog>::args_type
142 return args_type(); in Get()
159 return args_type(); in Get()
H A Dsanitizer_stackdepot.cpp37 typedef StackTrace args_type; typedef
38 bool eq(u32 hash, const args_type &args) const { in eq()
49 static uptr storage_size(const args_type &args) { in storage_size()
52 static u32 hash(const args_type &args) { in hash()
57 static bool is_valid(const args_type &args) { in is_valid()
60 void store(const args_type &args, u32 hash) { in store()
66 args_type load() const { in load()
67 return args_type(&stack[0], size, tag); in load()
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-generated-actions.h1371 args_type;\
1432 args_type;\
1479 args_type;\
1532 args_type;\
1590 args_type;\
1655 args_type;\
1728 args_type;\
1806 args_type;\
1890 args_type;\
1982 args_type;\
[all …]
H A Dgmock-generated-actions.h.pump326 // 'args' and 'args_type', and refer to the mock function type and its
406 const args_type& args GTEST_ATTRIBUTE_UNUSED_
602 args_type;\
604 virtual return_type Perform(const args_type& args) {\
609 return_type gmock_PerformImpl(const args_type& args[[]]
689 args_type;\
691 virtual return_type Perform(const args_type& args) {\
696 return_type gmock_PerformImpl(const args_type& args, [[]]
H A Dgmock-more-actions.h189 typedef typename ::testing::tuple_element<k, args_type>::type argk_type; in ACTION_TEMPLATE()
/freebsd-13.1/contrib/googletest/googlemock/docs/
H A DDesignDoc.md94 | `args_type` | The type of all arguments of the mock function as a tuple |
110 | `args_type` | the type `std::tr1::tuple<bool, int*>` |
H A DCookBook.md3324 | `args_type` | The type of all arguments of the mock function as a tuple |
3341 | `args_type` | the type `::testing::tuple<bool, int*>` |
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc642 StaticAssertTypeEq<tuple<int, char, int*>, args_type>(); in ACTION()
643 args_type args_copy = args; in ACTION()