OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isLoaded
(Results
1 - 25
of
49
) sorted by null
1
2
/frameworks/av/libvideoeditor/lvpp/
I420ColorConverter.cpp
47
bool I420ColorConverter::
isLoaded
() {
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImport.h
142
bool
isLoaded
() const { return !isScriptBlocked() && !isProcessing(); }
HTMLImportChild.cpp
169
bool HTMLImportChild::
isLoaded
() const
171
return m_loader->
isLoaded
();
HTMLImportLoader.h
69
bool
isLoaded
() const { return m_state == StateReady; }
/external/chromium_org/third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader.cpp
107
bool HRTFDatabaseLoader::
isLoaded
() const
/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
()) {
CSSSegmentedFontFace.cpp
80
if (
isLoaded
())
169
bool CSSSegmentedFontFace::
isLoaded
() const
210
else if (
isLoaded
())
CSSFontFaceSource.cpp
93
return !m_font->stillNeedsLoad() && !m_font->
isLoaded
();
97
bool CSSFontFaceSource::
isLoaded
() const
100
return m_font->
isLoaded
();
152
if (
isLoaded
()) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleFetchedImage.cpp
54
bool StyleFetchedImage::
isLoaded
() const
56
return m_image->
isLoaded
();
StyleFetchedImageSet.cpp
60
bool StyleFetchedImageSet::
isLoaded
() const
62
return m_bestFitImage->
isLoaded
();
StyleImage.h
55
virtual bool
isLoaded
() const { return true; }
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
())
/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/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;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
TaskDescription.java
63
public boolean
isLoaded
() {
/libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java
52
public final boolean
isLoaded
() {
81
* Attempts to load every page of this buffer into RAM. See {@link #
isLoaded
}.
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/search_engines/
TemplateUrlService.java
83
public boolean
isLoaded
() {
133
if (!
isLoaded
()) return null;
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageCursor.java
146
public boolean
isLoaded
() {
/external/replicaisland/src/com/replica/replicaisland/
LevelTree.java
72
public static final boolean
isLoaded
(int resource) {
/frameworks/base/core/java/android/view/
PointerIcon.java
213
* @see #
isLoaded
()
247
public boolean
isLoaded
() {
266
* @see #
isLoaded
()
280
* @see #
isLoaded
()
294
* @see #
isLoaded
()
303
if (!
isLoaded
()) {
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BasicTexture.java
153
public boolean
isLoaded
() {
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BasicTexture.java
153
public boolean
isLoaded
() {
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
BasicTexture.java
153
public boolean
isLoaded
() {
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
GeoMap.java
73
if (!
isLoaded
())
79
if (!
isLoaded
())
101
* @throws NullPointerException If
isLoaded
() is false
116
* @throws NullPointerException If
isLoaded
() is false
148
public boolean
isLoaded
() {
158
* @throws NullPointerException If
isLoaded
() or hasNormalmap() is false
235
* @throws NullPointerException If
isLoaded
() is false
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h
238
** If Fts3Expr.eType is either FTSQUERY_NEAR or FTSQUERY_PHRASE and
isLoaded
256
int
isLoaded
; /* True if aDoclist/nDoclist are initialized. */
Completed in 704 milliseconds
1
2