HomeSort by relevance Sort by last modified time
    Searched refs:alreadyStarted (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLScriptElement.h 36 static PassRefPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false);
49 HTMLScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted);
HTMLScriptElement.cpp 40 inline HTMLScriptElement::HTMLScriptElement(Document& document, bool wasInsertedByParser, bool alreadyStarted)
42 , m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted))
47 PassRefPtr<HTMLScriptElement> HTMLScriptElement::create(Document& document, bool wasInsertedByParser, bool alreadyStarted)
49 return adoptRef(new HTMLScriptElement(document, wasInsertedByParser, alreadyStarted));
175 return adoptRef(new HTMLScriptElement(document(), false, m_loader->alreadyStarted()));
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
BrowserStartupController.java 41 void onSuccess(boolean alreadyStarted);
220 private void executeEnqueuedCallbacks(int startupResult, boolean alreadyStarted) {
226 asyncStartupCallback.onSuccess(alreadyStarted);
237 private void enqueueCallbackExecution(final int startupFailure, final boolean alreadyStarted) {
241 executeEnqueuedCallbacks(startupFailure, alreadyStarted);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGScriptElement.cpp 46 inline SVGScriptElement::SVGScriptElement(Document& document, bool wasInsertedByParser, bool alreadyStarted)
49 , m_loader(ScriptLoader::create(this, wasInsertedByParser, alreadyStarted))
213 return adoptRef(new SVGScriptElement(document(), false, m_loader->alreadyStarted()));
SVGScriptElement.h 50 SVGScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted);
  /external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/signin/
AccountsChangedReceiver.java 36 public void onSuccess(boolean alreadyStarted) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.h 72 bool alreadyStarted() const { return m_alreadyStarted; }
ScriptLoader.cpp 55 ScriptLoader::ScriptLoader(Element* element, bool parserInserted, bool alreadyStarted)
61 , m_alreadyStarted(alreadyStarted)
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapter.java 140 public void onSuccess(boolean alreadyStarted) {
  /external/chromium_org/content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/
ContentLinkerTestActivity.java 107 public void onSuccess(boolean alreadyStarted) {
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
BrowserStartupControllerTest.java 66 public void onSuccess(boolean alreadyStarted) {
69 mAlreadyStarted = alreadyStarted;
  /external/chromium_org/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/
ContentShellActivity.java 95 public void onSuccess(boolean alreadyStarted) {
  /external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
ChromiumTestShellActivity.java 66 public void onSuccess(boolean alreadyStarted) {
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 641 const bool alreadyStarted = m_isParsingFragment && parserInserted;
642 RefPtr<HTMLScriptElement> element = HTMLScriptElement::create(ownerDocumentForCurrentNode(), parserInserted, alreadyStarted);
    [all...]

Completed in 1047 milliseconds