Searched defs:AtomicString (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/platform/efl/
H A DSearchPopupMenuEfl.cpp40 void SearchPopupMenuEfl::saveRecentSearches(const AtomicString&, const Vector<String>&) argument
45 void SearchPopupMenuEfl::loadRecentSearches(const AtomicString&, Vector<String>&) argument
/external/webkit/Source/WebCore/platform/gtk/
H A DSearchPopupMenuGtk.cpp37 void SearchPopupMenuGtk::saveRecentSearches(const AtomicString&, const Vector<String>&) argument
42 void SearchPopupMenuGtk::loadRecentSearches(const AtomicString&, Vector<String>&) argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DSearchPopupMenuQt.cpp36 void SearchPopupMenuQt::saveRecentSearches(const AtomicString&, const Vector<String>&) argument
40 void SearchPopupMenuQt::loadRecentSearches(const AtomicString&, Vector<String>&) argument
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFontCacheQt.cpp59 const AtomicString fallbackFamily = QFont(fontDescription.family().family()).lastResortFamily();
63 void FontCache::getTraitsInFamily(const AtomicString&, Vector<unsigned>&) argument
67 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& familyName)
/external/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedPropertySynchronizer.h31 static void synchronize(SVGElement*, const QualifiedName&, const AtomicString&);
36 static void synchronize(SVGElement* ownerElement, const QualifiedName& attrName, const AtomicString& value)
51 static void synchronize(SVGElement*, const QualifiedName&, const AtomicString&) argument
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMString.cpp25 #include <wtf/text/AtomicString.h>
94 WebDOMString::WebDOMString(const WTF::AtomicString& s)
100 WebDOMString& WebDOMString::operator=(const WTF::AtomicString& s)
106 WebDOMString::operator WTF::AtomicString() const
108 return WTF::AtomicString(static_cast<WTF::StringImpl *>(m_private));
/external/webkit/Source/WebCore/platform/android/
H A DSearchPopupMenuAndroid.h50 virtual void saveRecentSearches(const AtomicString&, const Vector<String>&) { } argument
51 virtual void loadRecentSearches(const AtomicString&, Vector<String>&) { } argument
/external/webkit/Source/WebCore/svg/
H A DSVGAltGlyphElement.cpp71 void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionCode& ec) argument
76 const AtomicString& SVGAltGlyphElement::glyphRef() const
81 void SVGAltGlyphElement::setFormat(const AtomicString&, ExceptionCode& ec) argument
86 const AtomicString& SVGAltGlyphElement::format() const
/external/webkit/Source/WebKit/chromium/src/
H A DWebString.cpp36 #include <wtf/text/AtomicString.h>
112 WebString::WebString(const WTF::AtomicString& s)
118 WebString& WebString::operator=(const WTF::AtomicString& s)
124 WebString::operator WTF::AtomicString() const
126 return WTF::AtomicString(static_cast<WTF::StringImpl *>(m_private));
/external/webkit/Source/WebCore/bindings/js/
H A DScriptController.h133 void namedItemAdded(HTMLDocument*, const AtomicString&) { } argument
134 void namedItemRemoved(HTMLDocument*, const AtomicString&) { } argument
/external/markdown/markdown/
H A D__init__.py126 class AtomicString(unicode): class in inherits:unicode
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DAtomicString.h28 // to disallow (expensive) implicit String-->AtomicString conversions.
39 class AtomicString { class in namespace:WTF
43 AtomicString() { } function in class:WTF::AtomicString
44 AtomicString(const char* s) : m_string(add(s)) { } function in class:WTF::AtomicString
45 AtomicString(const UChar* s, unsigned length) : m_string(add(s, length)) { } function in class:WTF::AtomicString
46 AtomicString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existingHash)) { } function in class:WTF::AtomicString
47 AtomicString(const UChar* s) : m_string(add(s)) { } function in class:WTF::AtomicString
48 ATOMICSTRING_CONVERSION AtomicString(StringImpl* imp) : m_string(add(imp)) { } function in class:WTF::AtomicString
49 AtomicString(AtomicStringImpl* imp) : m_string(imp) { } function in class:WTF::AtomicString
50 ATOMICSTRING_CONVERSION AtomicString(cons function in class:WTF::AtomicString
53 AtomicString(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { } function in class:WTF::AtomicString
99 AtomicString(CFStringRef s) : m_string(add(String(s).impl())) { } function in class:WTF::AtomicString
103 AtomicString(NSString* s) : m_string(add(String(s).impl())) { } function in class:WTF::AtomicString
107 AtomicString(const QString& s) : m_string(add(String(s).impl())) { } function in class:WTF::AtomicString
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Binding.h38 #include <wtf/text/AtomicString.h>
71 // Convert v8 types to a WTF::AtomicString.
72 inline AtomicString v8StringToAtomicWebCoreString(v8::Handle<v8::String> v8String)
74 return v8StringToWebCoreString<AtomicString>(v8String, Externalize);
76 AtomicString v8NonStringValueToAtomicWebCoreString(v8::Handle<v8::Value>);
77 AtomicString v8ValueToAtomicWebCoreString(v8::Handle<v8::Value> value);
168 AtomicString toAtomicWebCoreStringWithNullCheck(v8::Handle<v8::Value> value);
215 operator AtomicString() { return toString<AtomicString>(); }
/external/webkit/Source/WebCore/css/
H A DCSSParserValues.h25 #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); }
/external/webkit/Source/WebCore/platform/graphics/
H A DFontCache.cpp59 FontPlatformDataCacheKey(const AtomicString& family = AtomicString(), unsigned size = 0, unsigned weight = 0, bool italic = false, argument
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, aria
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontPlatformData.cpp108 static PassRefPtr<FixedSizeFontData> create(const AtomicString& family, unsigned weight, bool italic);
121 FixedSizeFontDataKey(const AtomicString& family = AtomicString(), unsigned weight = 0, bool italic = false) argument
138 AtomicString m_family;
238 PassRefPtr<FixedSizeFontData> FixedSizeFontData::create(const AtomicString& family, unsigned weight, bool italic)
285 static PassRefPtr<FixedSizeFontData> createFixedSizeFontData(const AtomicString& family, unsigned weight, bool italic)
315 AtomicString m_family;
332 FontPlatformPrivateData(const FontDescription& fontDescription, const AtomicString& family)
345 FontPlatformData::FontPlatformData(const FontDescription& fontDescription, const AtomicString& desiredFamily, bool useDefaultFontIfNotPresent)
456 const AtomicString
[all...]
/external/webkit/Source/WebCore/page/
H A DChrome.cpp500 FloatRect ChromeClient::customHighlightRect(Node*, const AtomicString&, const FloatRect&) argument
505 void ChromeClient::paintCustomHighlight(Node*, const AtomicString&, const FloatRect&, const FloatRect&, bool, bool) argument
/external/webkit/Source/WebCore/loader/
H A DEmptyClients.h79 virtual void saveRecentSearches(const AtomicString&, const Vector<String>&) {} argument
80 virtual void loadRecentSearches(const AtomicString&, Vector<String>&) {} argument

Completed in 6945 milliseconds