Searched defs:alreadyStarted (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DScriptLoader.h66 bool alreadyStarted() const { return m_alreadyStarted; } function in class:blink::FINAL
H A DScriptLoader.cpp57 ScriptLoader::ScriptLoader(Element* element, bool parserInserted, bool alreadyStarted) argument
63 , m_alreadyStarted(alreadyStarted)
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DBrowserStartupControllerTest.java70 public void onSuccess(boolean alreadyStarted) { argument
73 mAlreadyStarted = alreadyStarted;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLScriptElement.cpp41 inline HTMLScriptElement::HTMLScriptElement(Document& document, bool wasInsertedByParser, bool alreadyStarted) argument
43 , m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted))
47 PassRefPtrWillBeRawPtr<HTMLScriptElement> HTMLScriptElement::create(Document& document, bool wasInsertedByParser, bool alreadyStarted) argument
49 return adoptRefWillBeNoop(new HTMLScriptElement(document, wasInsertedByParser, alreadyStarted));
192 return adoptRefWillBeNoop(new HTMLScriptElement(document(), false, m_loader->alreadyStarted()));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGScriptElement.cpp35 inline SVGScriptElement::SVGScriptElement(Document& document, bool wasInsertedByParser, bool alreadyStarted) argument
39 , m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted))
196 return adoptRefWillBeNoop(new SVGScriptElement(document(), false, m_loader->alreadyStarted()));
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DBrowserStartupController.java44 void onSuccess(boolean alreadyStarted); argument
209 private void executeEnqueuedCallbacks(int startupResult, boolean alreadyStarted) { argument
215 asyncStartupCallback.onSuccess(alreadyStarted);
226 private void enqueueCallbackExecution(final int startupFailure, final boolean alreadyStarted) { argument
230 executeEnqueuedCallbacks(startupFailure, alreadyStarted);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.cpp660 const bool alreadyStarted = m_isParsingFragment && parserInserted; local
661 RefPtrWillBeRawPtr<HTMLScriptElement> element = HTMLScriptElement::create(ownerDocumentForCurrentNode(), parserInserted, alreadyStarted);

Completed in 279 milliseconds