Lines Matching refs:__s

114     operator^(bool_set __s, bool_set __t)
115 { return __s._M_xor(__t); }
118 operator|(bool_set __s, bool_set __t)
119 { return __s._M_or(__t); }
122 operator&(bool_set __s, bool_set __t)
123 { return __s._M_and(__t); }
126 operator==(bool_set __s, bool_set __t)
127 { return __s._M_eq(__t); }
206 contains(bool_set __s, bool_set __t)
207 { return __s.contains(__t); }
210 equals(bool_set __s, bool_set __t)
211 { return __s.equals(__t); }
237 set_union(bool __s, bool_set __t)
238 { return bool_set(__s) | __t; }
241 set_union(bool_set __s, bool __t)
242 { return __s | bool_set(__t); }
245 set_union(bool_set __s, bool_set __t)
246 { return __s | __t; }
249 set_intersection(bool __s, bool_set __t)
250 { return bool_set(__s) & __t; }
253 set_intersection(bool_set __s, bool __t)
254 { return __s & bool_set(__t); }
257 set_intersection(bool_set __s, bool_set __t)
258 { return __s & __t; }
268 operator^(bool __s, bool_set __t)
269 { return bool_set(__s) ^ __t; }
272 operator^(bool_set __s, bool __t)
273 { return __s ^ bool_set(__t); }
276 operator|(bool __s, bool_set __t)
277 { return bool_set(__s) | __t; }
280 operator|(bool_set __s, bool __t)
281 { return __s | bool_set(__t); }
284 operator&(bool __s, bool_set __t)
285 { return bool_set(__s) & __t; }
288 operator&(bool_set __s, bool __t)
289 { return __s & bool_set(__t); }
295 operator==(bool __s, bool_set __t)
296 { return bool_set(__s) == __t; }
299 operator==(bool_set __s, bool __t)
300 { return __s == bool_set(__t); }
303 operator!=(bool __s, bool_set __t)
304 { return ! (__s == __t); }
307 operator!=(bool_set __s, bool __t)
308 { return ! (__s == __t); }
311 operator!=(bool_set __s, bool_set __t)
312 { return ! (__s == __t); }