Home | History | Annotate | Download | only in blink_gc_plugin

Lines Matching refs:status_

34   bool IsIllegal() const { return status_ == kIllegal; }
35 bool IsUnneeded() const { return status_ == kUnneeded; }
36 bool IsUnknown() const { return status_ == kUnknown; }
37 bool IsNeeded() const { return status_ == kNeeded; }
39 return status_ > other.status_ ? status_ : other.status_;
42 return status_ == other.status_;
46 TracingStatus(Status status) : status_(status) {}
47 Status status_;