HomeSort by relevance Sort by last modified time
    Searched refs:TheMap (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
DenseSet.h 28 MapTy TheMap;
30 DenseSet(const DenseSet &Other) : TheMap(Other.TheMap) {}
31 explicit DenseSet(unsigned NumInitBuckets = 0) : TheMap(NumInitBuckets) {}
33 bool empty() const { return TheMap.empty(); }
34 unsigned size() const { return TheMap.size(); }
37 void resize(size_t Size) { TheMap.resize(Size); }
40 TheMap.clear();
44 return TheMap.count(V);
48 return TheMap.erase(V)
    [all...]
  /external/llvm/include/llvm/ADT/
DenseSet.h 44 MapTy TheMap;
51 explicit DenseSet(unsigned NumInitBuckets = 0) : TheMap(NumInitBuckets) {}
53 bool empty() const { return TheMap.empty(); }
54 size_type size() const { return TheMap.size(); }
55 size_t getMemorySize() const { return TheMap.getMemorySize(); }
59 void resize(size_t Size) { TheMap.resize(Size); }
62 TheMap.clear();
67 return TheMap.count(V);
71 return TheMap.erase(V);
75 TheMap.swap(RHS.TheMap)
    [all...]

Completed in 106 milliseconds