Home
last modified time | relevance | path

Searched defs:Countable (Results 1 – 1 of 1) sorted by relevance

/external/llvm/unittests/ADT/
DStringMapTest.cpp315 struct Countable { struct
316 int &InstanceCount;
317 int Number;
318 Countable(int Number, int &InstanceCount) in Countable() function
322 Countable(Countable &&C) : InstanceCount(C.InstanceCount), Number(C.Number) { in Countable() function
326 Countable(const Countable &C) in Countable() argument
330 Countable &operator=(Countable C) { in operator =()
334 ~Countable() { --InstanceCount; } in ~Countable()