Lines Matching refs:LocNos
132 LocNos = std::make_unique<unsigned[]>(LocNoCount); in DbgVariableValue()
147 LocNos = std::make_unique<unsigned[]>(LocNoCount); in DbgVariableValue()
148 LocNos[0] = UndefLocNo; in DbgVariableValue()
157 LocNos.reset(new unsigned[Other.getLocNoCount()]); in DbgVariableValue()
166 LocNos.reset(new unsigned[Other.getLocNoCount()]); in operator =()
169 LocNos.release(); in operator =()
238 unsigned *loc_nos_begin() { return LocNos.get(); } in loc_nos_begin()
239 const unsigned *loc_nos_begin() const { return LocNos.get(); } in loc_nos_begin()
240 unsigned *loc_nos_end() { return LocNos.get() + LocNoCount; } in loc_nos_end()
241 const unsigned *loc_nos_end() const { return LocNos.get() + LocNoCount; } in loc_nos_end()
243 return ArrayRef<unsigned>(LocNos.get(), LocNoCount); in loc_nos()
252 std::unique_ptr<unsigned[]> LocNos; member in __anon093131440211::DbgVariableValue