本文整理汇总了C++中OwnPtrWillBeRawPtr::addElementWithName方法的典型用法代码示例。如果您正苦于以下问题:C++ OwnPtrWillBeRawPtr::addElementWithName方法的具体用法?C++ OwnPtrWillBeRawPtr::addElementWithName怎么用?C++ OwnPtrWillBeRawPtr::addElementWithName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OwnPtrWillBeRawPtr
的用法示例。
在下文中一共展示了OwnPtrWillBeRawPtr::addElementWithName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: updateIdNameCache
void HTMLFormControlsCollection::updateIdNameCache() const
{
if (hasValidIdNameCache())
return;
OwnPtrWillBeRawPtr<NamedItemCache> cache = NamedItemCache::create();
HashSet<StringImpl*> foundInputElements;
const FormAssociatedElement::List& elementsArray = formControlElements();
for (unsigned i = 0; i < elementsArray.size(); ++i) {
FormAssociatedElement* associatedElement = elementsArray[i];
if (associatedElement->isEnumeratable()) {
HTMLElement* element = toHTMLElement(associatedElement);
const AtomicString& idAttrVal = element->getIdAttribute();
const AtomicString& nameAttrVal = element->getNameAttribute();
if (!idAttrVal.isEmpty()) {
cache->addElementWithId(idAttrVal, element);
foundInputElements.add(idAttrVal.impl());
}
if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal) {
cache->addElementWithName(nameAttrVal, element);
foundInputElements.add(nameAttrVal.impl());
}
}
}
if (isHTMLFormElement(ownerNode())) {
const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement>>& imageElementsArray = formImageElements();
for (unsigned i = 0; i < imageElementsArray.size(); ++i) {
HTMLImageElement* element = imageElementsArray[i];
const AtomicString& idAttrVal = element->getIdAttribute();
const AtomicString& nameAttrVal = element->getNameAttribute();
if (!idAttrVal.isEmpty() && !foundInputElements.contains(idAttrVal.impl()))
cache->addElementWithId(idAttrVal, element);
if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal && !foundInputElements.contains(nameAttrVal.impl()))
cache->addElementWithName(nameAttrVal, element);
}
}
// Set the named item cache last as traversing the tree may cause cache invalidation.
setNamedItemCache(cache.release());
}
示例2: updateIdNameCache
void HTMLCollection::updateIdNameCache() const
{
if (hasValidIdNameCache())
return;
OwnPtrWillBeRawPtr<NamedItemCache> cache = NamedItemCache::create();
unsigned length = this->length();
for (unsigned i = 0; i < length; ++i) {
Element* element = item(i);
const AtomicString& idAttrVal = element->getIdAttribute();
if (!idAttrVal.isEmpty())
cache->addElementWithId(idAttrVal, element);
if (!element->isHTMLElement())
continue;
const AtomicString& nameAttrVal = element->getNameAttribute();
if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal && (type() != DocAll || nameShouldBeVisibleInDocumentAll(toHTMLElement(*element))))
cache->addElementWithName(nameAttrVal, element);
}
// Set the named item cache last as traversing the tree may cause cache invalidation.
setNamedItemCache(cache.release());
}