Lines Matching refs:other
35 BasicHashtableImpl::BasicHashtableImpl(const BasicHashtableImpl& other) : in BasicHashtableImpl() argument
36 mBucketSize(other.mBucketSize), mHasTrivialDestructor(other.mHasTrivialDestructor), in BasicHashtableImpl()
37 mCapacity(other.mCapacity), mLoadFactor(other.mLoadFactor), in BasicHashtableImpl()
38 mSize(other.mSize), mFilledBuckets(other.mFilledBuckets), in BasicHashtableImpl()
39 mBucketCount(other.mBucketCount), mBuckets(other.mBuckets) { in BasicHashtableImpl()
60 void BasicHashtableImpl::setTo(const BasicHashtableImpl& other) { in setTo() argument
65 mCapacity = other.mCapacity; in setTo()
66 mLoadFactor = other.mLoadFactor; in setTo()
67 mSize = other.mSize; in setTo()
68 mFilledBuckets = other.mFilledBuckets; in setTo()
69 mBucketCount = other.mBucketCount; in setTo()
70 mBuckets = other.mBuckets; in setTo()