Home
last modified time | relevance | path

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

12

/external/webkit/WebCore/html/
DHTMLDocument.h80 bool hasNamedItem(AtomicStringImpl* name);
84 bool hasExtraNamedItem(AtomicStringImpl* name);
95 HashCountedSet<AtomicStringImpl*> m_namedItemCounts;
96 HashCountedSet<AtomicStringImpl*> m_extraNamedItemCounts;
99 inline bool HTMLDocument::hasNamedItem(AtomicStringImpl* name) in hasNamedItem()
105 inline bool HTMLDocument::hasExtraNamedItem(AtomicStringImpl* name) in hasExtraNamedItem()
DCollectionCache.h29 class AtomicStringImpl; variable
46 typedef HashMap<AtomicStringImpl*, Vector<Element*>*> NodeCacheMap;
DHTMLCollection.h35 class AtomicStringImpl; variable
DHTMLDocument.cpp312 static void addItemToMap(HashCountedSet<AtomicStringImpl*>& map, const AtomicString& name) in addItemToMap()
319 static void removeItemFromMap(HashCountedSet<AtomicStringImpl*>& map, const AtomicString& name) in removeItemFromMap()
DHTMLFormElement.h133 typedef HashMap<RefPtr<AtomicStringImpl>, RefPtr<HTMLFormControlElement> > AliasMap;
DHTMLElement.cpp837 DEFINE_STATIC_LOCAL(HashSet<AtomicStringImpl*>, tagList, ()); in isRecognizedTagName()
849 static HashSet<AtomicStringImpl*>* inlineTagList() in inlineTagList()
851 DEFINE_STATIC_LOCAL(HashSet<AtomicStringImpl*>, tagList, ()); in inlineTagList()
912 static HashSet<AtomicStringImpl*>* blockTagList() in blockTagList()
914 DEFINE_STATIC_LOCAL(HashSet<AtomicStringImpl*>, tagList, ()); in blockTagList()
/external/webkit/WebCore/dom/
DDocument.h133 FormElementKey(AtomicStringImpl* = 0, AtomicStringImpl* = 0);
138 AtomicStringImpl* name() const { return m_name; } in name()
139 AtomicStringImpl* type() const { return m_type; } in type()
149 …static AtomicStringImpl* hashTableDeletedValue() { return reinterpret_cast<AtomicStringImpl*>(-1);… in hashTableDeletedValue()
151 AtomicStringImpl* m_name;
152 AtomicStringImpl* m_type;
239 bool hasElementWithId(AtomicStringImpl* id) const;
389 bool takeStateForFormElement(AtomicStringImpl* name, AtomicStringImpl* type, String& state);
974 typedef HashMap<AtomicStringImpl*, HTMLMapElement*> ImageMapsByName;
1089 mutable HashMap<AtomicStringImpl*, Element*> m_elementsById;
[all …]
DCheckedRadioButtons.h30 class AtomicStringImpl; variable
41 typedef HashMap<AtomicStringImpl*, HTMLInputElement*> NameToInputMap;
DMessagePort.h44 class AtomicStringImpl; variable
/external/webkit/WebCore/editing/
Dmarkup.cpp315 …bool shouldAddNamespaceAttr(const Attribute* attr, HashMap<AtomicStringImpl*, AtomicStringImpl*>& … in shouldAddNamespaceAttr() argument
334 …onst AtomicString& prefix, const AtomicString& ns, HashMap<AtomicStringImpl*, AtomicStringImpl*>& … in appendNamespace() argument
340 AtomicStringImpl* pre = prefix.isEmpty() ? emptyAtom.impl() : prefix.impl(); in appendNamespace()
341 AtomicStringImpl* foundNS = namespaces.get(pre); in appendNamespace()
395 …nge annotate, bool convertBlocksToInlines = false, HashMap<AtomicStringImpl*, AtomicStringImpl*>* … in appendStartMarkup() argument
548 …nge annotate, bool convertBlocksToInlines = false, HashMap<AtomicStringImpl*, AtomicStringImpl*>* … in getStartMarkup() argument
606 …appendMarkup(Node* startNode, EChildrenOnly, const HashMap<AtomicStringImpl*, AtomicStringImpl*>* …
617 …Node* startNode, EChildrenOnly childrenOnly, const HashMap<AtomicStringImpl*, AtomicStringImpl*>* … in appendMarkup() argument
622 HashMap<AtomicStringImpl*, AtomicStringImpl*> namespaceHash; in appendMarkup()
DSetNodeAttributeCommand.cpp53 AtomicStringImpl* nullString = 0; in doUnapply()
/external/webkit/WebCore/platform/text/
DAtomicString.h44 AtomicString(AtomicStringImpl* imp) : m_string(imp) { } in AtomicString()
52 static AtomicStringImpl* find(const JSC::Identifier&);
62 AtomicStringImpl* impl() const { return static_cast<AtomicStringImpl *>(m_string.impl()); } in impl()
DAtomicString.cpp261 AtomicStringImpl* AtomicString::find(const JSC::Identifier& identifier) in find()
269 return static_cast<AtomicStringImpl*>(StringImpl::empty()); in find()
275 return static_cast<AtomicStringImpl*>(*iterator); in find()
DAtomicStringImpl.h30 class AtomicStringImpl : public StringImpl
/external/webkit/WebCore/page/animation/
DCompositeAnimation.h96 typedef HashMap<AtomicStringImpl*, RefPtr<KeyframeAnimation> > AnimationNameMap;
101 Vector<AtomicStringImpl*> m_keyframeAnimationOrderMap;
DCompositeAnimation.cpp245 Vector<AtomicStringImpl*> animsToBeRemoved; in updateKeyframeAnimations()
280 …for (Vector<AtomicStringImpl*>::const_iterator it = m_keyframeAnimationOrderMap.begin(); it != m_k… in animate()
298 …for (Vector<AtomicStringImpl*>::const_iterator it = m_keyframeAnimationOrderMap.begin(); it != m_k… in getAnimatedStyle()
/external/webkit/WebCore/css/
DCSSStyleSelector.h185 typedef HashMap<AtomicStringImpl*, RefPtr<WebKitCSSKeyframesRule> > KeyframesRuleMap;
196 …SelectorMatch checkSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, Pse…
197 …bool checkOneSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId&…
279 HashSet<AtomicStringImpl*> m_selectorAttrs;
/external/webkit/WebCore/svg/
DSVGFontFaceElement.cpp66 static void mapAttributeToCSSProperty(HashMap<AtomicStringImpl*, int>* propertyNameToIdMap, const Q… in mapAttributeToCSSProperty() argument
78 static HashMap<AtomicStringImpl*, int>* propertyNameToIdMap = 0; in cssPropertyIdForSVGAttributeName()
80 propertyNameToIdMap = new HashMap<AtomicStringImpl*, int>; in cssPropertyIdForSVGAttributeName()
DSVGStyledElement.cpp74 static void mapAttributeToCSSProperty(HashMap<AtomicStringImpl*, int>* propertyNameToIdMap, const Q… in mapAttributeToCSSProperty() argument
86 static HashMap<AtomicStringImpl*, int>* propertyNameToIdMap = 0; in cssPropertyIdForSVGAttributeName()
88 propertyNameToIdMap = new HashMap<AtomicStringImpl*, int>; in cssPropertyIdForSVGAttributeName()
/external/webkit/WebCore/rendering/style/
DCounterDirectives.h50 typedef HashMap<RefPtr<AtomicStringImpl>, CounterDirectives> CounterDirectiveMap;
/external/webkit/WebCore/rendering/
DRenderCounter.cpp38 typedef HashMap<RefPtr<AtomicStringImpl>, CounterNode*> CounterMap;
266 static void destroyCounterNodeChildren(AtomicStringImpl* identifier, CounterNode* node) in destroyCounterNodeChildren()
/external/webkit/WebCore/loader/
Dloader.h105 typedef HashMap<AtomicStringImpl*, RefPtr<Host> > HostMap;
/external/webkit/WebCore/xml/
DXMLHttpRequestUpload.h40 class AtomicStringImpl; variable
/external/webkit/WebCore/bindings/js/
DJSHTMLDocumentCustom.cpp53 AtomicStringImpl* atomicPropertyName = AtomicString::find(propertyName); in canGetItemsForName()
/external/webkit/WebCore/loader/appcache/
DDOMApplicationCache.h42 class AtomicStringImpl; variable

12