Home
last modified time | relevance | path

Searched refs:IsTemporary (Results 1 – 19 of 19) sorted by relevance

/external/llvm/include/llvm/MC/
DMCSymbol.h54 unsigned IsTemporary : 1; variable
64 IsTemporary(isTemporary), IsUsed(false) {} in MCSymbol()
76 bool isTemporary() const { return IsTemporary; } in isTemporary()
/external/chromium_org/content/public/test/
Dmock_download_item.h50 MOCK_CONST_METHOD0(IsTemporary, bool());
/external/chromium_org/content/browser/download/
Ddownload_item_impl.cc455 if (!IsTemporary()) in OpenDownload()
496 bool DownloadItemImpl::IsTemporary() const { in IsTemporary() function in content::DownloadItemImpl
747 return (!IsDone() || is_complete) && !IsTemporary() && in CanOpenDownload()
1407 IsTemporary()) { in Completed()
1411 if (!IsTemporary()) in Completed()
Ddownload_item_impl.h109 virtual bool IsTemporary() const OVERRIDE;
Ddownload_manager_impl_unittest.cc163 MOCK_CONST_METHOD0(IsTemporary, bool());
Ddownload_item_impl_unittest.cc1018 ASSERT_TRUE(item->IsTemporary()); in TEST_F()
/external/chromium_org/content/public/browser/
Ddownload_item.h166 virtual bool IsTemporary() const = 0;
/external/lzma/CPP/Windows/
DFileFind.h58 bool IsTemporary() const { return MatchesMask(FILE_ATTRIBUTE_TEMPORARY); } in IsTemporary() function
/external/chromium_org/chrome/browser/download/
Ddownload_history.cc303 item->IsTemporary() || in MaybeAddToHistory()
398 if (item->IsTemporary()) { in OnDownloadUpdated()
Ddownload_shelf_unittest.cc85 ON_CALL(*download_item_, IsTemporary()).WillByDefault(Return(false)); in DownloadShelfTest()
Ddownload_item_model.cc521 download_->IsTemporary() || in ShouldRemoveFromShelfWhenComplete()
529 return download_->GetAutoOpened() || download_->IsTemporary(); in ShouldRemoveFromShelfWhenComplete()
Ddownload_history_unittest.cc456 EXPECT_CALL(item(index), IsTemporary()).WillRepeatedly(Return(false)); in InitItem()
716 EXPECT_CALL(item(0), IsTemporary()).WillRepeatedly(Return(true)); in TEST_F()
730 EXPECT_CALL(item(0), IsTemporary()).WillRepeatedly(Return(false)); in TEST_F()
Ddownload_ui_controller_unittest.cc230 EXPECT_CALL(*item, IsTemporary()).WillRepeatedly(Return(false)); in CreateMockInProgressDownload()
Dchrome_download_manager_delegate_unittest.cc228 ON_CALL(*item, IsTemporary()) in CreateActiveDownloadItem()
Ddownload_target_determiner_unittest.cc332 ON_CALL(*item, IsTemporary()) in CreateActiveDownloadItem()
/external/chromium_org/chrome/browser/extensions/api/downloads/
Ddownloads_api.cc386 return !download_item.IsTemporary(); in IsNotTemporaryDownloadFilter()
1779 if (download_item->IsTemporary()) in OnDownloadCreated()
1812 if (download_item->IsTemporary() || in OnDownloadUpdated()
1878 if (download_item->IsTemporary()) in OnDownloadRemoved()
/external/chromium_org/chrome/browser/ui/webui/
Ddownloads_dom_handler.cc238 !item.IsTemporary() && in IsDownloadDisplayable()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngine.cpp833 bool IsTemporary = false; in Visit() local
837 IsTemporary = true; in Visit()
849 if (IsTemporary) in Visit()
/external/clang/lib/Sema/
DSemaInit.cpp6082 bool IsTemporary = !S.Context.hasSameType(Entity.getType(), Ty); in Perform() local
6084 InitializedEntity InitEntity = IsTemporary ? TempEntity : Entity; in Perform()