aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp
blob: 4e8a1a779c0cfc84fcb37aa39aff2173ea9406eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <string>
#ifdef _LIBCPP_INLINE_VISIBILITY
#undef _LIBCPP_INLINE_VISIBILITY
#endif
#define _LIBCPP_INLINE_VISIBILITY
#include <unordered_map>
#include <unordered_set>

using std::string;

#define intstr_map std::unordered_map<int, string> 
#define intstr_mmap std::unordered_multimap<int, string> 

#define int_set std::unordered_set<int> 
#define str_set std::unordered_set<string> 
#define int_mset std::unordered_multiset<int> 
#define str_mset std::unordered_multiset<string> 

int g_the_foo = 0;

int thefoo_rw(int arg = 1)
{
	if (arg < 0)
		arg = 0;
	if (!arg)
		arg = 1;
	g_the_foo += arg;
	return g_the_foo;
}

int main()
{
	intstr_map map;
	map.emplace(1,"hello");
	map.emplace(2,"world");
	map.emplace(3,"this");
	map.emplace(4,"is");
	map.emplace(5,"me");
	thefoo_rw();  // Set break point at this line.
	
	intstr_mmap mmap;
	mmap.emplace(1,"hello");
	mmap.emplace(2,"hello");
	mmap.emplace(2,"world");
	mmap.emplace(3,"this");
	mmap.emplace(3,"this");
	mmap.emplace(3,"this");
	thefoo_rw();  // Set break point at this line.
	
	int_set iset;
	iset.emplace(1);
	iset.emplace(2);
	iset.emplace(3);
	iset.emplace(4);
	iset.emplace(5);
	thefoo_rw();  // Set break point at this line.
	
	str_set sset;
	sset.emplace("hello");
	sset.emplace("world");
	sset.emplace("this");
	sset.emplace("is");
	sset.emplace("me");
	thefoo_rw();  // Set break point at this line.
	
	int_mset imset;
	imset.emplace(1);
	imset.emplace(2);
	imset.emplace(2);
	imset.emplace(3);
	imset.emplace(3);
	imset.emplace(3);
	thefoo_rw();  // Set break point at this line.
	
	str_mset smset;
	smset.emplace("hello");
	smset.emplace("world");
	smset.emplace("world");
	smset.emplace("is");
	smset.emplace("is");
	thefoo_rw();  // Set break point at this line.
	
    return 0;
}