HomeSort by relevance Sort by last modified time
    Searched refs:StringImpl (Results 76 - 100 of 143) sorted by null

1 2 34 5 6

  /external/webkit/Source/WebCore/bindings/js/
DOMWrapperWorld.h 36 typedef JSC::WeakGCMap<StringImpl*, JSC::JSString> JSStringCache;
JSDOMBinding.cpp 177 StringImpl* cacheKey = static_cast<StringImpl*>(context);
181 JSValue jsStringSlowCase(ExecState* exec, JSStringCache& stringCache, StringImpl* stringImpl)
183 JSString* wrapper = jsStringWithFinalizer(exec, UString(stringImpl), stringWrapperDestroyed, stringImpl);
184 stringCache.set(exec->globalData(), stringImpl, wrapper);
186 // outlive the cache, so the stringImpl has to match the wrapper's lifetime.
187 stringImpl->ref();
249 StringImpl* impl = identifier.impl()
    [all...]
  /external/webkit/Source/WebCore/dom/
TreeScope.h 82 mutable HashMap<StringImpl*, Element*, CaseFoldingHash> m_elementsByAccessKey;
StyledElement.cpp 47 StringImpl* name;
48 StringImpl* value;
49 MappedAttributeKey(MappedAttributeEntry t = eNone, StringImpl* n = 0, StringImpl* v = 0)
291 StringImpl* v = value.impl();
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontPlatformData.h 35 #include <wtf/text/StringImpl.h>
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontPlatformDataChromiumWin.h 41 #include <wtf/text/StringImpl.h>
FontPlatformDataLinux.h 40 #include <wtf/text/StringImpl.h>
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.h 32 #include <wtf/text/StringImpl.h>
  /external/webkit/Source/WebCore/platform/text/
TextBoundaries.cpp 31 #include <wtf/text/StringImpl.h>
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGInlineText.h 35 RenderSVGInlineText(Node*, PassRefPtr<StringImpl>);
  /external/webkit/Source/WebCore/svg/
SVGDocumentExtensions.h 31 #include <wtf/text/StringImpl.h>
SVGFitToViewBox.cpp 34 #include <wtf/text/StringImpl.h>
  /external/webkit/Source/JavaScriptCore/runtime/
UString.cpp 61 : m_impl(characters ? StringImpl::create(characters, length) : 0)
75 m_impl = StringImpl::create(characters, length);
80 : m_impl(characters ? StringImpl::create(characters, length) : 0)
86 : m_impl(characters ? StringImpl::create(characters) : 0)
216 return UString(StringImpl::create(m_impl, offset, length));
Lookup.h 59 void initialize(StringImpl* key, unsigned char attributes, intptr_t v1, intptr_t v2
75 void setKey(StringImpl* key) { m_key = key; }
76 StringImpl* key() const { return m_key; }
95 StringImpl* m_key;
PropertyMapHashTable.h 46 #define PROPERTY_MAP_DELETED_ENTRY_KEY ((StringImpl*)1)
74 StringImpl* key;
79 PropertyMapEntry(JSGlobalData& globalData, JSCell* owner, StringImpl* key, unsigned offset, unsigned attributes, JSCell* specificValue)
132 typedef StringImpl* KeyType;
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.h 28 #include "StringImpl.h"
109 // Construct a string referencing an existing StringImpl.
110 String(StringImpl* impl) : m_impl(impl) { }
111 String(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
112 String(RefPtr<StringImpl> impl) : m_impl(impl) { }
119 static String adopt(StringBuffer& buffer) { return StringImpl::adopt(buffer); }
121 static String adopt(Vector<UChar, inlineCapacity>& vector) { return StringImpl::adopt(vector); }
126 StringImpl* impl() const { return m_impl.get(); }
254 static String createUninitialized(unsigned length, UChar*& data) { return StringImpl::createUninitialized(length, data); }
277 // Returns a StringImpl suitable for use on another thread
    [all...]
  /external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
copy-files.cmd 66 wtf\text\StringImpl.cpp
  /external/webkit/Source/WebCore/bindings/v8/
V8Binding.cpp 352 return StringImpl::empty();
414 return StringImpl::empty();
421 return StringImpl::empty();
449 typedef HashMap<StringImpl*, v8::String*> StringCache;
461 StringImpl* stringImpl = static_cast<StringImpl*>(parameter);
462 ASSERT(getStringCache().contains(stringImpl));
463 getStringCache().remove(stringImpl);
465 stringImpl->deref()
    [all...]
V8Binding.h 79 // Note: RefPtr is a must as we cache by StringImpl* equality, not identity
82 extern RefPtr<StringImpl> lastStringImpl;
84 v8::Local<v8::String> v8ExternalStringSlow(StringImpl* stringImpl);
91 StringImpl* stringImpl = string.impl();
92 if (!stringImpl)
95 if (lastStringImpl.get() == stringImpl) {
101 return v8ExternalStringSlow(stringImpl);
110 // Enables caching v8 wrappers created for WTF::StringImpl. Currently this cache require
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFenced.cpp 72 m_separators = !characters.size() ? 0 : StringImpl::create(characters.data() , characters.size());
75 m_separators = StringImpl::create(",");
  /external/webkit/Source/JavaScriptCore/
Android.v8.wtf.mk 61 wtf/text/StringImpl.cpp \
  /external/webkit/Source/WebCore/bridge/
IdentifierRep.cpp 81 typedef HashMap<RefPtr<StringImpl>, IdentifierRep*> StringIdentifierMap;
  /external/webkit/Source/WebKit2/Shared/
WebString.h 95 : m_string(!string.impl() ? String(StringImpl::empty()) : string)
  /external/webkit/Source/JavaScriptCore/profiler/
Profile.cpp 109 typedef pair<StringImpl*, unsigned> NameCountPair;
  /external/webkit/Source/WebCore/html/
HTMLHRElement.cpp 99 StringImpl* si = attr->value().impl();

Completed in 367 milliseconds

1 2 34 5 6