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

/external/llvm/utils/TableGen/
H A DCodeGenSchedule.h50 bool IsRead; member in struct:llvm::CodeGenSchedRW
59 : Index(0), TheDef(nullptr), IsRead(false), IsAlias(false),
64 IsRead = Def->isSubClassOf("SchedRead");
77 : Index(Idx), Name(Name), TheDef(nullptr), IsRead(Read), IsAlias(false),
321 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const {
322 return IsRead ? getSchedRead(Idx) : getSchedWrite(Idx);
325 bool IsRead = Def->isSubClassOf("SchedRead");
326 unsigned Idx = getSchedRWIdx(Def, IsRead);
328 IsRead ? getSchedRead(Idx) : getSchedWrite(Idx));
334 unsigned getSchedRWIdx(Record *Def, bool IsRead, unsigne
[all...]
H A DCodeGenSchedule.cpp285 assert(!getSchedRWIdx(*SWI, /*IsRead=*/false) && "duplicate SchedWrite");
290 assert(!getSchedRWIdx(*SRI, /*IsRead-*/true) && "duplicate SchedWrite");
299 /*IsRead=*/false);
334 std::string CodeGenSchedModels::genRWName(const IdxVec& Seq, bool IsRead) { argument
339 Name += getSchedRW(*I, IsRead).Name;
345 unsigned CodeGenSchedModels::getSchedRWIdx(Record *Def, bool IsRead, argument
347 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites;
398 bool IsRead) const {
400 unsigned Idx = getSchedRWIdx(*RI, IsRead);
407 bool IsRead) cons
[all...]
/external/clang/include/clang/Sema/
H A DScopeInfo.h258 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} argument
292 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true);
800 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) { argument
803 Uses.push_back(WeakUseTy(E, IsRead));
H A DSema.h1076 void recordUseOfEvaluatedWeak(const ExprT *E, bool IsRead=true) { argument
1078 getCurFunction()->recordUseOfWeak(E, IsRead);
/external/chromium_org/ui/message_center/
H A Dnotification_list.cc79 bool was_read = notification->IsRead();
249 if (!(*iter)->IsRead())
309 if (!(*iter)->IsRead())
H A Dnotification.cc106 bool Notification::IsRead() const { function in class:message_center::Notification
H A Dnotification.h154 bool IsRead() const;
H A Dnotification_list_unittest.cc652 EXPECT_TRUE(n1->IsRead());
658 EXPECT_TRUE(n1->IsRead());
676 EXPECT_TRUE(nr->IsRead());
H A Dmessage_center_impl.cc415 if (!(*iter)->IsRead())
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h243 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); }
244 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; } function in class:__tsan::Shadow
H A Dtsan_rtl.cc636 old.IsRead() <= cur.IsRead())
667 // set IsRead bit in addr_vect
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp422 bool IsRead = false;
473 IsRead = true;
495 IsRead = true;
503 IsRead = true;
515 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone;

Completed in 3221 milliseconds