Searched refs:otherMap (Results 1 - 3 of 3) sorted by relevance

/external/llvm/unittests/ADT/
H A DDenseMapTest.cpp224 TypeParam otherMap; local
226 this->Map.swap(otherMap);
229 EXPECT_EQ(1u, otherMap.size());
230 EXPECT_EQ(this->getValue(), otherMap[this->getKey()]);
232 this->Map.swap(otherMap);
233 EXPECT_EQ(0u, otherMap.size());
234 EXPECT_TRUE(otherMap.empty());
242 this->Map.swap(otherMap);
245 EXPECT_EQ(100u, otherMap.size());
247 EXPECT_EQ(this->getValue(i), otherMap[thi
[all...]
/external/webkit/Source/WebCore/dom/
H A DNamedNodeMap.cpp322 bool NamedNodeMap::mapsEquivalent(const NamedNodeMap* otherMap) const
324 if (!otherMap)
328 if (len != otherMap->length())
333 Attribute* otherAttr = otherMap->getAttributeItem(attr->name());
341 bool NamedNodeMap::mappedMapsEquivalent(const NamedNodeMap* otherMap) const
344 if (declCount() != otherMap->declCount())
353 Attribute* otherAttr = otherMap->getAttributeItem(attr->name());
H A DNamedNodeMap.h88 bool mapsEquivalent(const NamedNodeMap* otherMap) const;
89 bool mappedMapsEquivalent(const NamedNodeMap* otherMap) const;

Completed in 129 milliseconds