HomeSort by relevance Sort by last modified time
    Searched refs:AtomicString (Results 76 - 100 of 1069) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ScriptResource.h 47 AtomicString mimeType() const;
52 AtomicString m_script;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindowLifecycleObserver.h 47 virtual void didAddEventListener(DOMWindow*, const AtomicString&) { }
48 virtual void didRemoveEventListener(DOMWindow*, const AtomicString&) { }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAllCollection.h 38 Node* namedItemWithIndex(const AtomicString& name, unsigned index) const;
39 void anonymousNamedGetter(const AtomicString& name, bool&, RefPtr<NodeList>&, bool&, RefPtr<Node>&);
HTMLParamElement.h 34 const AtomicString& name() const;
35 const AtomicString& value() const;
HTMLCollection.h 40 virtual Node* namedItem(const AtomicString& name) const;
43 virtual bool hasNamedItem(const AtomicString& name) const;
44 void namedItems(const AtomicString& name, Vector<RefPtr<Node> >&) const;
73 Vector<Element*>* idCache(const AtomicString& name) const { return m_idCache.get(name.impl()); }
74 Vector<Element*>* nameCache(const AtomicString& name) const { return m_nameCache.get(name.impl()); }
75 void appendIdCache(const AtomicString& name, Element* element) const { append(m_idCache, name, element); }
76 void appendNameCache(const AtomicString& name, Element* element) const { append(m_nameCache, name, element); }
79 bool checkForNameMatch(Element*, bool checkName, const AtomicString& name) const;
84 static void append(NodeCacheMap&, const AtomicString&, Element*);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.cpp 50 const AtomicString& TextTrack::subtitlesKeyword()
52 DEFINE_STATIC_LOCAL(const AtomicString, subtitles, ("subtitles", AtomicString::ConstructFromLiteral));
56 const AtomicString& TextTrack::captionsKeyword()
58 DEFINE_STATIC_LOCAL(const AtomicString, captions, ("captions", AtomicString::ConstructFromLiteral));
62 const AtomicString& TextTrack::descriptionsKeyword()
64 DEFINE_STATIC_LOCAL(const AtomicString, descriptions, ("descriptions", AtomicString::ConstructFromLiteral));
68 const AtomicString& TextTrack::chaptersKeyword(
    [all...]
TrackEvent.cpp 44 TrackEvent::TrackEvent(const AtomicString& type, const TrackEventInit& initializer)
55 const AtomicString& TrackEvent::interfaceName() const
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeyMessageEvent.cpp 43 MediaKeyMessageEvent::MediaKeyMessageEvent(const AtomicString& type, const MediaKeyMessageEventInit& initializer)
55 const AtomicString& MediaKeyMessageEvent::interfaceName() const
MediaKeyNeededEvent.cpp 43 MediaKeyNeededEvent::MediaKeyNeededEvent(const AtomicString& type, const MediaKeyNeededEventInit& initializer)
54 const AtomicString& MediaKeyNeededEvent::interfaceName() const
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBVersionChangeEvent.cpp 34 PassRefPtr<IDBVersionChangeEvent> IDBVersionChangeEvent::create(PassRefPtr<IDBAny> oldVersion, PassRefPtr<IDBAny> newVersion, const AtomicString& eventType, blink::WebIDBDataLoss dataLoss, const String& dataLossMessage)
39 IDBVersionChangeEvent::IDBVersionChangeEvent(PassRefPtr<IDBAny> oldVersion, PassRefPtr<IDBAny> newVersion, const AtomicString& eventType, blink::WebIDBDataLoss dataLoss, const String& dataLossMessage)
65 const AtomicString& IDBVersionChangeEvent::dataLoss() const
67 DEFINE_STATIC_LOCAL(AtomicString, total, ("total", AtomicString::ConstructFromLiteral));
70 DEFINE_STATIC_LOCAL(AtomicString, none, ("none", AtomicString::ConstructFromLiteral));
74 const AtomicString& IDBVersionChangeEvent::interfaceName() const
IDBVersionChangeEvent.h 41 static PassRefPtr<IDBVersionChangeEvent> create(PassRefPtr<IDBAny> oldVersion = IDBAny::createNull(), PassRefPtr<IDBAny> newVersion = IDBAny::createNull(), const AtomicString& eventType = AtomicString(), blink::WebIDBDataLoss = blink::WebIDBDataLossNone, const String& dataLossMessage = String());
46 const AtomicString& dataLoss() const;
49 virtual const AtomicString& interfaceName() const;
52 IDBVersionChangeEvent(PassRefPtr<IDBAny> oldVersion, PassRefPtr<IDBAny> newVersion, const AtomicString& eventType, blink::WebIDBDataLoss, const String& dataLoss);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontSelector.h 42 virtual PassRefPtr<FontData> getFontData(const FontDescription&, const AtomicString& familyName) = 0;
43 virtual void willUseFontData(const FontDescription&, const AtomicString& familyName) = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/network/
WebSocketHandshakeResponse.h 50 void addHeaderField(const AtomicString& name, const AtomicString& value);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NamedFlow.h 37 #include "wtf/text/AtomicString.h"
51 static PassRefPtr<NamedFlow> create(PassRefPtr<NamedFlowCollection> manager, const AtomicString& flowThreadName);
55 const AtomicString& name() const;
62 virtual const AtomicString& interfaceName() const OVERRIDE;
82 NamedFlow(PassRefPtr<NamedFlowCollection>, const AtomicString&);
85 AtomicString m_flowThreadName;
  /external/chromium_org/third_party/WebKit/Source/core/events/
ProgressEvent.h 47 static PassRefPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
51 static PassRefPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer)
60 virtual const AtomicString& interfaceName() const;
64 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total);
65 ProgressEvent(const AtomicString&, const ProgressEventInit&);
TransitionEvent.h 48 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement)
52 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const TransitionEventInit& initializer)
63 virtual const AtomicString& interfaceName() const;
67 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement);
68 TransitionEvent(const AtomicString& type, const TransitionEventInit& initializer);
WebKitAnimationEvent.h 49 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
53 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const WebKitAnimationEventInit& initializer)
63 virtual const AtomicString& interfaceName() const;
67 WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
68 WebKitAnimationEvent(const AtomicString&, const WebKitAnimationEventInit&);
ClipboardEvent.h 41 static PassRefPtr<ClipboardEvent> create(const AtomicString& type, bool canBubbleArg, bool cancelableArg, PassRefPtr<Clipboard> clipboardArg)
50 ClipboardEvent(const AtomicString& type, bool canBubbleArg, bool cancelableArg, PassRefPtr<Clipboard>);
52 virtual const AtomicString& interfaceName() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextEvent.h 45 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
49 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, const WebGLContextEventInit& initializer)
57 virtual const AtomicString& interfaceName() const;
61 WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
62 WebGLContextEvent(const AtomicString&, const WebGLContextEventInit&);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIConnectionEvent.h 55 static PassRefPtr<MIDIConnectionEvent> create(const AtomicString& type, PassRefPtr<MIDIPort> port)
60 static PassRefPtr<MIDIConnectionEvent> create(const AtomicString& type, const MIDIConnectionEventInit& initializer)
67 virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::MIDIConnectionEvent; }
75 MIDIConnectionEvent(const AtomicString& type, PassRefPtr<MIDIPort> port)
82 MIDIConnectionEvent(const AtomicString& type, const MIDIConnectionEventInit& initializer)
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQuery.h 49 MediaQuery(Restrictor, const AtomicString& mediaType, PassOwnPtr<ExpressionVector> exprs);
54 const AtomicString& mediaType() const { return m_mediaType; }
64 AtomicString m_mediaType;
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementCallbackInvocation.cpp 91 AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
96 AtomicString m_name;
97 AtomicString m_oldValue;
98 AtomicString m_newValue;
101 AttributeChangedInvocation::AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
130 PassOwnPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue
    [all...]
CustomElementCallbackInvocation.h 38 #include "wtf/text/AtomicString.h"
48 static PassOwnPtr<CustomElementCallbackInvocation> createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
CustomElementCallbackScheduler.h 38 #include "wtf/text/AtomicString.h"
47 static void scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
CustomElementLifecycleCallbacks.h 35 #include "wtf/text/AtomicString.h"
55 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) = 0;

Completed in 4873 milliseconds

1 2 34 5 6 7 8 91011>>