HomeSort by relevance Sort by last modified time
    Searched refs:stringImpl (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/loader/
CrossOriginPreflightResultCache.cpp 55 StringImpl* stringImpl = string.impl();
56 if (!stringImpl)
60 while (start <= end && isSpaceOrNewline((*stringImpl)[start]))
68 while (end && isSpaceOrNewline((*stringImpl)[end]))
  /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/bindings/js/
JSDOMBinding.h 211 JSC::JSValue jsStringSlowCase(JSC::ExecState*, JSStringCache&, StringImpl*);
299 StringImpl* stringImpl = s.impl();
300 if (!stringImpl || !stringImpl->length())
303 if (stringImpl->length() == 1 && stringImpl->characters()[0] <= 0xFF)
307 if (JSC::JSString* wrapper = stringCache.get(stringImpl))
310 return jsStringSlowCase(exec, stringCache, stringImpl);
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...]

Completed in 201 milliseconds