HomeSort by relevance Sort by last modified time
    Searched refs:IsTemporary (Results 1 - 23 of 23) sorted by null

  /external/llvm/include/llvm/MC/
MCSymbol.h 51 /// IsTemporary - True if this is an assembler temporary label, which
54 unsigned IsTemporary : 1;
62 MCSymbol(StringRef name, bool isTemporary)
64 IsTemporary(isTemporary), IsUsed(false) {}
75 /// isTemporary - Check if this is an assembler temporary symbol.
76 bool isTemporary() const { return IsTemporary; }
  /external/chromium_org/content/public/browser/
download_item.h 166 virtual bool IsTemporary() const = 0;
  /external/chromium_org/content/public/test/
mock_download_item.h 50 MOCK_CONST_METHOD0(IsTemporary, bool());
  /external/lzma/CPP/Windows/
FileFind.h 58 bool IsTemporary() const { return MatchesMask(FILE_ATTRIBUTE_TEMPORARY); }
  /external/chromium_org/chrome/browser/download/
download_history.cc 301 // TODO(benjhayden): Remove IsTemporary().
303 item->IsTemporary() ||
398 if (item->IsTemporary()) {
download_shelf_unittest.cc 85 ON_CALL(*download_item_, IsTemporary()).WillByDefault(Return(false));
download_item_model.cc 521 download_->IsTemporary() ||
529 return download_->GetAutoOpened() || download_->IsTemporary();
download_ui_controller_unittest.cc 230 EXPECT_CALL(*item, IsTemporary()).WillRepeatedly(Return(false));
download_history_unittest.cc 456 EXPECT_CALL(item(index), IsTemporary()).WillRepeatedly(Return(false));
696 // IsTemporary, saving it back, changing it, saving it back because it isn't
716 EXPECT_CALL(item(0), IsTemporary()).WillRepeatedly(Return(true));
730 EXPECT_CALL(item(0), IsTemporary()).WillRepeatedly(Return(false));
    [all...]
chrome_download_manager_delegate_unittest.cc 228 ON_CALL(*item, IsTemporary())
download_target_determiner_unittest.cc 332 ON_CALL(*item, IsTemporary())
    [all...]
  /external/chromium_org/content/browser/download/
download_item_impl.cc 455 if (!IsTemporary())
496 bool DownloadItemImpl::IsTemporary() const {
747 return (!IsDone() || is_complete) && !IsTemporary() &&
    [all...]
download_item_impl.h 109 virtual bool IsTemporary() const OVERRIDE;
download_manager_impl_unittest.cc 163 MOCK_CONST_METHOD0(IsTemporary, bool());
download_item_impl_unittest.cc     [all...]
  /art/compiler/optimizing/
code_generator.cc 227 if (instruction->IsTemporary()) {
code_generator_x86_64.cc 344 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
    [all...]
code_generator_arm.cc 502 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
    [all...]
code_generator_x86.cc 460 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.cc 386 return !download_item.IsTemporary();
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
downloads_dom_handler.cc 238 !item.IsTemporary() &&
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 833 bool IsTemporary = false;
837 IsTemporary = true;
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]

Completed in 671 milliseconds