Home
last modified time | relevance | path

Searched refs:IsRead (Results 1 – 12 of 12) sorted by relevance

/external/llvm/utils/TableGen/
DCodeGenSchedule.h50 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 …]
DCodeGenSchedule.cpp334 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/
DScopeInfo.h258 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()
DSema.h1076 void recordUseOfEvaluatedWeak(const ExprT *E, bool IsRead=true) {
1078 getCurFunction()->recordUseOfWeak(E, IsRead);
/external/chromium_org/ui/message_center/
Dnotification_list.cc79 bool was_read = notification->IsRead(); in SetMessageCenterVisible()
247 if (!(*iter)->IsRead()) in MarkSinglePopupAsDisplayed()
307 if (!(*iter)->IsRead()) in UnreadCount()
Dnotification.cc106 bool Notification::IsRead() const { in IsRead() function in message_center::Notification
Dnotification_list_unittest.cc614 EXPECT_TRUE(n1->IsRead()); in TEST_F()
620 EXPECT_TRUE(n1->IsRead()); in TEST_F()
638 EXPECT_TRUE(nr->IsRead()); in TEST_F()
Dnotification.h154 bool IsRead() const;
Dmessage_center_impl.cc415 if (!(*iter)->IsRead()) in RecountUnread()
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp422 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/
Dtsan_rtl.h243 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); } in IsWrite()
244 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } in IsRead() function
Dtsan_rtl.cc636 old.IsRead() <= cur.IsRead()) in ContainsSameAccessSlow()