Home
last modified time | relevance | path

Searched refs:elementData (Results 1 – 12 of 12) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DMinMaxPriorityQueue.java288 E elementData(int index) { in elementData() method in MinMaxPriorityQueue
293 return isEmpty() ? null : elementData(0); in peek()
362 return isEmpty() ? null : elementData(getMaxElementIndex()); in peekLast()
388 E actualLastElement = elementData(size); in removeAt()
391 E toTrickle = elementData(size); in removeAt()
428 ? new MoveDesc<E>(toTrickle, elementData(index)) in fillHole()
448 E value = elementData(index); in removeAndGet()
496 return ordering.compare(elementData(a), elementData(b)); in compareElements()
519 parent = elementData(removeIndex); in tryCrossOverAndBubbleUp()
521 parent = elementData(getParentIndex(removeIndex)); in tryCrossOverAndBubbleUp()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.h253 …const StylePropertySet* inlineStyle() const { return elementData() ? elementData()->m_inlineStyle.… in inlineStyle()
289 … sharesSameElementData(const Element& other) const { return elementData() == other.elementData(); } in sharesSameElementData()
496 const ElementData* elementData() const { return m_elementData.get(); } in elementData() function
679 return elementData() && elementData()->attributes().findIndex(name) != kNotFound; in fastHasAttribute()
685 if (elementData()) { in fastGetAttribute()
686 if (const Attribute* attribute = elementData()->attributes().find(name)) in fastGetAttribute()
694 if (!elementData()) in attributes()
697 return elementData()->attributes(); in attributes()
702 if (!elementData()) in attributesWithoutUpdate()
704 return elementData()->attributes(); in attributesWithoutUpdate()
[all …]
DElement.cpp285 ASSERT(elementData()); in detachAttribute()
286 const Attribute& attribute = elementData()->attributes().at(index); in detachAttribute()
300 ASSERT(elementData()); in detachAttrNodeAtIndex()
302 const Attribute& attribute = elementData()->attributes().at(index); in detachAttrNodeAtIndex()
310 if (!elementData()) in removeAttribute()
313 size_t index = elementData()->attributes().findIndex(name); in removeAttribute()
374 if (!elementData()) in synchronizeAllAttributes()
379 if (elementData()->m_styleAttributeIsDirty) { in synchronizeAllAttributes()
383 if (elementData()->m_animatedSVGAttributesAreDirty) { in synchronizeAllAttributes()
391 if (!elementData()) in synchronizeAttribute()
[all …]
DElementDataCache.cpp41 …line bool hasSameAttributes(const Vector<Attribute>& attributes, ShareableElementData& elementData) in hasSameAttributes() argument
43 if (attributes.size() != elementData.attributes().size()) in hasSameAttributes()
45 …return !memcmp(attributes.data(), elementData.m_attributeArray, attributes.size() * sizeof(Attribu… in hasSameAttributes()
DAttr.cpp203 ASSERT(m_element->elementData()); in elementAttribute()
DNode.cpp181 if (const ElementData* elementData = element->elementData()) { in dumpStatistics() local
182 attributes += elementData->attributes().size(); in dumpStatistics()
DDocument.cpp5621 void Document::getTransitionElementData(Vector<TransitionElementData>& elementData) in getTransitionElementData() argument
5655 elementData.append(newElements); in getTransitionElementData()
/external/chromium_org/third_party/WebKit/Source/core/loader/
DFrameLoader.cpp1268 Vector<Document::TransitionElementData> elementData; in dispatchNavigationTransitionData() local
1269 frame()->document()->getTransitionElementData(elementData); in dispatchNavigationTransitionData()
1270 if (elementData.isEmpty() || !validateTransitionNavigationMode()) in dispatchNavigationTransitionData()
1273 Vector<Document::TransitionElementData>::iterator iter = elementData.begin(); in dispatchNavigationTransitionData()
1274 for (; iter != elementData.end(); ++iter) in dispatchNavigationTransitionData()
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.cpp2225 Vector<Document::TransitionElementData> elementData; in serializeNavigationMarkup() local
2226 frame()->document()->getTransitionElementData(elementData); in serializeNavigationMarkup()
2229 Vector<Document::TransitionElementData>::iterator iter = elementData.begin(); in serializeNavigationMarkup()
2230 for (; iter != elementData.end(); ++iter) in serializeNavigationMarkup()
2238 Vector<Document::TransitionElementData> elementData; in hideAllTransitionElements() local
2239 frame()->document()->getTransitionElementData(elementData); in hideAllTransitionElements()
2241 Vector<Document::TransitionElementData>::iterator iter = elementData.begin(); in hideAllTransitionElements()
2242 for (; iter != elementData.end(); ++iter) in hideAllTransitionElements()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGElement.cpp885 if (!elementData() || !elementData()->m_animatedSVGAttributesAreDirty) in synchronizeAnimatedSVGAttribute()
896 elementData()->m_animatedSVGAttributesAreDirty = false; in synchronizeAnimatedSVGAttribute()
/external/deqp/modules/gles31/functional/
Des31fGeometryShaderTests.cpp5225 static const deUint16 elementData[] = in init() local
5253 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(elementData), &elementData[0], GL_STATIC_DRAW); in init()
5566 static const deUint16 elementData[] = in init() local
5589 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(elementData), &elementData[0], GL_STATIC_DRAW); in init()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLInputElement.cpp454 ASSERT(elementData()); in updateType()