Home
last modified time | relevance | path

Searched refs:AtomicStringImpl (Results 1 – 25 of 54) sorted by relevance

123

/external/webkit/Source/WebCore/dom/
DDocumentOrderedMap.h45 void add(AtomicStringImpl*, Element*);
46 void remove(AtomicStringImpl*, Element*);
49 bool contains(AtomicStringImpl*) const;
50 bool containsMultiple(AtomicStringImpl*) const;
52 Element* getElementById(AtomicStringImpl*, const TreeScope*) const;
53 Element* getElementByMapName(AtomicStringImpl*, const TreeScope*) const;
54 Element* getElementByLowercasedMapName(AtomicStringImpl*, const TreeScope*) const;
59 …template<bool keyMatches(AtomicStringImpl*, Element*)> Element* get(AtomicStringImpl*, const TreeS…
61 typedef HashMap<AtomicStringImpl*, Element*> Map;
67 mutable HashCountedSet<AtomicStringImpl*> m_duplicateCounts;
[all …]
DDocumentOrderedMap.cpp43 inline bool keyMatchesId(AtomicStringImpl* key, Element* element) in keyMatchesId()
48 inline bool keyMatchesMapName(AtomicStringImpl* key, Element* element) in keyMatchesMapName()
53 inline bool keyMatchesLowercasedMapName(AtomicStringImpl* key, Element* element) in keyMatchesLowercasedMapName()
64 void DocumentOrderedMap::add(AtomicStringImpl* key, Element* element) in add()
94 void DocumentOrderedMap::remove(AtomicStringImpl* key, Element* element) in remove()
107 template<bool keyMatches(AtomicStringImpl*, Element*)>
108 inline Element* DocumentOrderedMap::get(AtomicStringImpl* key, const TreeScope* scope) const in get()
136 Element* DocumentOrderedMap::getElementById(AtomicStringImpl* key, const TreeScope* scope) const in getElementById()
141 Element* DocumentOrderedMap::getElementByMapName(AtomicStringImpl* key, const TreeScope* scope) con… in getElementByMapName()
146 Element* DocumentOrderedMap::getElementByLowercasedMapName(AtomicStringImpl* key, const TreeScope* … in getElementByLowercasedMapName()
DTreeScope.h44 bool hasElementWithId(AtomicStringImpl* id) const;
88 inline bool TreeScope::hasElementWithId(AtomicStringImpl* id) const in hasElementWithId()
DDocument.h160 FormElementKey(AtomicStringImpl* = 0, AtomicStringImpl* = 0);
165 AtomicStringImpl* name() const { return m_name; } in name()
166 AtomicStringImpl* type() const { return m_type; } in type()
176 …static AtomicStringImpl* hashTableDeletedValue() { return reinterpret_cast<AtomicStringImpl*>(-1);… in hashTableDeletedValue()
178 AtomicStringImpl* m_name;
179 AtomicStringImpl* m_type;
499 bool takeStateForFormElement(AtomicStringImpl* name, AtomicStringImpl* type, String& state);
1335 typedef HashMap<AtomicStringImpl*, CollectionCache*> NamedCollectionMap;
DTreeScope.cpp121 AtomicStringImpl* name = imageMap->getName().impl(); in addImageMap()
129 AtomicStringImpl* name = imageMap->getName().impl(); in removeImageMap()
DCheckedRadioButtons.h40 typedef HashMap<AtomicStringImpl*, HTMLInputElement*> NameToInputMap;
/external/webkit/Source/WebCore/html/
DHTMLDocument.h76 bool hasNamedItem(AtomicStringImpl* name);
80 bool hasExtraNamedItem(AtomicStringImpl* name);
91 void addItemToMap(HashCountedSet<AtomicStringImpl*>&, const AtomicString&);
92 void removeItemFromMap(HashCountedSet<AtomicStringImpl*>&, const AtomicString&);
94 HashCountedSet<AtomicStringImpl*> m_namedItemCounts;
95 HashCountedSet<AtomicStringImpl*> m_extraNamedItemCounts;
98 inline bool HTMLDocument::hasNamedItem(AtomicStringImpl* name) in hasNamedItem()
104 inline bool HTMLDocument::hasExtraNamedItem(AtomicStringImpl* name) in hasExtraNamedItem()
DCollectionCache.h50 typedef HashMap<AtomicStringImpl*, Vector<Element*>*> NodeCacheMap;
/external/webkit/Source/JavaScriptCore/wtf/text/
DAtomicStringImpl.h28 class AtomicStringImpl : public StringImpl
31 AtomicStringImpl() : StringImpl(0) {} in AtomicStringImpl() function
36 using WTF::AtomicStringImpl;
DAtomicString.h49 AtomicString(AtomicStringImpl* imp) : m_string(imp) { } in AtomicString()
56 static AtomicStringImpl* find(const UChar* s, unsigned length, unsigned existingHash);
61 AtomicStringImpl* impl() const { return static_cast<AtomicStringImpl *>(m_string.impl()); } in impl()
DAtomicString.cpp322 AtomicStringImpl* AtomicString::find(const UChar* s, unsigned length, unsigned existingHash) in find()
328 return static_cast<AtomicStringImpl*>(StringImpl::empty()); in find()
334 return static_cast<AtomicStringImpl*>(*iterator); in find()
/external/webkit/Source/WebCore/rendering/svg/
DSVGResources.cpp46 static HashSet<AtomicStringImpl*>& clipperFilterMaskerTags() in clipperFilterMaskerTags()
48 DEFINE_STATIC_LOCAL(HashSet<AtomicStringImpl*>, s_tagList, ()); in clipperFilterMaskerTags()
91 static HashSet<AtomicStringImpl*>& markerTags() in markerTags()
93 DEFINE_STATIC_LOCAL(HashSet<AtomicStringImpl*>, s_tagList, ()); in markerTags()
104 static HashSet<AtomicStringImpl*>& fillAndStrokeTags() in fillAndStrokeTags()
106 DEFINE_STATIC_LOCAL(HashSet<AtomicStringImpl*>, s_tagList, ()); in fillAndStrokeTags()
125 static HashSet<AtomicStringImpl*>& chainableResourceTags() in chainableResourceTags()
127 DEFINE_STATIC_LOCAL(HashSet<AtomicStringImpl*>, s_tagList, ()); in chainableResourceTags()
205 AtomicStringImpl* tagNameImpl = element->tagQName().localName().impl(); in buildCachedResources()
/external/webkit/Source/JavaScriptCore/wtf/
DForward.h37 class AtomicStringImpl; variable
56 using WTF::AtomicStringImpl;
/external/webkit/Source/WebCore/page/animation/
DCompositeAnimation.h98 typedef HashMap<AtomicStringImpl*, RefPtr<KeyframeAnimation> > AnimationNameMap;
103 Vector<AtomicStringImpl*> m_keyframeAnimationOrderMap;
DCompositeAnimation.cpp261 Vector<AtomicStringImpl*> animsToBeRemoved; in updateKeyframeAnimations()
300 …for (Vector<AtomicStringImpl*>::const_iterator it = m_keyframeAnimationOrderMap.begin(); it != m_k… in animate()
320 …for (Vector<AtomicStringImpl*>::const_iterator it = m_keyframeAnimationOrderMap.begin(); it != m_k… in getAnimatedStyle()
581 …for (Vector<AtomicStringImpl*>::const_iterator it = m_keyframeAnimationOrderMap.begin(); it != m_k… in animations()
/external/webkit/Source/WebCore/css/
DCSSStyleSelector.h191 HashSet<AtomicStringImpl*> idsInRules;
250 typedef HashMap<AtomicStringImpl*, RefPtr<WebKitCSSKeyframesRule> > KeyframesRuleMap;
262 …SelectorMatch checkSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, Pse…
263 …bool checkOneSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId&…
359 HashSet<AtomicStringImpl*> m_selectorAttrs;
DCSSSelector.h291 RareData(PassRefPtr<AtomicStringImpl> value);
297 AtomicStringImpl* m_value; // Plain pointer to keep things uniform with the union.
308 AtomicStringImpl* m_value;
DCSSSelector.cpp239 static HashMap<AtomicStringImpl*, CSSSelector::PseudoType>* nameToPseudoTypeMap() in nameToPseudoTypeMap()
326 static HashMap<AtomicStringImpl*, CSSSelector::PseudoType>* nameToPseudoType = 0; in nameToPseudoTypeMap()
328 nameToPseudoType = new HashMap<AtomicStringImpl*, CSSSelector::PseudoType>; in nameToPseudoTypeMap()
420 HashMap<AtomicStringImpl*, CSSSelector::PseudoType>* nameToPseudoType = nameToPseudoTypeMap(); in parsePseudoType()
421 …HashMap<AtomicStringImpl*, CSSSelector::PseudoType>::iterator slot = nameToPseudoType->find(name.i… in parsePseudoType()
752 CSSSelector::RareData::RareData(PassRefPtr<AtomicStringImpl> value) in RareData()
/external/webkit/Source/WebCore/editing/
DMarkupAccumulator.h42 typedef HashMap<AtomicStringImpl*, AtomicStringImpl*> Namespaces;
DSetNodeAttributeCommand.cpp53 AtomicStringImpl* nullString = 0; in doUnapply()
/external/webkit/Source/WebCore/rendering/style/
DCounterDirectives.h50 typedef HashMap<RefPtr<AtomicStringImpl>, CounterDirectives> CounterDirectiveMap;
/external/webkit/Source/WebCore/svg/properties/
DSVGAnimatedPropertyDescription.h66 AtomicStringImpl* m_attributeName;
/external/webkit/Source/WebCore/svg/
DSVGFontFaceElement.cpp69 static HashMap<AtomicStringImpl*, int>* propertyNameToIdMap = 0; in cssPropertyIdForSVGAttributeName()
71 propertyNameToIdMap = new HashMap<AtomicStringImpl*, int>; in cssPropertyIdForSVGAttributeName()
DSVGStyledElement.h32 void mapAttributeToCSSProperty(HashMap<AtomicStringImpl*, int>* propertyNameToIdMap, const Qualifie…
DSVGStyledElement.cpp55 void mapAttributeToCSSProperty(HashMap<AtomicStringImpl*, int>* propertyNameToIdMap, const Qualifie… in mapAttributeToCSSProperty() argument
136 static HashMap<AtomicStringImpl*, int>* propertyNameToIdMap = 0; in cssPropertyIdForSVGAttributeName()
138 propertyNameToIdMap = new HashMap<AtomicStringImpl*, int>; in cssPropertyIdForSVGAttributeName()

123