OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:loadsimagesautomatically
(Results
1 - 24
of
24
) sorted by null
/external/webkit/Source/WebKit/wx/
WebSettings.cpp
83
bool wxWebSettings::
LoadsImagesAutomatically
() const
86
return m_settings->
loadsImagesAutomatically
();
WebSettings.h
111
bool
LoadsImagesAutomatically
() const;
ChangeLog
[
all
...]
/external/webkit/Source/WebKit2/UIProcess/API/C/
WKPreferences.cpp
65
void WKPreferencesSetLoadsImagesAutomatically(WKPreferencesRef preferencesRef, bool
loadsImagesAutomatically
)
67
toImpl(preferencesRef)->setLoadsImagesAutomatically(
loadsImagesAutomatically
);
72
return toImpl(preferencesRef)->
loadsImagesAutomatically
();
WKPreferences.h
49
WK_EXPORT void WKPreferencesSetLoadsImagesAutomatically(WKPreferencesRef preferences, bool
loadsImagesAutomatically
);
/external/webkit/Tools/DumpRenderTree/chromium/
WebPreferences.h
66
bool
loadsImagesAutomatically
;
WebPreferences.cpp
82
loadsImagesAutomatically
= true;
136
settings->setLoadsImagesAutomatically(
loadsImagesAutomatically
);
LayoutTestController.cpp
[
all
...]
/external/webkit/Source/WebKit2/Shared/
WebPreferencesStore.h
41
macro(
LoadsImagesAutomatically
,
loadsImagesAutomatically
, Bool, bool, true) \
/external/webkit/Source/WebKit/chromium/src/
WebSettingsImpl.cpp
132
void WebSettingsImpl::setLoadsImagesAutomatically(bool
loadsImagesAutomatically
)
134
m_settings->setLoadsImagesAutomatically(
loadsImagesAutomatically
);
/external/webkit/Source/WebCore/page/
Settings.h
110
bool
loadsImagesAutomatically
() const { return m_loadsImagesAutomatically; }
112
// This setting only affects site icon image loading if
loadsImagesAutomatically
setting is false and this setting is true.
113
// All other permutations still heed
loadsImagesAutomatically
setting.
Settings.cpp
51
frame->document()->cachedResourceLoader()->setAutoLoadImages(page->settings()->
loadsImagesAutomatically
());
313
void Settings::setLoadsImagesAutomatically(bool
loadsImagesAutomatically
)
315
m_loadsImagesAutomatically =
loadsImagesAutomatically
;
DragController.cpp
590
&& frame->settings()->
loadsImagesAutomatically
()
[
all
...]
/external/webkit/Source/WebKit/win/Interfaces/
IWebPreferences.idl
140
HRESULT
loadsImagesAutomatically
([out, retval] BOOL* enabled);
/external/webkit/Source/WebKit/mac/WebView/
WebPreferences.h
327
- (BOOL)
loadsImagesAutomatically
;
WebPreferences.mm
751
- (BOOL)
loadsImagesAutomatically
[
all
...]
WebView.mm
[
all
...]
/external/webkit/Source/WebKit/win/
WebPreferences.h
175
virtual HRESULT STDMETHODCALLTYPE
loadsImagesAutomatically
(
WebPreferences.cpp
924
HRESULT STDMETHODCALLTYPE WebPreferences::
loadsImagesAutomatically
(
[
all
...]
WebView.cpp
[
all
...]
/external/webkit/Source/WebCore/loader/
FrameLoader.cpp
665
m_frame->document()->cachedResourceLoader()->setAutoLoadImages(settings && settings->
loadsImagesAutomatically
());
716
if (settings && !settings->
loadsImagesAutomatically
() && !settings->loadsSiteIconsIgnoringImageLoadingSetting())
[
all
...]
/external/webkit/Source/WebKit/mac/
WebKit.order
255
-[WebPreferences
loadsImagesAutomatically
]
[
all
...]
/external/webkit/Source/WebKit/efl/ewk/
ewk_view.cpp
607
priv->settings.auto_load_images = priv->page_settings->
loadsImagesAutomatically
();
[
all
...]
/external/webkit/Source/WebCore/
ChangeLog-2010-01-29
707
This is different from
loadsImagesAutomatically
as is explained in
[
all
...]
Completed in 598 milliseconds