Lines Matching defs:Atomic
50225 class Atomic<T, Order, typename EnableIf<IsIntegral<T>::value && class
50232 constexpr Atomic() : Base() {} in Atomic() function in mozilla::Atomic
50233 explicit constexpr Atomic(T aInit) : Base(aInit) {} in Atomic() function in mozilla::Atomic
50267 class Atomic<T*, Order> : public detail::AtomicBaseIncDec<T*, Order> class
50272 constexpr Atomic() : Base() {} in Atomic() function in mozilla::Atomic
50273 explicit constexpr Atomic(T* aInit) : Base(aInit) {} in Atomic() function in mozilla::Atomic
50297 class Atomic<T, Order, typename EnableIf<IsEnum<T>::value>::Type> class
50303 constexpr Atomic() : Base() {} in Atomic() function in mozilla::Atomic
50304 explicit constexpr Atomic(T aInit) : Base(aInit) {} in Atomic() function in mozilla::Atomic
50315 class Atomic<bool, Order> class
50321 constexpr Atomic() : Base() {} in Atomic() function in mozilla::Atomic
50322 explicit constexpr Atomic(bool aInit) : Base(aInit) {} in Atomic() function in mozilla::Atomic