Home
last modified time | relevance | path

Searched refs:shouldBlockScriptExecution (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/imports/
DHTMLImportStateResolver.cpp50 inline bool HTMLImportStateResolver::shouldBlockScriptExecution() const in shouldBlockScriptExecution() function in WebCore::HTMLImportStateResolver
75 if (shouldBlockScriptExecution()) in resolve()
DHTMLImportsController.cpp139 bool HTMLImportsController::shouldBlockScriptExecution(const Document& document) const in shouldBlockScriptExecution() function in WebCore::HTMLImportsController
143 return loader->shouldBlockScriptExecution(); in shouldBlockScriptExecution()
144 return root()->state().shouldBlockScriptExecution(); in shouldBlockScriptExecution()
DHTMLImportStateResolver.h51 bool shouldBlockScriptExecution() const;
DHTMLImportLoader.cpp208 bool HTMLImportLoader::shouldBlockScriptExecution() const in shouldBlockScriptExecution() function in WebCore::HTMLImportLoader
210 return firstImport()->state().shouldBlockScriptExecution(); in shouldBlockScriptExecution()
DHTMLImportState.h51 bool shouldBlockScriptExecution() const { return checkedValue() <= BlockingScriptExecution; } in shouldBlockScriptExecution() function
DHTMLImportsController.h67 bool shouldBlockScriptExecution(const Document&) const;
DHTMLImportLoader.h84 bool shouldBlockScriptExecution() const;
DHTMLImport.cpp82 if (!state().shouldBlockScriptExecution()) { in stateDidChange()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp853 return !m_importsController->shouldBlockScriptExecution(*this); in haveImportsLoaded()