Searched refs:IsRead (Results 1 – 11 of 11) sorted by relevance
/external/llvm/utils/TableGen/ |
D | CodeGenSchedule.h | 50 bool IsRead; member 59 : Index(0), TheDef(0), IsRead(false), IsAlias(false), in CodeGenSchedRW() 64 IsRead = Def->isSubClassOf("SchedRead"); in CodeGenSchedRW() 77 : Index(Idx), Name(Name), TheDef(0), IsRead(Read), IsAlias(false), in CodeGenSchedRW() 299 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const { in getSchedRW() argument 300 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx); in getSchedRW() 303 bool IsRead = Def->isSubClassOf("SchedRead"); in getSchedRW() local 304 unsigned Idx = getSchedRWIdx(Def, IsRead); in getSchedRW() 306 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx)); in getSchedRW() 312 unsigned getSchedRWIdx(Record *Def, bool IsRead, unsigned After = 0) const; [all …]
|
D | CodeGenSchedule.cpp | 334 std::string CodeGenSchedModels::genRWName(const IdxVec& Seq, bool IsRead) { in genRWName() argument 339 Name += getSchedRW(*I, IsRead).Name; in genRWName() 345 unsigned CodeGenSchedModels::getSchedRWIdx(Record *Def, bool IsRead, in getSchedRWIdx() argument 347 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites; in getSchedRWIdx() 398 bool IsRead) const { in findRWs() 400 unsigned Idx = getSchedRWIdx(*RI, IsRead); in findRWs() 407 bool IsRead) const { in expandRWSequence() 408 const CodeGenSchedRW &SchedRW = getSchedRW(RWIdx, IsRead); in expandRWSequence() 418 expandRWSequence(*I, RWSeq, IsRead); in expandRWSequence() 426 unsigned RWIdx, IdxVec &RWSeq, bool IsRead, in expandRWSeqForProc() argument [all …]
|
/external/clang/include/clang/Sema/ |
D | ScopeInfo.h | 237 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy() argument 271 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true); 646 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) { in recordUseOfWeak() argument 649 Uses.push_back(WeakUseTy(E, IsRead)); in recordUseOfWeak()
|
D | Sema.h | 980 void recordUseOfEvaluatedWeak(const ExprT *E, bool IsRead=true) { 982 getCurFunction()->recordUseOfWeak(E, IsRead);
|
/external/chromium_org/ui/message_center/ |
D | notification_list.cc | 77 bool was_read = notification->IsRead(); in SetMessageCenterVisible() 249 if (!(*iter)->IsRead()) in MarkSinglePopupAsDisplayed() 308 if (!(*iter)->IsRead()) in UnreadCount()
|
D | notification.cc | 109 bool Notification::IsRead() const { in IsRead() function in message_center::Notification
|
D | notification_list_unittest.cc | 612 EXPECT_TRUE(n1->IsRead()); in TEST_F() 618 EXPECT_TRUE(n1->IsRead()); in TEST_F() 636 EXPECT_TRUE(nr->IsRead()); in TEST_F()
|
D | notification.h | 151 bool IsRead() const;
|
D | message_center_impl.cc | 412 if (!(*iter)->IsRead()) in RecountUnread()
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 415 bool IsRead = false; in determinePointerReadAttrs() local 456 IsRead = true; in determinePointerReadAttrs() 476 IsRead = true; in determinePointerReadAttrs() 483 IsRead = true; in determinePointerReadAttrs() 495 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone; in determinePointerReadAttrs()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl.h | 319 bool IsWrite() const { return !IsRead(); } in IsWrite() 320 bool IsRead() const { return x_ & kReadBit; } in IsRead() function
|