Lines Matching refs:FunctionCallTrie

22   FunctionCallTrie::Allocators Allocators = FunctionCallTrie::InitAllocators();  in TEST()
23 FunctionCallTrie Trie(Allocators); in TEST()
28 auto A = FunctionCallTrie::InitAllocators(); in TEST()
29 FunctionCallTrie Trie(A); in TEST()
45 auto A = FunctionCallTrie::InitAllocators(); in TEST()
46 FunctionCallTrie Trie(A); in TEST()
60 auto A = FunctionCallTrie::InitAllocators(); in TEST()
61 FunctionCallTrie Trie(A); in TEST()
76 auto A = FunctionCallTrie::InitAllocators(); in TEST()
77 FunctionCallTrie Trie(A); in TEST()
86 auto A = FunctionCallTrie::InitAllocators(); in TEST()
87 FunctionCallTrie Trie(A); in TEST()
99 auto A = FunctionCallTrie::InitAllocators(); in TEST()
100 FunctionCallTrie Trie(A); in TEST()
110 auto A = FunctionCallTrie::InitAllocators(); in TEST()
111 FunctionCallTrie Trie(A); in TEST()
153 auto A = FunctionCallTrie::InitAllocators(); in TEST()
154 FunctionCallTrie Trie(A); in TEST()
195 auto A = FunctionCallTrie::InitAllocators(); in TEST()
196 FunctionCallTrie Trie(A); in TEST()
220 auto A = FunctionCallTrie::InitAllocators(); in TEST()
221 FunctionCallTrie Trie(A); in TEST()
231 auto B = FunctionCallTrie::InitAllocators(); in TEST()
232 FunctionCallTrie Copy(B); in TEST()
248 [](const FunctionCallTrie::NodeIdPair &R) { return R.FId == 2; }) in TEST()
253 [](const FunctionCallTrie::NodeIdPair &R) { return R.FId == 2; }) in TEST()
261 auto A = FunctionCallTrie::InitAllocators(); in TEST()
262 FunctionCallTrie T0(A); in TEST()
263 FunctionCallTrie T1(A); in TEST()
285 auto B = FunctionCallTrie::InitAllocators(); in TEST()
286 FunctionCallTrie Merged(B); in TEST()
313 alignas(FunctionCallTrie::Allocators) in TEST()
314 std::byte AllocatorsStorage[sizeof(FunctionCallTrie::Allocators)]; in TEST()
316 FunctionCallTrie::Allocators(FunctionCallTrie::InitAllocators()); in TEST()
318 reinterpret_cast<FunctionCallTrie::Allocators *>(&AllocatorsStorage); in TEST()
320 alignas(FunctionCallTrie) std::byte FCTStorage[sizeof(FunctionCallTrie)]; in TEST()
321 new (&FCTStorage) FunctionCallTrie(*A); in TEST()
322 auto *T = reinterpret_cast<FunctionCallTrie *>(&FCTStorage); in TEST()
329 T->~FunctionCallTrie(); in TEST()
331 new (A) FunctionCallTrie::Allocators(FunctionCallTrie::InitAllocators()); in TEST()
332 new (T) FunctionCallTrie(*A); in TEST()