OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isLoaded
(Results
1 - 25
of
116
) sorted by null
1
2
3
4
5
/frameworks/av/libvideoeditor/lvpp/
I420ColorConverter.h
30
bool
isLoaded
();
I420ColorConverter.cpp
47
bool I420ColorConverter::
isLoaded
() {
/external/stlport/test/eh/
mwerks_console_OS_X.c
28
Boolean
isLoaded
;
80
__msl_os_x.
isLoaded
= false;
93
__msl_os_x.
isLoaded
= CFBundleLoadExecutable(__msl_os_x.theBundle);
95
if (__msl_os_x.
isLoaded
)
114
if (__msl_os_x.
isLoaded
)
120
__msl_os_x.
isLoaded
= false;
/external/chromium_org/third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader.h
56
bool
isLoaded
() const;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
DatabaseConfig.java
15
private static boolean
isLoaded
= false;
19
isLoaded
= false; //make sure to reset
isLoaded
or mixing databases in a test suite will fail.
32
return
isLoaded
;
58
isLoaded
= true;
/external/chromium_org/chrome/android/testshell/javatests/src/org/chromium/chrome/testshell/
ChromiumTestShellTestBase.java
93
final AtomicBoolean
isLoaded
= new AtomicBoolean(false);
99
isLoaded
.set(!tab.isLoading()
102
isLoaded
.set(false);
107
return
isLoaded
.get();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleCustomFilterProgram.h
75
ASSERT(
isLoaded
());
81
ASSERT(
isLoaded
());
85
virtual bool
isLoaded
() const
87
// Do not use the Resource:
isLoaded
method here, because it actually means !isLoading(),
88
// so missing and canceled resources will have
isLoaded
set to true, even if they are not loaded yet.
139
if (
isLoaded
())
StyleFetchedImage.cpp
54
bool StyleFetchedImage::
isLoaded
() const
56
return m_image->
isLoaded
();
StyleFetchedImageSet.cpp
60
bool StyleFetchedImageSet::
isLoaded
() const
62
return m_bestFitImage->
isLoaded
();
StyleFetchedImage.h
46
virtual bool
isLoaded
() const;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterProgram.h
51
virtual bool
isLoaded
() const = 0;
CustomFilterProgram.cpp
81
ASSERT(
isLoaded
());
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ExtTexture.java
39
if (!
isLoaded
()) {
RawTexture.java
59
if (
isLoaded
()) return true;
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFace.cpp
62
bool CSSFontFace::
isLoaded
() const
66
if (!m_sources[i]->
isLoaded
())
146
if (loadStatus() == FontFace::Unloaded && (m_sources[i]->isLoading() || m_sources[i]->
isLoaded
()))
148
if (loadStatus() == FontFace::Loading && m_sources[i]->
isLoaded
())
181
if (!m_sources[i]->isLocal() && !m_sources[i]->
isLoaded
()) {
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImport.cpp
66
if (!child->
isLoaded
())
82
if (!sibling->
isLoaded
())
158
return import->
isLoaded
();
HTMLImport.h
142
bool
isLoaded
() const { return !isScriptBlocked() && !isProcessing(); }
HTMLImportChild.h
64
bool
isLoaded
() const;
HTMLImportChild.cpp
169
bool HTMLImportChild::
isLoaded
() const
171
return m_loader->
isLoaded
();
/external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/
ContentShellTestBase.java
130
final AtomicBoolean
isLoaded
= new AtomicBoolean(false);
140
isLoaded
.set(!shell.isLoading()
143
isLoaded
.set(false);
148
return
isLoaded
.get();
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
RawTexture.java
59
if (
isLoaded
()) return true;
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
RawTexture.java
59
if (
isLoaded
()) return true;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.cpp
91
ASSERT(script.resource()->
isLoaded
());
103
if (script.resource() && !script.resource()->
isLoaded
())
199
ASSERT(m_parserBlockingScript.resource()->
isLoaded
());
220
if (!m_scriptsToExecuteAfterParsing.first().resource()->
isLoaded
()) {
243
if (!m_parserBlockingScript.resource()->
isLoaded
())
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/search_engines/
TemplateUrlServiceTest.java
42
loadedResult.set(TemplateUrlService.getInstance().
isLoaded
());
52
loadedResult.set(TemplateUrlService.getInstance().
isLoaded
());
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/inspectedWindow/chrome-preprocessor/Panel/
InspectedWindowLoadMonitor.js
19
function onEval(
isLoaded
, isException) {
22
if (
isLoaded
)
Completed in 744 milliseconds
1
2
3
4
5