Lines Matching full:path
283 setOfflineStoragePath() with an appropriate file path, and can limit the quota
463 The \a location must be either a path on the local filesystem, or a data URL
514 Sets the path of the icon database to \a path. The icon database is used
517 \a path must point to an existing directory where the icons are stored.
519 Setting an empty path disables the icon database.
521 void QWebSettings::setIconDatabasePath(const QString& path)
525 if (!path.isEmpty()) {
527 QFileInfo info(path);
529 WebCore::iconDatabase()->open(path);
537 Returns the path of the icon database or an empty string if the icon
792 Sets the path for HTML5 offline storage to \a path.
794 \a path must point to an existing directory where the databases are stored.
796 Setting an empty path disables the feature.
800 void QWebSettings::setOfflineStoragePath(const QString& path)
803 WebCore::DatabaseTracker::tracker().setDatabaseDirectoryPath(path);
810 Returns the path of the HTML5 offline storage or an empty string if the
849 Sets the path for HTML5 offline web application cache storage to \a path.
859 \a path must point to an existing directory where the cache is stored.
861 Setting an empty path disables the feature.
865 void QWebSettings::setOfflineWebApplicationCachePath(const QString& path)
868 WebCore::cacheStorage().setCacheDirectory(path);
876 Returns the path of the HTML5 offline web application cache storage
921 Sets the path for HTML5 local storage to \a path.
931 void QWebSettings::setLocalStoragePath(const QString& path)
933 d->localStoragePath = path;
941 Returns the path for HTML5 local storage.
954 Enables WebKit persistent data and sets the path to \a path.
955 If the \a path is empty the path for persistent data is set to the
961 void QWebSettings::enablePersistentStorage(const QString& path)
965 if (path.isEmpty()) {
971 storagePath = path;