OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsRead
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/message_center/
notification.cc
109
bool Notification::
IsRead
() const {
/external/llvm/utils/TableGen/
CodeGenSchedule.h
50
bool
IsRead
;
59
: Index(0), TheDef(0),
IsRead
(false), IsAlias(false),
64
IsRead
= Def->isSubClassOf("SchedRead");
77
: Index(Idx), Name(Name), TheDef(0),
IsRead
(Read), IsAlias(false),
299
const CodeGenSchedRW &getSchedRW(unsigned Idx, bool
IsRead
) const {
300
return
IsRead
? getSchedRead(Idx) : getSchedWrite(Idx);
303
bool
IsRead
= Def->isSubClassOf("SchedRead");
304
unsigned Idx = getSchedRWIdx(Def,
IsRead
);
306
IsRead
? getSchedRead(Idx) : getSchedWrite(Idx));
312
unsigned getSchedRWIdx(Record *Def, bool
IsRead
, unsigned After = 0) const
[
all
...]
/external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp
415
bool
IsRead
= false;
456
IsRead
= true;
476
IsRead
= true;
483
IsRead
= true;
495
return
IsRead
? Attribute::ReadOnly : Attribute::ReadNone;
[
all
...]
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h
319
bool IsWrite() const { return !
IsRead
(); }
320
bool
IsRead
() const { return x_ & kReadBit; }
Completed in 50 milliseconds