Home | History | Annotate | Download | only in dom

Lines Matching refs:ALWAYS_INLINE

84     ALWAYS_INLINE bool hasIdNameCache() const { return !isNodeList(type()); }
85 ALWAYS_INLINE bool isRootedAtDocument() const { return m_rootType == NodeListIsRootedAtDocument || m_rootType == NodeListIsRootedAtDocumentIfOwnerHasItemrefAttr; }
86 ALWAYS_INLINE NodeListInvalidationType invalidationType() const { return static_cast<NodeListInvalidationType>(m_invalidationType); }
87 ALWAYS_INLINE CollectionType type() const { return static_cast<CollectionType>(m_collectionType); }
89 ALWAYS_INLINE void invalidateCache(const QualifiedName* attrName) const
107 ALWAYS_INLINE bool isItemCacheValid() const { return m_isItemCacheValid; }
108 ALWAYS_INLINE Node* cachedItem() const { return m_cachedItem; }
109 ALWAYS_INLINE unsigned cachedItemOffset() const { return m_cachedItemOffset; }
111 ALWAYS_INLINE bool isLengthCacheValid() const { return m_isLengthCacheValid; }
112 ALWAYS_INLINE unsigned cachedLength() const { return m_cachedLength; }
113 ALWAYS_INLINE void setLengthCache(unsigned length) const
118 ALWAYS_INLINE void setItemCache(Node* item, unsigned offset) const
127 ALWAYS_INLINE bool isItemRefElementsCacheValid() const { return m_isItemRefElementsCacheValid; }
128 ALWAYS_INLINE void setItemRefElementsCacheValid() const { m_isItemRefElementsCacheValid = true; }
130 ALWAYS_INLINE NodeListRootType rootType() const { return static_cast<NodeListRootType>(m_rootType); }
164 ALWAYS_INLINE bool LiveNodeListBase::shouldInvalidateTypeOnAttributeChange(NodeListInvalidationType type, const QualifiedName& attrName)