AllowScriptingContent   38 Source/core/dom/DocumentFragment.h     void parseHTML(const String&, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
AllowScriptingContent   39 Source/core/dom/DocumentFragment.h     bool parseXML(const String&, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
AllowScriptingContent 2247 Source/core/dom/Element.cpp     if (RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(html, this, AllowScriptingContent, "innerHTML", exceptionState)) {
AllowScriptingContent 2271 Source/core/dom/Element.cpp     RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(html, parent.get(), AllowScriptingContent, "outerHTML", exceptionState);
AllowScriptingContent 2359 Source/core/dom/Element.cpp     RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, contextElement.get(), AllowScriptingContent, "insertAdjacentHTML", exceptionState);
AllowScriptingContent   40 Source/core/dom/ParserContentPolicy.h     return parserContentPolicy == AllowScriptingContent || parserContentPolicy == AllowScriptingContentAndDoNotMarkAlreadyStarted;
AllowScriptingContent   57 Source/core/dom/ScriptableDocumentParser.h     explicit ScriptableDocumentParser(Document*, ParserContentPolicy = AllowScriptingContent);
AllowScriptingContent  135 Source/core/dom/shadow/ShadowRoot.cpp     if (RefPtr<DocumentFragment> fragment = createFragmentForInnerOuterHTML(markup, host(), AllowScriptingContent, "innerHTML", exceptionState))
AllowScriptingContent   51 Source/core/editing/markup.h PassRefPtr<DocumentFragment> createFragmentFromMarkup(Document&, const String& markup, const String& baseURL, ParserContentPolicy = AllowScriptingContent);
AllowScriptingContent   80 Source/core/html/parser/HTMLDocumentParser.h     static void parseDocumentFragment(const String&, DocumentFragment*, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
AllowScriptingContent  728 Source/core/inspector/InspectorDOMAgent.cpp         fragment->parseHTML(markup, element->document().body(), AllowScriptingContent);
AllowScriptingContent  730 Source/core/inspector/InspectorDOMAgent.cpp         fragment->parseXML(markup, 0, AllowScriptingContent);
AllowScriptingContent   88 Source/core/xml/parser/XMLDocumentParser.h         static bool parseDocumentFragment(const String&, DocumentFragment*, Element* parent = 0, ParserContentPolicy = AllowScriptingContent);