Home
last modified time | relevance | path

Searched refs:baseString (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebCore/svg/
DSVGAnimateElement.cpp210 void SVGAnimateElement::resetToBaseValue(const String& baseString) in resetToBaseValue() argument
212 m_animatedString = baseString; in resetToBaseValue()
215 … m_animatedColor = baseString.isEmpty() ? Color() : SVGColor::colorFromRGBColorString(baseString); in resetToBaseValue()
219 if (baseString.isEmpty()) { in resetToBaseValue()
224 if (parseNumberValueAndUnit(baseString, m_animatedNumber, m_numberUnit)) in resetToBaseValue()
/external/webkit/JavaScriptCore/runtime/
DUString.h109 BaseString* baseString();
110 const BaseString* baseString() const;
325 const BaseString* base = baseString(); in data()
344 inline UString::BaseString* UString::Rep::baseString() in baseString() function
349 inline const UString::BaseString* UString::Rep::baseString() const in baseString() function
351 return const_cast<const BaseString*>(const_cast<Rep*>(this)->baseString()); in baseString()
384 BaseString* base = m_rep->baseString(); in cost()
DUString.cpp259 PassRefPtr<BaseString> base = rep->baseString(); in create()
300 UString::BaseString* base = baseString(); in destroy()
406 const UString::BaseString* base = baseString(); in checkConsistency()
409 ASSERT(base == base->baseString()); in checkConsistency()
447 UString::BaseString* base = rep->baseString(); in expandCapacity()
476 BaseString* base = m_rep->baseString(); in expandPreCapacity()
559 UString::BaseString* base = rep->baseString(); in concatenate()
594 rep->baseString()->capacity = newCapacity; in concatenate()
613 UString::BaseString* base = rep->baseString(); in concatenate()
651 rep->baseString()->capacity = newCapacity; in concatenate()
[all …]
/external/webkit/WebCore/platform/
DKURL.cpp463 const char* baseString = baseStringBuffer.data(); in init() local
464 const char* baseStringStart = baseString; in init()
471 const char* baseStringEnd = baseString + base.m_pathEnd; in init()
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-141137 …It also resulted in the underlying UString::rep having both a null baseString and buf field, which…
1298 1) Change UString::Rep to hold a self-pointer as the baseString in
1301 wanted to use the rep itself or the baseString as appropriate.
1330 * kjs/ustring.cpp: All changes to handle baseString being self instead of null in the
1344 (KJS::UString::Rep::baseIsSelf): new method, now that baseString is
DChangeLog1874 … Separate out BaseString information from UString::Rep and make all baseString access go through
1901 (JSC::UString::Rep::baseString):