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

  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
hash.h 56 // This system doesn't have hash_map or hash_set. Emulate them using map and
100 class hash_set : public std::set<Key, HashFcn> { class in namespace:google::protobuf
102 hash_set(int = 0) {} function in class:google::protobuf::hash_set
137 class hash_set : public HASH_NAMESPACE::hash_set<
140 hash_set(int = 0) {}
181 class hash_set : public HASH_NAMESPACE::HASH_SET_CLASS<
184 hash_set(int = 0) {}
  /art/runtime/base/
hash_set_test.cc 17 #include "hash_set.h"
65 HashSet<std::string, IsEmptyFnString> hash_set; local
67 ASSERT_TRUE(hash_set.Empty());
68 ASSERT_EQ(hash_set.Size(), 0U);
69 hash_set.Insert(test_string);
70 auto it = hash_set.Find(test_string);
72 auto after_it = hash_set.Erase(it);
73 ASSERT_TRUE(after_it == hash_set.end());
74 ASSERT_TRUE(hash_set.Empty());
75 ASSERT_EQ(hash_set.Size(), 0U)
81 HashSet<std::string, IsEmptyFnString> hash_set; local
113 HashSet<std::string, IsEmptyFnString> hash_set; local
160 HashSet<std::string, IsEmptyFnString> hash_set; local
    [all...]

Completed in 178 milliseconds