HomeSort by relevance Sort by last modified time
    Searched defs:isLoading (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGStyleElement.h 63 virtual bool isLoading() const { return StyleElement::isLoading(); }
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRuleImport.cpp 83 bool StyleRuleImport::isLoading() const
85 return m_loading || (m_styleSheet && m_styleSheet->isLoading());
CSSSegmentedFontFace.cpp 76 if (RuntimeEnabledFeatures::fontLoadEventsEnabled() && !isLoading()) {
159 bool CSSSegmentedFontFace::isLoading() const
208 if (isLoading())
CSSFontFaceSource.cpp 90 bool CSSFontFaceSource::isLoading() const
287 if (m_loadStartTime > 0 && font && !font->isLoading()) {
CSSStyleSheet.cpp 390 bool CSSStyleSheet::isLoading() const
392 return m_contents->isLoading();
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.cpp 68 bool XSLImportRule::isLoading()
70 return (m_loading || (m_styleSheet && m_styleSheet->isLoading()));
XSLStyleSheetLibxslt.cpp 80 bool XSLStyleSheet::isLoading() const
83 if (m_children.at(i)->isLoading())
91 if (isLoading())
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
SegmentedFontData.cpp 77 bool SegmentedFontData::isLoading() const
81 if (it->fontData()->isLoading())
CustomFontData.h 48 bool isLoading() const { return m_isLoadingFallback && m_isUsed; }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLStyleElement.h 81 virtual bool isLoading() const { return StyleElement::isLoading(); }
  /external/chromium_org/chrome/android/testshell/java/src/org/chromium/chrome/testshell/
TestShellTab.java 64 public boolean isLoading() {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleElement.cpp 124 if (m_sheet->isLoading())
155 bool StyleElement::isLoading() const
159 return m_sheet ? m_sheet->isLoading() : false;
164 if (isLoading())
ProcessingInstruction.cpp 149 bool ProcessingInstruction::isLoading() const
155 return m_sheet->isLoading();
160 if (!isLoading()) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboAlbumSet.java 69 public boolean isLoading() {
71 if (mSets[i].isLoading()) return true;
LocalAlbumSet.java 158 public synchronized boolean isLoading() {
MediaSet.java 106 public boolean isLoading() {
  /external/chromium_org/content/shell/android/java/src/org/chromium/content_shell/
Shell.java 92 public boolean isLoading() {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DirectoryPartition.java 91 public boolean isLoading() {
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
image_util.js 559 ImageUtil.ImageLoader.prototype.isLoading = function(entry) {
image_view.js 282 ImageView.prototype.isLoading = function() {
419 if (self.prefetchLoader_.isLoading(contentEntry)) {
425 // Swap the loaders so that the self.isLoading works correctly.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentLoader.cpp 106 ASSERT(!m_frame || frameLoader()->activeDocumentLoader() != this || !isLoading());
220 // In some rare cases, calling FrameLoader::stopLoading could cause isLoading() to return false.
223 bool loading = isLoading();
263 bool DocumentLoader::isLoading() const
624 if (!m_frame || isLoading())
687 if ((isLoadingMainResource() || !m_frame->document()->loadEventFinished()) && isLoading())
    [all...]
FrameLoader.cpp 847 bool FrameLoader::isLoading() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
Resource.h 145 bool isLoading() const { return m_loading; }
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 350 return !isLoading(partitionIndex);
353 private boolean isLoading(int partitionIndex) {
572 if (partition != excludePartition && !isLoading(partition)) {
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 443 directoryLoading = directory.isLoading();
571 public boolean isLoading() {
572 return mRefreshingContactUri || super.isLoading();

Completed in 1102 milliseconds

1 2