OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:alreadyStarted
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLScriptElement.h
37
static PassRefPtrWillBeRawPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool
alreadyStarted
= false);
50
HTMLScriptElement(Document&, bool wasInsertedByParser, bool
alreadyStarted
);
HTMLScriptElement.cpp
41
inline HTMLScriptElement::HTMLScriptElement(Document& document, bool wasInsertedByParser, bool
alreadyStarted
)
43
, m_loader(ScriptLoader::create(this, wasInsertedByParser,
alreadyStarted
))
47
PassRefPtrWillBeRawPtr<HTMLScriptElement> HTMLScriptElement::create(Document& document, bool wasInsertedByParser, bool
alreadyStarted
)
49
return adoptRefWillBeNoop(new HTMLScriptElement(document, wasInsertedByParser,
alreadyStarted
));
192
return adoptRefWillBeNoop(new HTMLScriptElement(document(), false, m_loader->
alreadyStarted
()));
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
BrowserStartupController.java
44
void onSuccess(boolean
alreadyStarted
);
209
private void executeEnqueuedCallbacks(int startupResult, boolean
alreadyStarted
) {
215
asyncStartupCallback.onSuccess(
alreadyStarted
);
226
private void enqueueCallbackExecution(final int startupFailure, final boolean
alreadyStarted
) {
230
executeEnqueuedCallbacks(startupFailure,
alreadyStarted
);
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGScriptElement.cpp
35
inline SVGScriptElement::SVGScriptElement(Document& document, bool wasInsertedByParser, bool
alreadyStarted
)
39
, m_loader(ScriptLoader::create(this, wasInsertedByParser,
alreadyStarted
))
196
return adoptRefWillBeNoop(new SVGScriptElement(document(), false, m_loader->
alreadyStarted
()));
SVGScriptElement.h
50
SVGScriptElement(Document&, bool wasInsertedByParser, bool
alreadyStarted
);
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/signin/
AccountsChangedReceiver.java
36
public void onSuccess(boolean
alreadyStarted
) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.h
66
bool
alreadyStarted
() const { return m_alreadyStarted; }
ScriptLoader.cpp
57
ScriptLoader::ScriptLoader(Element* element, bool parserInserted, bool
alreadyStarted
)
63
, m_alreadyStarted(
alreadyStarted
)
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapter.java
138
public void onSuccess(boolean
alreadyStarted
) {
/external/chromium_org/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/
ChromiumLinkerTestActivity.java
111
public void onSuccess(boolean
alreadyStarted
) {
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
BrowserStartupControllerTest.java
70
public void onSuccess(boolean
alreadyStarted
) {
73
mAlreadyStarted =
alreadyStarted
;
/external/chromium_org/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/
ContentShellActivity.java
91
public void onSuccess(boolean
alreadyStarted
) {
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/
ChromeShellActivity.java
111
public void onSuccess(boolean
alreadyStarted
) {
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp
660
const bool
alreadyStarted
= m_isParsingFragment && parserInserted;
661
RefPtrWillBeRawPtr<HTMLScriptElement> element = HTMLScriptElement::create(ownerDocumentForCurrentNode(), parserInserted,
alreadyStarted
);
[
all
...]
Completed in 909 milliseconds