• Home
  • Raw
  • Download

Lines Matching refs:index_

1488   size_t GetIndex() const { return index_; }
1490 void SetIndex(size_t index) { index_ = index; }
1494 : user_(user), index_(index) {}
1497 size_t index_; local
3140 index_(index) { in HClassTableGet()
3147 return other->AsClassTableGet()->GetIndex() == index_ && in InstructionDataEquals()
3152 size_t GetIndex() const { return index_; } in GetIndex()
3166 const size_t index_; variable
5078 index_(index) { in HExpression()
5085 uint8_t GetIndex() const { return index_; } in GetIndex()
5105 const uint8_t index_; variable
5253 index_(index), in FieldInfo()
5260 uint32_t GetFieldIndex() const { return index_; } in GetFieldIndex()
5270 const uint32_t index_; variable
5724 size_t ComputeHashCode() const OVERRIDE { return type_index_.index_; } in ComputeHashCode()
5923 size_t ComputeHashCode() const OVERRIDE { return string_index_.index_; } in ComputeHashCode()
6936 index_(0) { in HBlocksInLoopIterator()
6937 if (!blocks_in_loop_.IsBitSet(index_)) { in HBlocksInLoopIterator()
6942 bool Done() const { return index_ == blocks_.size(); } in Done()
6943 HBasicBlock* Current() const { return blocks_[index_]; } in Current()
6945 ++index_; in Advance()
6946 for (size_t e = blocks_.size(); index_ < e; ++index_) { in Advance()
6947 if (blocks_in_loop_.IsBitSet(index_)) { in Advance()
6956 size_t index_; variable
6969 index_(0) { in HBlocksInLoopReversePostOrderIterator()
6970 if (!blocks_in_loop_.IsBitSet(blocks_[index_]->GetBlockId())) { in HBlocksInLoopReversePostOrderIterator()
6975 bool Done() const { return index_ == blocks_.size(); } in Done()
6976 HBasicBlock* Current() const { return blocks_[index_]; } in Current()
6978 ++index_; in Advance()
6979 for (size_t e = blocks_.size(); index_ < e; ++index_) { in Advance()
6980 if (blocks_in_loop_.IsBitSet(blocks_[index_]->GetBlockId())) { in Advance()
6989 size_t index_; variable