HomeSort by relevance Sort by last modified time
    Searched refs:AtomicString (Results 226 - 250 of 648) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/css/
CSSParserValues.h 25 #include <wtf/text/AtomicString.h>
39 operator AtomicString() const { return AtomicString(characters, length); }
107 void setValue(const AtomicString& value) { m_selector->setValue(value); }
109 void setArgument(const AtomicString& value) { m_selector->setArgument(value); }
CSSStyleSheet.h 77 void addNamespace(CSSParser*, const AtomicString& prefix, const AtomicString& uri);
78 const AtomicString& determineNamespace(const AtomicString& prefix);
  /external/webkit/Source/WebCore/svg/
SVGSVGElement.h 57 const AtomicString& contentScriptType() const;
58 void setContentScriptType(const AtomicString& type);
60 const AtomicString& contentStyleType() const;
61 void setContentStyleType(const AtomicString& type);
125 Element* getElementById(const AtomicString&) const;
  /external/webkit/Source/WebCore/dom/
EventTarget.h 73 FiringEventIterator(const AtomicString& eventType, size_t& iterator, size_t& end)
80 const AtomicString& eventType;
87 typedef HashMap<AtomicString, EventListenerVector*> EventListenerMap;
153 virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture);
154 virtual bool removeEventListener(const AtomicString& eventType, EventListener*, bool useCapture);
161 bool setAttributeEventListener(const AtomicString& eventType, PassRefPtr<EventListener>);
162 bool clearAttributeEventListener(const AtomicString& eventType);
163 EventListener* getAttributeEventListener(const AtomicString& eventType);
166 bool hasEventListeners(const AtomicString& eventType);
167 const EventListenerVector& getEventListeners(const AtomicString& eventType)
    [all...]
Attr.cpp 85 const AtomicString& Attr::localName() const
90 const AtomicString& Attr::namespaceURI() const
95 const AtomicString& Attr::prefix() const
100 void Attr::setPrefix(const AtomicString& prefix, ExceptionCode& ec)
113 m_attribute->setPrefix(prefix.isEmpty() ? AtomicString() : prefix);
121 void Attr::setValue(const AtomicString& value)
131 void Attr::setValue(const AtomicString& value, ExceptionCode&)
Event.h 30 #include <wtf/text/AtomicString.h>
68 static PassRefPtr<Event> create(const AtomicString& type, bool canBubble, bool cancelable)
74 void initEvent(const AtomicString& type, bool canBubble, bool cancelable);
76 const AtomicString& type() const { return m_type; }
177 Event(const AtomicString& type, bool canBubble, bool cancelable);
183 AtomicString m_type;
ErrorEvent.cpp 55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber)
ErrorEvent.h 51 void initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber);
InputElement.h 25 #include <wtf/text/AtomicString.h>
117 const AtomicString& name() const;
118 void setName(const AtomicString& value) { m_name = value; }
150 AtomicString m_name;
StaticHashSetNodeList.h 60 virtual Node* itemWithName(const AtomicString&) const;
StaticNodeList.cpp 48 Node* StaticNodeList::itemWithName(const AtomicString& elementId) const
StaticNodeList.h 51 virtual Node* itemWithName(const AtomicString&) const;
  /external/webkit/Source/WebCore/page/
Settings.h 33 #include <wtf/text/AtomicString.h>
69 void setStandardFontFamily(const AtomicString&);
70 const AtomicString& standardFontFamily() const { return m_standardFontFamily; }
72 void setFixedFontFamily(const AtomicString&);
73 const AtomicString& fixedFontFamily() const { return m_fixedFontFamily; }
83 void setSerifFontFamily(const AtomicString&);
84 const AtomicString& serifFontFamily() const { return m_serifFontFamily; }
86 void setSansSerifFontFamily(const AtomicString&);
87 const AtomicString& sansSerifFontFamily() const { return m_sansSerifFontFamily; }
89 void setCursiveFontFamily(const AtomicString&)
    [all...]
  /external/webkit/Source/WebCore/html/shadow/
MediaControlElements.cpp 116 const AtomicString& MediaControlPanelElement::shadowPseudoId() const
118 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-panel"));
141 const AtomicString& MediaControlTimelineContainerElement::shadowPseudoId() const
143 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-timeline-container"));
220 const AtomicString& MediaControlVolumeSliderContainerElement::shadowPseudoId() const
222 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-volume-slider-container"));
281 const AtomicString& MediaControlStatusDisplayElement::shadowPseudoId() const
283 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-status-display"));
372 const AtomicString& MediaControlPanelMuteButtonElement::shadowPseudoId() const
374 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-mute-button"))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
FontCache.cpp 59 FontPlatformDataCacheKey(const AtomicString& family = AtomicString(), unsigned size = 0, unsigned weight = 0, bool italic = false,
86 AtomicString m_family;
130 static const AtomicString& alternateFamilyName(const AtomicString& familyName)
133 DEFINE_STATIC_LOCAL(AtomicString, courier, ("Courier"));
134 DEFINE_STATIC_LOCAL(AtomicString, courierNew, ("Courier New"));
146 DEFINE_STATIC_LOCAL(AtomicString, times, ("Times"));
147 DEFINE_STATIC_LOCAL(AtomicString, timesNewRoman, ("Times New Roman"));
154 DEFINE_STATIC_LOCAL(AtomicString, arial, ("Arial"))
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLAppletElement.cpp 60 const AtomicString& newName = attr->value();
68 const AtomicString& newId = attr->value();
118 const AtomicString& codeBase = getAttribute(codebaseAttr);
122 const AtomicString& name = document()->isHTMLDocument() ? getAttribute(nameAttr) : getIdAttribute();
125 const AtomicString& archive = getAttribute(archiveAttr);
131 const AtomicString& mayScript = getAttribute(mayscriptAttr);
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontCacheAndroid.cpp 85 static char* AtomicStringToUTF8String(const AtomicString& utf16)
117 static const AtomicString sansStr("sans-serif");
118 static const AtomicString serifStr("serif");
119 static const AtomicString monospaceStr("monospace");
139 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family)
190 void FontCache::getTraitsInFamily(const AtomicString& familyName, Vector<unsigned>& traitsMasks)
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.h 40 #include <wtf/text/AtomicString.h>
59 void namedItemAdded(HTMLDocument*, const AtomicString&);
60 void namedItemRemoved(HTMLDocument*, const AtomicString&);
  /external/webkit/Source/WebCore/loader/
SubframeLoader.h 64 bool requestFrame(HTMLFrameOwnerElement*, const String& url, const AtomicString& frameName, bool lockHistory = true, bool lockBackForwardList = true);
65 bool requestObject(HTMLPlugInImageElement*, const String& url, const AtomicString& frameName,
84 Frame* loadOrRedirectSubframe(HTMLFrameOwnerElement*, const KURL&, const AtomicString& frameName, bool lockHistory, bool lockBackForwardList);
  /external/webkit/Source/WebCore/page/animation/
AnimationControllerPrivate.h 40 #include <wtf/text/AtomicString.h>
67 void addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime);
119 AtomicString eventType;
  /external/webkit/Source/WebCore/platform/win/
SearchPopupMenuWin.cpp 24 #include <wtf/text/AtomicString.h>
59 void SearchPopupMenuWin::saveRecentSearches(const AtomicString& name, const Vector<String>& searchItems)
81 void SearchPopupMenuWin::loadRecentSearches(const AtomicString& name, Vector<String>& searchItems)
  /external/webkit/Source/WebCore/plugins/
DOMPlugin.cpp 24 #include <wtf/text/AtomicString.h>
78 bool DOMPlugin::canGetItemsForName(const AtomicString& propertyName)
87 PassRefPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& propertyName)
  /external/webkit/Source/JavaScriptCore/wtf/
BloomFilter.h 30 #include <wtf/text/AtomicString.h>
59 void add(const AtomicString& string) { add(string.impl()->existingHash()); }
61 void remove(const AtomicString& string) { remove(string.impl()->existingHash()); }
64 bool mayContain(const AtomicString& string) const { return mayContain(string.impl()->existingHash()); }
  /external/webkit/Source/WebCore/bindings/js/
JSDataGridColumnListCustom.cpp 35 #include <wtf/text/AtomicString.h>
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8NamedNodesCollection.h 51 virtual Node* itemWithName(const AtomicString&) const;

Completed in 1397 milliseconds

1 2 3 4 5 6 7 8 91011>>