| /external/webkit/WebCore/platform/text/ |
| StringBuilder.cpp | 78 return String(StringImpl::empty()); 87 StringImpl* string = m_strings[i].impl();
|
| TextEncoding.h | 49 PassRefPtr<StringImpl> displayString(PassRefPtr<StringImpl> str) const
|
| String.cpp | 55 m_impl = StringImpl::create(str, len); 67 m_impl = StringImpl::create(str, len); 74 m_impl = StringImpl::create(str); 81 m_impl = StringImpl::create(str, length); 91 // one String is pointing at this StringImpl, but even then it's going to require a 96 RefPtr<StringImpl> newImpl = 97 StringImpl::createUninitialized(m_impl->length() + str.length(), data); 110 // one String is pointing at this StringImpl, but even then it's going to require a 114 RefPtr<StringImpl> newImpl = 115 StringImpl::createUninitialized(m_impl->length() + 1, data) [all...] |
| PlatformString.h | 28 #include "StringImpl.h" 77 String(StringImpl* i) : m_impl(i) { } 78 String(PassRefPtr<StringImpl> i) : m_impl(i) { } 79 String(RefPtr<StringImpl> i) : m_impl(i) { } 87 static String adopt(StringBuffer& buffer) { return StringImpl::adopt(buffer); } 88 static String adopt(Vector<UChar>& vector) { return StringImpl::adopt(vector); } 170 static String createUninitialized(unsigned length, UChar*& data) { return StringImpl::createUninitialized(length, data); } 193 // Returns a StringImpl suitable for use on another thread. 197 // Since the underlying StringImpl objects are immutable, there's no other reason 204 StringImpl* impl() const { return m_impl.get(); [all...] |
| /external/webkit/WebCore/svg/ |
| SVGElement.h | 97 virtual bool isSupported(StringImpl* feature, StringImpl* version) const;
|
| /external/webkit/WebCore/css/ |
| CSSHelper.cpp | 32 StringImpl* i = url.impl();
|
| CSSPrimitiveValue.h | 37 class StringImpl; 207 StringImpl* string;
|
| /external/webkit/WebCore/platform/text/wx/ |
| StringWx.cpp | 82 m_impl = StringImpl::create(str, len);
|
| /external/webkit/WebCore/rendering/style/ |
| BindingURI.cpp | 29 BindingURI::BindingURI(StringImpl* uri)
|
| /external/webkit/WebCore/platform/graphics/wx/ |
| FontPlatformDataWx.cpp | 114 StringImpl::computeHash(thisFont->GetFaceName().utf8_str()) }; 116 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
|
| /external/webkit/WebCore/dom/ |
| QualifiedName.h | 30 StringImpl* m_prefix; 31 StringImpl* m_localName; 32 StringImpl* m_namespace;
|
| StyledElement.cpp | 43 StringImpl* name; 44 StringImpl* value; 45 MappedAttributeKey(MappedAttributeEntry t = eNone, StringImpl* n = 0, StringImpl* v = 0) 304 StringImpl* v = value.impl();
|
| /external/webkit/WebCore/platform/ |
| Length.cpp | 98 RefPtr<StringImpl> str = StringImpl::adopt(spacified); 122 RefPtr<StringImpl> str = string.impl()->simplifyWhiteSpace();
|
| /external/webkit/WebCore/page/ |
| SecurityOriginHash.h | 46 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
|
| /external/webkit/WebCore/platform/cf/ |
| SchedulePair.h | 76 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
|
| /external/webkit/WebCore/platform/graphics/chromium/ |
| FontPlatformDataChromiumWin.h | 37 #include "StringImpl.h" 105 return StringImpl::computeHash(reinterpret_cast<const UChar*>(&m_hfont), sizeof(HFONT) / sizeof(UChar));
|
| /external/webkit/WebCore/platform/network/ |
| ProtectionSpaceHash.h | 49 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), codeCount);
|
| /external/webkit/WebCore/rendering/ |
| RenderBR.cpp | 32 : RenderText(node, StringImpl::create("\n"))
|
| RenderSVGInlineText.cpp | 53 RenderSVGInlineText::RenderSVGInlineText(Node* n, PassRefPtr<StringImpl> str) 65 if (RefPtr<StringImpl> textToTransform = originalText())
|
| RenderText.cpp | 51 // FIXME: Move to StringImpl.h eventually. 52 static inline bool charactersAreAllASCII(StringImpl* text) 57 RenderText::RenderText(Node* node, PassRefPtr<StringImpl> str) 122 if (RefPtr<StringImpl> textToTransform = originalText()) 209 PassRefPtr<StringImpl> RenderText::originalText() const 834 void RenderText::setTextWithOffset(PassRefPtr<StringImpl> text, unsigned offset, unsigned len, bool force) 916 StringImpl* text = toRenderText(o)->text(); [all...] |
| /external/webkit/WebCore/platform/graphics/gtk/ |
| FontPlatformData.h | 99 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
|
| /external/webkit/WebCore/platform/graphics/mac/ |
| FontPlatformData.h | 27 #include "StringImpl.h" 100 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
|
| /external/webkit/WebCore/bindings/v8/ |
| V8Binding.cpp | 306 return StringImpl::empty(); 353 return StringImpl::empty(); 381 typedef HashMap<StringImpl*, v8::String*> StringCache; 393 StringImpl* stringImpl = static_cast<StringImpl*>(parameter); 394 ASSERT(getStringCache().contains(stringImpl)); 395 getStringCache().remove(stringImpl); 397 stringImpl->deref(); 402 StringImpl* stringImpl = string.impl() [all...] |
| /external/webkit/WebCore/html/ |
| HTMLHRElement.cpp | 93 StringImpl* si = attr->value().impl();
|
| /external/webkit/WebCore/platform/graphics/win/ |
| FontPlatformData.h | 27 #include "StringImpl.h" 125 return StringImpl::computeHash(reinterpret_cast<const UChar*>(&m_hfont), sizeof(HFONT) / sizeof(UChar));
|