Lines Matching refs:Cache

6 #include "modules/serviceworkers/Cache.h"
48 m_resolver->reject(Cache::domExceptionForCacheError(*reason));
74 m_resolver->reject(Cache::domExceptionForCacheError(*reason));
100 m_resolver->reject(Cache::domExceptionForCacheError(*reason));
110 return ScriptPromise::rejectWithDOMException(scriptState, Cache::domExceptionForCacheError(error));
115 return ScriptPromise::rejectWithDOMException(scriptState, DOMException::create(NotSupportedError, "Cache is not implemented"));
120 Cache* Cache::create(WebServiceWorkerCache* webCache)
122 return new Cache(webCache);
125 ScriptPromise Cache::match(ScriptState* scriptState, Request* originalRequest, const QueryParams& queryParams)
136 ScriptPromise Cache::match(ScriptState* scriptState, const String& requestString, const QueryParams& queryParams)
147 ScriptPromise Cache::matchAll(ScriptState* scriptState, Request* originalRequest, const QueryParams& queryParams)
158 ScriptPromise Cache::matchAll(ScriptState* scriptState, const String& requestString, const QueryParams& queryParams)
169 ScriptPromise Cache::add(ScriptState* scriptState, Request* originalRequest)
180 ScriptPromise Cache::add(ScriptState* scriptState, const String& requestString)
191 ScriptPromise Cache::addAll(ScriptState* scriptState, const Vector<ScriptValue>& rawRequests)
197 ScriptPromise Cache::deleteFunction(ScriptState* scriptState, Request* originalRequest, const QueryParams& queryParams)
208 ScriptPromise Cache::deleteFunction(ScriptState* scriptState, const String& requestString, const QueryParams& queryParams)
219 ScriptPromise Cache::put(ScriptState* scriptState, Request* originalRequest, Response* response)
230 ScriptPromise Cache::put(ScriptState* scriptState, const String& requestString, Response* response)
241 ScriptPromise Cache::keys(ScriptState* scriptState)
246 ScriptPromise Cache::keys(ScriptState* scriptState, Request* originalRequest, const QueryParams& queryParams)
257 ScriptPromise Cache::keys(ScriptState* scriptState, const String& requestString, const QueryParams& queryParams)
268 Cache::Cache(WebServiceWorkerCache* webCache)
271 ScriptPromise Cache::matchImpl(ScriptState* scriptState, Request* request, const QueryParams& queryParams)
282 ScriptPromise Cache::matchAllImpl(ScriptState* scriptState, Request* request, const QueryParams& queryParams)
293 ScriptPromise Cache::addImpl(ScriptState* scriptState, Request*)
299 ScriptPromise Cache::addAllImpl(ScriptState* scriptState, Vector<Request*>)
305 PassRefPtrWillBeRawPtr<DOMException> Cache::domExceptionForCacheError(WebServiceWorkerCacheError reason)
320 ScriptPromise Cache::deleteImpl(ScriptState* scriptState, Request* request, const QueryParams& queryParams)
333 ScriptPromise Cache::putImpl(ScriptState* scriptState, Request* request, Response* response)
346 ScriptPromise Cache::keysImpl(ScriptState* scriptState)
354 ScriptPromise Cache::keysImpl(ScriptState* scriptState, Request* request, const QueryParams& queryParams)