Home | History | Annotate | Download | only in gcc

Lines Matching refs:hash_set

32 /* Construct a hash_set <const char *> and verify that various operations
38 hash_set <const char *> s;
47 for (hash_set<const char *>::iterator it = s.begin (); it != s.end (); ++it)
50 /* Populate the hash_set. */
76 for (hash_set<const char *>::iterator it = s.begin (); it != s.end (); ++it)
86 hash_set <const char *, true> t;
91 for (hash_set<const char *, true>::iterator it = t.begin ();
95 /* Populate the hash_set. */
108 for (hash_set<const char *, true>::iterator it = t.begin ();
228 typedef hash_set <val_t, false, value_hash_traits> Set;