HomeSort by relevance Sort by last modified time
    Searched defs:cacheModel (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebKit/gtk/webkit/
webkitglobals.cpp 52 static WebKitCacheModel cacheModel = WEBKIT_CACHE_MODEL_DEFAULT;
112 if (cacheModel == model)
156 cacheModel = model;
173 return cacheModel;
  /external/webkit/Source/WebKit2/Shared/
WebProcessCreationParameters.h 29 #include "CacheModel.h"
65 CacheModel cacheModel;
  /external/webkit/Source/WebKit2/UIProcess/
WebContext.h 123 void setCacheModel(CacheModel);
124 CacheModel cacheModel() const { return m_cacheModel; }
240 CacheModel m_cacheModel;
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp 201 setCacheModel(static_cast<uint32_t>(parameters.cacheModel));
323 CacheModel cacheModel = static_cast<CacheModel>(cm);
325 if (!m_hasSetCacheModel || cacheModel != m_cacheModel) {
327 m_cacheModel = cacheModel;
328 platformSetCacheModel(cacheModel);
332 void WebProcess::calculateCacheSizes(CacheModel cacheModel, uint64_t memorySize, uint64_t diskFreeSize,
336 switch (cacheModel) {
    [all...]
  /external/webkit/Source/WebKit/win/
WebView.cpp 236 WebCacheModel cacheModel;
237 hr = preferences->cacheModel(&cacheModel);
249 return notifyPreferencesChanged(cacheModel);
252 return notifyPreferencesRemoved(cacheModel);
258 HRESULT PreferencesChangedOrRemovedObserver::notifyPreferencesChanged(WebCacheModel cacheModel)
262 if (!WebView::didSetCacheModel() || cacheModel > WebView::cacheModel())
263 WebView::setCacheModel(cacheModel);
264 else if (cacheModel < WebView::cacheModel())
    [all...]
WebPreferences.cpp     [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.cpp 760 WebKitCacheModel cacheModel = webkit_get_cache_model();
762 if (cacheModel == WEBKIT_CACHE_MODEL_DEFAULT)
    [all...]
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.cpp     [all...]

Completed in 263 milliseconds