Home | History | Annotate | Download | only in html

Lines Matching full:other

40 CollectionCache::CollectionCache(const CollectionCache& other)
41 : version(other.version)
42 , current(other.current)
43 , position(other.position)
44 , length(other.length)
45 , elementsArrayPosition(other.elementsArrayPosition)
46 , hasLength(other.hasLength)
47 , hasNameCache(other.hasNameCache)
49 copyCacheMap(idCache, other.idCache);
50 copyCacheMap(nameCache, other.nameCache);
53 void CollectionCache::swap(CollectionCache& other)
55 std::swap(version, other.version);
56 std::swap(current, other.current);
57 std::swap(position, other.position);
58 std::swap(length, other.length);
59 std::swap(elementsArrayPosition, other.elementsArrayPosition);
61 idCache.swap(other.idCache);
62 nameCache.swap(other.nameCache);
64 std::swap(hasLength, other.hasLength);
65 std::swap(hasNameCache, other.hasNameCache);