Home
last modified time | relevance | path

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

/external/llvm/utils/TableGen/
DCodeGenSchedule.h50 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 …]
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.h237 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()
DSema.h980 void recordUseOfEvaluatedWeak(const ExprT *E, bool IsRead=true) {
982 getCurFunction()->recordUseOfWeak(E, IsRead);
/external/chromium_org/ui/message_center/
Dnotification_list.cc77 bool was_read = notification->IsRead(); in SetMessageCenterVisible()
249 if (!(*iter)->IsRead()) in MarkSinglePopupAsDisplayed()
308 if (!(*iter)->IsRead()) in UnreadCount()
Dnotification.cc109 bool Notification::IsRead() const { in IsRead() function in message_center::Notification
Dnotification_list_unittest.cc612 EXPECT_TRUE(n1->IsRead()); in TEST_F()
618 EXPECT_TRUE(n1->IsRead()); in TEST_F()
636 EXPECT_TRUE(nr->IsRead()); in TEST_F()
Dnotification.h151 bool IsRead() const;
Dmessage_center_impl.cc412 if (!(*iter)->IsRead()) in RecountUnread()
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp415 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/
Dtsan_rtl.h319 bool IsWrite() const { return !IsRead(); } in IsWrite()
320 bool IsRead() const { return x_ & kReadBit; } in IsRead() function