• Home
  • Raw
  • Download

Lines Matching refs:ANGLE_INLINE

119 ANGLE_INLINE bool FastVector<T, N, Storage>::uses_fixed_storage() const  in uses_fixed_storage()
220 ANGLE_INLINE typename FastVector<T, N, Storage>::reference FastVector<T, N, Storage>::operator[](
228 ANGLE_INLINE typename FastVector<T, N, Storage>::const_reference
236 ANGLE_INLINE typename FastVector<T, N, Storage>::const_pointer
243 ANGLE_INLINE typename FastVector<T, N, Storage>::pointer angle::FastVector<T, N, Storage>::data() in data()
249 ANGLE_INLINE typename FastVector<T, N, Storage>::iterator FastVector<T, N, Storage>::begin() in begin()
255 ANGLE_INLINE typename FastVector<T, N, Storage>::const_iterator FastVector<T, N, Storage>::begin() in begin()
262 ANGLE_INLINE typename FastVector<T, N, Storage>::iterator FastVector<T, N, Storage>::end() in end()
268 ANGLE_INLINE typename FastVector<T, N, Storage>::const_iterator FastVector<T, N, Storage>::end() in end()
275 ANGLE_INLINE bool FastVector<T, N, Storage>::empty() const in empty()
281 ANGLE_INLINE typename FastVector<T, N, Storage>::size_type FastVector<T, N, Storage>::size() const in size()
293 ANGLE_INLINE void FastVector<T, N, Storage>::push_back(const value_type &value) in push_back()
301 ANGLE_INLINE void FastVector<T, N, Storage>::push_back(value_type &&value) in push_back()
308 ANGLE_INLINE void FastVector<T, N, Storage>::emplace_back(Args &&... args) in emplace_back()
316 ANGLE_INLINE void FastVector<T, N, Storage>::pop_back() in pop_back()
323 ANGLE_INLINE typename FastVector<T, N, Storage>::reference FastVector<T, N, Storage>::front() in front()
330 ANGLE_INLINE typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::front() in front()
338 ANGLE_INLINE typename FastVector<T, N, Storage>::reference FastVector<T, N, Storage>::back() in back()
345 ANGLE_INLINE typename FastVector<T, N, Storage>::const_reference FastVector<T, N, Storage>::back() in back()
406 ANGLE_INLINE void FastVector<T, N, Storage>::remove_and_permute(const value_type &element) in remove_and_permute()
538 ANGLE_INLINE FastIntegerSet();
539 ANGLE_INLINE ~FastIntegerSet();
541 ANGLE_INLINE void ensureCapacity(size_t size) in ensureCapacity()
549 ANGLE_INLINE void insert(uint64_t key) in insert()
563 ANGLE_INLINE bool contains(uint64_t key) const in contains()
573 ANGLE_INLINE void clear() in clear()
581 ANGLE_INLINE bool empty() const in empty()
593 ANGLE_INLINE size_t size() const in size()
604 ANGLE_INLINE size_t capacity() const { return kWindowSize * mKeyData.size(); } in capacity()
606 ANGLE_INLINE void reserve(size_t newSize) in reserve()
619 ANGLE_INLINE FastIntegerSet::FastIntegerSet() {} in FastIntegerSet()
620 ANGLE_INLINE FastIntegerSet::~FastIntegerSet() {} in ~FastIntegerSet()
629 ANGLE_INLINE void ensureCapacity(size_t size) in ensureCapacity()
638 ANGLE_INLINE void insert(uint64_t key, Value value) in insert()
651 ANGLE_INLINE bool contains(uint64_t key) const { return mKeySet.contains(key); } in contains()
653 ANGLE_INLINE bool get(uint64_t key, Value *out) const in get()
665 ANGLE_INLINE void clear() { mKeySet.clear(); } in clear()
667 ANGLE_INLINE bool empty() const { return mKeySet.empty(); } in empty()
669 ANGLE_INLINE size_t size() const { return mKeySet.size(); } in size()
672 ANGLE_INLINE size_t capacity() const { return mValueData.size(); } in capacity()
674 ANGLE_INLINE void ensureCapacityImpl(size_t size) in ensureCapacityImpl()
682 ANGLE_INLINE void reserve(size_t newSize) in reserve()