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

  /external/webkit/WebCore/loader/
CrossOriginPreflightResultCache.cpp 53 StringImpl* stringImpl = string.impl();
54 if (!stringImpl)
58 while (start <= end && isSpaceOrNewline((*stringImpl)[start]))
66 while (end && isSpaceOrNewline((*stringImpl)[end]))
  /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/bindings/js/
JSDOMBinding.h 137 typedef JSC::WeakGCMap<StringImpl*, JSC::JSString*> JSStringCache;
357 JSC::JSValue jsStringSlowCase(JSC::ExecState*, JSStringCache&, StringImpl*);
434 StringImpl* stringImpl = s.impl();
435 if (!stringImpl || !stringImpl->length())
438 if (stringImpl->length() == 1 && stringImpl->characters()[0] <= 0xFF)
439 return jsString(exec, stringImpl->ustring());
442 if (JSC::JSString* wrapper = stringCache.get(stringImpl))
    [all...]
JSDOMBinding.cpp 534 StringImpl* cacheKey = static_cast<StringImpl*>(context);
554 JSValue jsStringSlowCase(ExecState* exec, JSStringCache& stringCache, StringImpl* stringImpl)
558 if (JSString* wrapper = stringCache.uncheckedGet(stringImpl))
559 stringCache.uncheckedRemove(stringImpl, wrapper);
561 JSString* wrapper = jsStringWithFinalizer(exec, stringImpl->ustring(), stringWrapperDestroyed, stringImpl);
562 stringCache.set(stringImpl, wrapper);
564 // outlive the cache, so the stringImpl has to match the wrapper's lifetime
    [all...]

Completed in 60 milliseconds