HomeSort by relevance Sort by last modified time
    Searched refs:TheMap (Results 1 - 3 of 3) 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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DenseSet.h 57 MapTy TheMap;
67 explicit DenseSetImpl(unsigned InitialReserve = 0) : TheMap(InitialReserve) {}
74 bool empty() const { return TheMap.empty(); }
75 size_type size() const { return TheMap.size(); }
76 size_t getMemorySize() const { return TheMap.getMemorySize(); }
80 void resize(size_t Size) { TheMap.resize(Size); }
84 void reserve(size_t Size) { TheMap.reserve(Size); }
87 TheMap.clear();
92 return TheMap.count(V);
96 return TheMap.erase(V)
    [all...]

Completed in 593 milliseconds