HomeSort by relevance Sort by last modified time
    Searched refs:IsRead (Results 1 - 12 of 12) sorted by null

  /external/llvm/utils/TableGen/
CodeGenSchedule.h 50 bool IsRead;
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, unsigned After = 0) const
    [all...]
CodeGenSchedule.cpp 285 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) {
339 Name += getSchedRW(*I, IsRead).Name;
345 unsigned CodeGenSchedModels::getSchedRWIdx(Record *Def, bool IsRead,
347 const std::vector<CodeGenSchedRW> &RWVec = IsRead ? SchedReads : SchedWrites;
398 bool IsRead) const {
400 unsigned Idx = getSchedRWIdx(*RI, IsRead);
407 bool IsRead) const
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 258 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {}
292 inline void recordUseOfWeak(const ExprT *E, bool IsRead = true);
800 void FunctionScopeInfo::recordUseOfWeak(const ExprT *E, bool IsRead) {
803 Uses.push_back(WeakUseTy(E, IsRead));
Sema.h     [all...]
  /external/chromium_org/ui/message_center/
notification_list.cc 79 bool was_read = notification->IsRead();
249 if (!(*iter)->IsRead())
309 if (!(*iter)->IsRead())
notification.cc 106 bool Notification::IsRead() const {
notification.h 154 bool IsRead() const;
notification_list_unittest.cc 652 EXPECT_TRUE(n1->IsRead());
658 EXPECT_TRUE(n1->IsRead());
676 EXPECT_TRUE(nr->IsRead());
message_center_impl.cc 415 if (!(*iter)->IsRead())
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 243 bool ALWAYS_INLINE IsWrite() const { return !IsRead(); }
244 bool ALWAYS_INLINE IsRead() const { return x_ & kReadBit; }
tsan_rtl.cc 636 old.IsRead() <= cur.IsRead())
667 // set IsRead bit in addr_vect
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 422 bool IsRead = false;
473 IsRead = true;
495 IsRead = true;
503 IsRead = true;
515 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone;
    [all...]

Completed in 243 milliseconds