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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageElement.h 52 const AtomicString& altText() const;
61 const AtomicString& alt() const;
82 virtual const AtomicString imageSourceURL() const OVERRIDE;
94 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
96 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
119 AtomicString m_bestFitImageURL;
HTMLElement.h 100 void applyAlignmentAttributeToStyle(const AtomicString&, MutableStylePropertySet*);
101 void applyBorderAttributeToStyle(const AtomicString&, MutableStylePropertySet*);
103 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
105 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
106 unsigned parseBorderWidthAttribute(const AtomicString&) const;
114 void mapLanguageAttributeToLocale(const AtomicString&, MutableStylePropertySet*);
118 void dirAttributeChanged(const AtomicString&);
125 const AtomicString& eventNameForAttributeName(const QualifiedName& attrName) const;
HTMLFormControlsCollection.h 45 virtual Node* namedItem(const AtomicString& name) const;
46 void namedGetter(const AtomicString& name, bool&, RefPtr<RadioNodeList>&, bool&, RefPtr<Node>&);
HTMLKeygenElement.h 49 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
52 virtual const AtomicString& formControlType() const OVERRIDE;
HTMLOListElement.h 55 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
57 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
HTMLOutputElement.h 57 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
58 virtual const AtomicString& formControlType() const;
HTMLTableSectionElement.cpp 109 const AtomicString& HTMLTableSectionElement::align() const
114 void HTMLTableSectionElement::setAlign(const AtomicString& value)
119 const AtomicString& HTMLTableSectionElement::ch() const
124 void HTMLTableSectionElement::setCh(const AtomicString& value)
129 const AtomicString& HTMLTableSectionElement::chOff() const
134 void HTMLTableSectionElement::setChOff(const AtomicString& value)
139 const AtomicString& HTMLTableSectionElement::vAlign() const
144 void HTMLTableSectionElement::setVAlign(const AtomicString& value)
LinkResource.h 71 const AtomicString& charset() const { return m_charset; }
77 AtomicString m_charset;
MediaKeyEvent.cpp 44 MediaKeyEvent::MediaKeyEvent(const AtomicString& type, const MediaKeyEventInit& initializer)
61 const AtomicString& MediaKeyEvent::interfaceName() const
  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageEvent.cpp 52 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
57 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const StorageEventInit& initializer)
62 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
73 StorageEvent::StorageEvent(const AtomicString& type, const StorageEventInit& initializer)
84 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
98 const AtomicString& StorageEvent::interfaceName() const
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControlElements.cpp 56 static const AtomicString& getMediaControlCurrentTimeDisplayElementShadowPseudoId();
57 static const AtomicString& getMediaControlTimeRemainingDisplayElementShadowPseudoId();
77 const AtomicString& MediaControlPanelElement::pseudo() const
79 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-panel", AtomicString::ConstructFromLiteral));
260 const AtomicString& MediaControlPanelEnclosureElement::pseudo() const
262 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-enclosure", AtomicString::ConstructFromLiteral));
279 const AtomicString& MediaControlOverlayEnclosureElement::pseudo() const
281 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-overlay-enclosure", AtomicString::ConstructFromLiteral))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptEventListener.h 47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Node*, const QualifiedName&, const AtomicString& value);
48 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame*, const QualifiedName&, const AtomicString& value);
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheetList.h 44 HTMLStyleElement* getNamedItem(const AtomicString&) const;
49 CSSStyleSheet* anonymousNamedGetter(const AtomicString&);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMNamedFlowCollection.h 53 PassRefPtr<NamedFlow> namedItem(const AtomicString& name) const;
55 bool hasNamedItem(const AtomicString& name) const;
StyleElement.h 39 virtual const AtomicString& type() const = 0;
40 virtual const AtomicString& media() const = 0;
TouchController.h 60 virtual void didAddEventListener(DOMWindow*, const AtomicString&) OVERRIDE;
61 virtual void didRemoveEventListener(DOMWindow*, const AtomicString&) OVERRIDE;
TreeScope.h 32 #include "wtf/text/AtomicString.h"
59 Element* getElementById(const AtomicString&) const;
61 bool containsMultipleElementsWithId(const AtomicString& id) const;
62 void addElementById(const AtomicString& elementId, Element*);
63 void removeElementById(const AtomicString& elementId, Element*);
77 void addLabel(const AtomicString& forAttributeValue, HTMLLabelElement*);
78 void removeLabel(const AtomicString& forAttributeValue, HTMLLabelElement*);
79 HTMLLabelElement* labelElementForId(const AtomicString& forAttributeValue);
178 inline bool TreeScope::containsMultipleElementsWithId(const AtomicString& id) const
  /external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyBlockElementCommand.h 41 ApplyBlockElementCommand(Document&, const QualifiedName& tagName, const AtomicString& inlineStyle);
55 AtomicString m_inlineStyle;
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
CrossOriginAccessControl.h 50 bool isOnAccessControlSimpleRequestHeaderWhitelist(const AtomicString& name, const AtomicString& value);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextInputType.cpp 52 const AtomicString& type = element().fastGetAttribute(typeAttr);
59 const AtomicString& TextInputType::formControlType() const
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMPlugin.h 47 bool canGetItemsForName(const AtomicString& propertyName);
48 PassRefPtr<DOMMimeType> namedItem(const AtomicString& propertyName);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateColorElement.cpp 45 DEFINE_STATIC_LOCAL(const AtomicString, currentColor, ("currentColor", AtomicString::ConstructFromLiteral));
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceMotionController.h 56 virtual void didAddEventListener(DOMWindow*, const AtomicString&) OVERRIDE;
57 virtual void didRemoveEventListener(DOMWindow*, const AtomicString&) OVERRIDE;
DeviceOrientationController.h 50 virtual void didAddEventListener(DOMWindow*, const AtomicString&) OVERRIDE;
51 virtual void didRemoveEventListener(DOMWindow*, const AtomicString&) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitSourceBufferList.h 61 virtual const AtomicString& interfaceName() const OVERRIDE;
67 void createAndFireEvent(const AtomicString&);

Completed in 7292 milliseconds

1 2 3 4 5 6 7 891011>>