Lines Matching refs:position_
68 Label() : position_(0) {} in Label()
71 : position_(src.position_) { in Label()
74 src.position_ = 0; in Label()
86 return IsBound() ? -position_ - sizeof(void*) : position_ - sizeof(void*); in Position()
91 return position_ - sizeof(void*); in LinkPosition()
94 bool IsBound() const { return position_ < 0; } in IsBound()
95 bool IsUnused() const { return position_ == 0; } in IsUnused()
96 bool IsLinked() const { return position_ > 0; } in IsLinked()
99 int position_;
102 position_ = 0; in Reinitialize()
107 position_ = -position - sizeof(void*); in BindTo()
113 position_ = position + sizeof(void*); in LinkTo()