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.cpp241 rep->baseString()->setSharedBuffer(sharedBuffer); in create()
248 UString::BaseString* base = baseString(); in sharedBuffer()
265 UString::BaseString* base = baseString(); in destroy()
374 const UString::BaseString* base = baseString(); in checkConsistency()
377 ASSERT(base == base->baseString()); in checkConsistency()
476 ASSERT(!rep->baseString()->isBufferReadOnly()); in expandCapacity()
478 UString::BaseString* base = rep->baseString(); in expandCapacity()
503 UString::BaseString* base = baseString(); in reserveCapacity()
535 ASSERT(!m_rep->baseString()->isBufferReadOnly()); in expandPreCapacity()
537 BaseString* base = m_rep->baseString(); in expandPreCapacity()
[all …]
DUString.h130 BaseString* baseString();
131 const BaseString* baseString() const;
445 PassRefPtr<BaseString> base = rep->baseString(); in create()
456 const BaseString* base = baseString(); in data()
476 inline UString::BaseString* UString::Rep::baseString() in baseString() function
481 inline const UString::BaseString* UString::Rep::baseString() const in baseString() function
483 return const_cast<Rep*>(this)->baseString(); in baseString()
516 BaseString* base = m_rep->baseString(); in cost()
/external/webkit/WebCore/platform/
DKURL.cpp462 const char* baseString = baseStringBuffer.data(); in init() local
463 const char* baseStringStart = baseString; in init()
470 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
DChangeLog-2009-06-161572 (JSC::UString::Rep::baseString):
7133 (JSC::UString::Rep::baseString): Just read m_baseString - no more branching.
9207 (JSC::UString::Rep::baseString):
13667 … Separate out BaseString information from UString::Rep and make all baseString access go through
13694 (JSC::UString::Rep::baseString):