/external/llvm/utils/TableGen/ |
D | CodeGenSchedule.h | 50 bool IsRead; member 59 : Index(0), TheDef(nullptr), IsRead(false), IsAlias(false), in CodeGenSchedRW() 64 IsRead = Def->isSubClassOf("SchedRead"); in CodeGenSchedRW() 77 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false), in CodeGenSchedRW() 321 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const { in getSchedRW() argument 322 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx); in getSchedRW() 325 bool IsRead = Def->isSubClassOf("SchedRead"); in getSchedRW() local 326 unsigned Idx = getSchedRWIdx(Def, IsRead); in getSchedRW() 328 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx)); in getSchedRW() 334 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 | 258 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} in WeakUseTy() argument 292 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true); 800 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) { in recordUseOfWeak() argument 803 Uses.push_back(WeakUseTy(E, IsRead)); in recordUseOfWeak()
|
D | Sema.h | 1076 void recordUseOfEvaluatedWeak(const ExprT *E, bool IsRead=true) { 1078 getCurFunction()->recordUseOfWeak(E, IsRead);
|
/external/chromium_org/ui/message_center/ |
D | notification_list.cc | 79 bool was_read = notification->IsRead(); in SetMessageCenterVisible() 247 if (!(*iter)->IsRead()) in MarkSinglePopupAsDisplayed() 307 if (!(*iter)->IsRead()) in UnreadCount()
|
D | notification.cc | 106 bool Notification::IsRead() const { in IsRead() function in message_center::Notification
|
D | notification_list_unittest.cc | 614 EXPECT_TRUE(n1->IsRead()); in TEST_F() 620 EXPECT_TRUE(n1->IsRead()); in TEST_F() 638 EXPECT_TRUE(nr->IsRead()); in TEST_F()
|
D | notification.h | 154 bool IsRead() const;
|
D | message_center_impl.cc | 415 if (!(*iter)->IsRead()) in RecountUnread()
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 422 bool IsRead = false; in determinePointerReadAttrs() local 473 IsRead = true; in determinePointerReadAttrs() 495 IsRead = true; in determinePointerReadAttrs() 503 IsRead = true; in determinePointerReadAttrs() 515 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone; in determinePointerReadAttrs()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl.h | 243 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); } in IsWrite() 244 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } in IsRead() function
|
D | tsan_rtl.cc | 636 old.IsRead() <= cur.IsRead()) in ContainsSameAccessSlow()
|